diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-03-08 21:31:59 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-03-08 21:31:59 (GMT) |
commit | 547a3167be9a49ce1199be00544011707d367d6f (patch) | |
tree | 764f887bfc18581a40fee4d2e53e4156aed72dfb | |
parent | 0522d9891aec9b7d49049a8a47b687c81929e02d (diff) | |
download | cpython-547a3167be9a49ce1199be00544011707d367d6f.zip cpython-547a3167be9a49ce1199be00544011707d367d6f.tar.gz cpython-547a3167be9a49ce1199be00544011707d367d6f.tar.bz2 |
Fix pyclbr test of httplib without really understanding pyclbr.
It seems that the new class HTTP11 in httplib.test() isn't
discoverable by pyclbr, which causes this test to fail.
-rw-r--r-- | Lib/test/test_pyclbr.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 1a241cf..52fb2ad 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -140,7 +140,8 @@ class PyclbrTest(unittest.TestCase): cm('aifc', ignore=('openfp',)) # set with = cm('httplib', ignore=('error', # set with = - 'HTTPS')) # not on all platforms + 'HTTPS', + 'HTTP11')) # not on all platforms cm('Cookie', ignore=('__str__', 'Cookie')) # set with = |