diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-10-12 12:38:24 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-10-12 12:38:24 (GMT) |
| commit | d65e4f4eea278357e5aaee9f510922ef83e04143 (patch) | |
| tree | cf886256f33cb6da52223fb8ec00404d851610c6 /Lib | |
| parent | e9aa5950bb6ae7eab553e915402eddcb610565e4 (diff) | |
| download | cpython-d65e4f4eea278357e5aaee9f510922ef83e04143.zip cpython-d65e4f4eea278357e5aaee9f510922ef83e04143.tar.gz cpython-d65e4f4eea278357e5aaee9f510922ef83e04143.tar.bz2 | |
Issue #24164: Fix test_pyclbr
Ignore pickle.partial symbol which comes from functools.partial.
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/test/test_pyclbr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index cab430b..48bd725 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -156,7 +156,7 @@ 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('pickle') + cm('pickle', ignore=('partial',)) cm('aifc', ignore=('openfp', '_aifc_params')) # set with = in module cm('sre_parse', ignore=('dump', 'groups')) # from sre_constants import *; property cm('pdb') |
