Commit 1c26e7e4 authored by Tim Peters's avatar Tim Peters

The Darwin-specific getproxies_internetconfig() was added to urllib,

causing test_pyclbr to fail on all other platforms.  Added that routine
to the urllib "ignore" list.
Removed the special case for "g" in the pickle module.  types.py deletes
"g" from its namespace; maybe it didn't always.  Whatever, the special
case isn't needed today.
parent 3c05b563
......@@ -140,8 +140,8 @@ class PyclbrTest(TestCase):
cm('cgi', ignore=('log',)) # set with = in module
cm('mhlib')
cm('urllib', ignore=('getproxies_registry',
'open_https')) # not on all platforms
cm('pickle', ignore=('g',)) # from types import *
'open_https',
'getproxies_internetconfig',)) # not on all platforms
cm('aifc', ignore=('openfp',)) # set with = in module
cm('Cookie')
cm('sre_parse', ignore=('dump',)) # from sre_constants import *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment