diff options
Diffstat (limited to 'Lib/unittest/loader.py')
-rw-r--r-- | Lib/unittest/loader.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py index e0b8585209..f0cc157415 100644 --- a/Lib/unittest/loader.py +++ b/Lib/unittest/loader.py @@ -6,23 +6,13 @@ import sys import traceback import types +from functools import cmp_to_key as _CmpToKey from fnmatch import fnmatch from . import case, suite __unittest = True - -def _CmpToKey(mycmp): - 'Convert a cmp= function into a key= function' - class K(object): - def __init__(self, obj): - self.obj = obj - def __lt__(self, other): - return mycmp(self.obj, other.obj) == -1 - return K - - # what about .pyc or .pyo (etc) # we would need to avoid loading the same tests multiple times # from '.py', '.pyc' *and* '.pyo' |