changeset: 98714:288953a787ce user: Victor Stinner date: Mon Oct 12 14:38:24 2015 +0200 files: Lib/test/test_pyclbr.py description: Issue #24164: Fix test_pyclbr Ignore pickle.partial symbol which comes from functools.partial. diff -r b45083aac800 -r 288953a787ce Lib/test/test_pyclbr.py --- a/Lib/test/test_pyclbr.py Mon Oct 12 13:57:47 2015 +0200 +++ b/Lib/test/test_pyclbr.py Mon Oct 12 14:38:24 2015 +0200 @@ -156,7 +156,7 @@ # 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')