Changeset 70660 in vbox for trunk/src/VBox/ValidationKit/testmanager/core/testresultfailures.py
- Timestamp:
- Jan 21, 2018 4:18:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testresultfailures.py
r69111 r70660 31 31 """ 32 32 __version__ = "$Revision$" 33 33 34 # Standard python imports. 35 import sys; 34 36 import unittest; 35 37 … … 40 42 from testmanager.core.useraccount import UserAccountLogic; 41 43 44 # Python 3 hacks: 45 if sys.version_info[0] >= 3: 46 xrange = range; # pylint: disable=redefined-builtin,invalid-name 42 47 43 48
Note:
See TracChangeset
for help on using the changeset viewer.