diff options
author | Georg Brandl <georg@python.org> | 2008-01-20 14:20:02 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-20 14:20:02 +0000 |
commit | 858493251f7ed218d0f7ed5d2382e656bb169094 (patch) | |
tree | 76e3698c4d80bf74ce15ea20f8166cf5998db21b | |
parent | 5235398323aeb40c3fda4ad2daea3beebb6ff11f (diff) | |
download | cpython-git-858493251f7ed218d0f7ed5d2382e656bb169094.tar.gz |
Fix test_pyclbr after urllib change.
-rw-r--r-- | Lib/test/test_pyclbr.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 5188bb3502..56fb683050 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -166,6 +166,7 @@ class PyclbrTest(TestCase): cm('cgi', ignore=('log',)) # set with = in module cm('mhlib') cm('urllib', ignore=('getproxies_registry', + 'proxy_bypass_registry', 'open_https', 'getproxies_internetconfig',)) # not on all platforms cm('pickle') |