diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-18 00:08:11 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-18 00:08:11 +0000 |
commit | 264c659197bcd2fc3e22776fc711f31b953daae5 (patch) | |
tree | 890412a726fb41b27d5013f4acdea5a9fab9b7be /Lib/test/test_pyclbr.py | |
parent | fa7809df023562780c0932bfc554ec8e6559cf37 (diff) | |
download | cpython-git-264c659197bcd2fc3e22776fc711f31b953daae5.tar.gz |
Oops! Restored the pickle test to test_pyclbr, but changed types.py so
that pyclbr doesn't need to special-case modules that do "from types
import *".
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-rw-r--r-- | Lib/test/test_pyclbr.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 4f2d5ea60a..48e8bf7d63 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -142,6 +142,7 @@ class PyclbrTest(TestCase): cm('urllib', ignore=('getproxies_registry', 'open_https', 'getproxies_internetconfig',)) # not on all platforms + cm('pickle') cm('aifc', ignore=('openfp',)) # set with = in module cm('Cookie') cm('sre_parse', ignore=('dump',)) # from sre_constants import * |