diff options
author | Guido van Rossum <guido@python.org> | 2007-08-29 13:35:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-29 13:35:11 (GMT) |
commit | 9befa93b04ee0c485615d87e4b34dcfe5e811194 (patch) | |
tree | 58c196130e0c0826527e5b1ca8c9755a306d5207 | |
parent | 8c7461480b0bd1efa3bb51f15adec90c45d821c3 (diff) | |
download | cpython-9befa93b04ee0c485615d87e4b34dcfe5e811194.zip cpython-9befa93b04ee0c485615d87e4b34dcfe5e811194.tar.gz cpython-9befa93b04ee0c485615d87e4b34dcfe5e811194.tar.bz2 |
Fix test_pyclbr -- _https_connection is optional.
-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 640bac6..fe0141c 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -165,6 +165,7 @@ class PyclbrTest(TestCase): cm('mhlib') cm('urllib', ignore=('getproxies_registry', 'open_https', + '_https_connection', 'getproxies_internetconfig',)) # not on all platforms cm('pickle') cm('aifc', ignore=('openfp',)) # set with = in module |