summaryrefslogtreecommitdiff
path: root/Lib/test/test_pyclbr.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-07-18 00:00:03 +0000
committerTim Peters <tim.peters@gmail.com>2004-07-18 00:00:03 +0000
commit1c26e7e4d87be25d84a317c6e96c12b5b57dcca8 (patch)
tree6645b88c752ccca481f1059bcab67d655851a489 /Lib/test/test_pyclbr.py
parent3c05b5636fc2be5d74b766568d641deeb48fcc60 (diff)
downloadcpython-1c26e7e4d87be25d84a317c6e96c12b5b57dcca8.tar.gz
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.
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-rw-r--r--Lib/test/test_pyclbr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py
index db1fc43bad..4f2d5ea60a 100644
--- a/Lib/test/test_pyclbr.py
+++ b/Lib/test/test_pyclbr.py
@@ -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 *