diff options
| author | Christian Heimes <christian@cheimes.de> | 2007-12-05 12:45:11 (GMT) |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2007-12-05 12:45:11 (GMT) |
| commit | 8f1fea50617766f79171102dd68449692d98fc1f (patch) | |
| tree | 7cddce197baa3e4eab166237400f5774d674a32f /Lib/test/regrtest.py | |
| parent | 76fa9c0e9d34b7580e0b4bae900f11c95f2056ab (diff) | |
| download | cpython-8f1fea50617766f79171102dd68449692d98fc1f.zip cpython-8f1fea50617766f79171102dd68449692d98fc1f.tar.gz cpython-8f1fea50617766f79171102dd68449692d98fc1f.tar.bz2 | |
Fixed error in regrtest. I must have missed the spot.
Diffstat (limited to 'Lib/test/regrtest.py')
| -rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index b876bd7..067d6a2 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -661,7 +661,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks): pic = sys.path_importer_cache.copy() abcs = {} for abc in [getattr(_abcoll, a) for a in _abcoll.__all__]: - if not isinstance(abc, _Abstract): + if not issubclass(abc, _Abstract): continue for obj in abc.__subclasses__() + [abc]: abcs[obj] = obj._abc_registry.copy() |
