bpo-47061: deprecate the aifc module (GH-32134)

Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
Brett Cannon 2022-04-05 12:05:48 -07:00 committed by GitHub
parent 944f09adfc
commit c1d93b6411
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 95 additions and 6 deletions

View file

@ -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