mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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.
This commit is contained in:
parent
0522d9891a
commit
547a3167be
1 changed files with 2 additions and 1 deletions
|
@ -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 =
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue