From 4e49936eb03faf2dc8c9e5f3a734988a7935aaa8 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Thu, 14 Mar 2002 17:06:55 +0000 Subject: [PATCH] I don't understand it either... backport jhylton's checkin of revision 1.7 of test_pyclbr.py 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 1a241cfa8e87..52fb2ad68bfd 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 = -- 2.47.3