diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-07-12 15:54:37 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-07-12 15:54:37 (GMT) |
commit | b2622a452a71fcddf22c2990293d03c05a770bd9 (patch) | |
tree | 197400620fe6c5cc2b047ff0fc21a65a1e06f592 | |
parent | 98013be7977c613d8a1c5f0446a73d100ccc7b17 (diff) | |
download | cpython-b2622a452a71fcddf22c2990293d03c05a770bd9.zip cpython-b2622a452a71fcddf22c2990293d03c05a770bd9.tar.gz cpython-b2622a452a71fcddf22c2990293d03c05a770bd9.tar.bz2 |
Remove httplib from tested modules.
The test of httplib makes it difficult to maintain httplib. There are
two many idioms that pyclbr doesn't seem to understand, and I don't
understand how to update these tests to make them work.
Also remove commented out test of urllib2.
-rw-r--r-- | Lib/test/test_pyclbr.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index ce352af..ae3a5bd 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -126,25 +126,10 @@ class PyclbrTest(unittest.TestCase): 'getproxies_registry', # set with = 'open_https')) # not on all platforms - #XXXX bad example - #cm('urllib2', ignore=('at_cnri', # defined inside __main__ - # '__super_init', # set with =. - # '_HTTPError__super_init', # set with =. - # 'http_error_301', # set with =. - # )) - - - cm('pickle', ignore=('g',)) # deleted declaration cm('aifc', ignore=('openfp',)) # set with = - cm('httplib', ignore=('error', # set with = - 'sendall', # set with = - '_closedsocket', # it's a nested class - 'HTTPS', - 'HTTP11')) # not on all platforms - cm('Cookie', ignore=('__str__', 'Cookie')) # set with = cm('sre_parse', ignore=('literal', # nested def |