diff options
| author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-05-12 22:21:39 (GMT) |
|---|---|---|
| committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-05-12 22:21:39 (GMT) |
| commit | e1b93f2855cdd58ab586c7f91b785460e1738e52 (patch) | |
| tree | 0bfc8a45ba7d6709f5d06d00a3abf868aaab0399 /Lib/test/test_pyclbr.py | |
| parent | 236819310db3fe6f2fb22d48b780fa6ec253b6c7 (diff) | |
| download | cpython-e1b93f2855cdd58ab586c7f91b785460e1738e52.zip cpython-e1b93f2855cdd58ab586c7f91b785460e1738e52.tar.gz cpython-e1b93f2855cdd58ab586c7f91b785460e1738e52.tar.bz2 | |
Adapt test_pyclbr to the new version of urllib.py:
The new mac-specific functions must be ignored.
Diffstat (limited to 'Lib/test/test_pyclbr.py')
| -rw-r--r-- | Lib/test/test_pyclbr.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 3617edf..587bd89 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -164,9 +164,13 @@ class PyclbrTest(TestCase): # These were once about the 10 longest modules cm('random', ignore=('Random',)) # from _random import Random as CoreGenerator cm('cgi', ignore=('log',)) # set with = in module - cm('urllib', ignore=('getproxies_registry', + cm('urllib', ignore=('_CFNumberToInt32', + '_CStringFromCFString', + 'getproxies_registry', 'proxy_bypass_registry', + 'proxy_bypass_macosx_sysconf', 'open_https', + 'getproxies_macosx_sysconf', 'getproxies_internetconfig',)) # not on all platforms cm('pickle') cm('aifc', ignore=('openfp',)) # set with = in module |
