Changeset 61280 in vbox
- Timestamp:
- May 29, 2016 5:10:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/base.py
r61266 r61280 737 737 oType = type(asValues[0]); 738 738 for i in range(1, len(asValues)): 739 if type(asValues[i]) is not oType: # pylint: disable= C0123739 if type(asValues[i]) is not oType: # pylint: disable=unidiomatic-typecheck 740 740 return (asValues, 'Invalid entry data type ([0]=%s vs [%d]=%s).' % (oType, i, type(asValues[i])) ); 741 741
Note:
See TracChangeset
for help on using the changeset viewer.