- Timestamp:
- May 20, 2023 12:57:37 AM (20 months ago)
- Location:
- trunk/src/VBox/ValidationKit/testmanager
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/webservergluebase.py
r98655 r99875 41 41 42 42 # Standard python imports. 43 import cgitb 43 import cgitb; # pylint: disable=deprecated-module ## @todo these will be retired in python 3.13! 44 44 import codecs; 45 45 import os -
trunk/src/VBox/ValidationKit/testmanager/core/webservergluecgi.py
r98103 r99875 41 41 42 42 # Standard python imports. 43 import cgitb; 43 import cgi; # pylint: disable=deprecated-module ## @todo these will be retired in python 3.13! 44 import cgitb; # pylint: disable=deprecated-module ## @todo these will be retired in python 3.13! 44 45 import os; 45 46 import sys; 46 import cgi;47 47 48 48 # Validation Kit imports. -
trunk/src/VBox/ValidationKit/testmanager/webui/wuiadmin.py
r98103 r99875 41 41 42 42 # Standard python imports. 43 import cgitb; 43 import cgitb; # pylint: disable=deprecated-module ## @todo these will be retired in python 3.13! 44 44 import sys; 45 45 -
trunk/src/VBox/ValidationKit/testmanager/webui/wuibase.py
r98103 r99875 949 949 sRedirAction is what action to redirect to on success. 950 950 """ 951 import cgitb; 951 import cgitb; # pylint: disable=deprecated-module ## @todo these will be retired in python 3.13! 952 952 953 953 idEntry = self.getIntParam(sParamId, iMin = 1, iMax = 0x7ffffffe)
Note:
See TracChangeset
for help on using the changeset viewer.