mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Issue #24164: Fix test_pyclbr
Ignore pickle.partial symbol which comes from functools.partial.
This commit is contained in:
parent
e9aa5950bb
commit
d65e4f4eea
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue