- Timestamp:
- Jan 23, 2025 10:02:59 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167134
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/TestExecServ/txsshell/txsshell.py
r107898 r107905 43 43 import time; 44 44 45 # Make sure that the ModuleNotFoundError exception is found by Python 2.x. 46 try: 47 ModuleNotFoundError 48 except NameError: 45 if sys.version_info[0] < 3 or (sys.version_info[0] == 3 and sys.version_info[1] < 6): # since 3.6 49 46 ModuleNotFoundError = ImportError # pylint: disable=redefined-builtin 50 47
Note:
See TracChangeset
for help on using the changeset viewer.