mirror of
https://github.com/python/cpython.git
synced 2025-08-25 03:04:55 +00:00
bpo-47061: deprecate the aifc
module (GH-32134)
Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
944f09adfc
commit
c1d93b6411
10 changed files with 95 additions and 6 deletions
|
@ -216,12 +216,12 @@ class PyclbrTest(TestCase):
|
|||
def test_others(self):
|
||||
cm = self.checkModule
|
||||
|
||||
# These were once about the 10 longest modules
|
||||
# These were once some of the longest modules.
|
||||
cm('aifc', ignore=('_aifc_params',)) # set with = in module
|
||||
cm('random', ignore=('Random',)) # from _random import Random as CoreGenerator
|
||||
cm('cgi', ignore=('log',)) # set with = in module
|
||||
cm('pickle', ignore=('partial', 'PickleBuffer'))
|
||||
cm('aifc', ignore=('_aifc_params',)) # set with = in module
|
||||
cm('re._parser', ignore=('dump', 'groups', 'pos')) # from ._constants import *; property
|
||||
cm('sre_parse', ignore=('dump', 'groups', 'pos')) # from sre_constants import *; property
|
||||
cm(
|
||||
'pdb',
|
||||
# pyclbr does not handle elegantly `typing` or properties
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue