From 547a3167be9a49ce1199be00544011707d367d6f Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Fri, 8 Mar 2002 21:31:59 +0000 Subject: [PATCH] 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. --- Lib/test/test_pyclbr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 1a241cfa8e8..52fb2ad68bf 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 =