summaryrefslogtreecommitdiff
path: root/Lib/test/test_pyclbr.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2022-04-05 12:05:48 -0700
committerGitHub <noreply@github.com>2022-04-05 12:05:48 -0700
commitc1d93b6411f975d67e43942f1a2745a22983c18c (patch)
treecccdd369da191fa03268967013d60369ab48fcdf /Lib/test/test_pyclbr.py
parent944f09adfcc59f54432ac2947cf95f3465d90e1e (diff)
downloadcpython-git-c1d93b6411f975d67e43942f1a2745a22983c18c.tar.gz
bpo-47061: deprecate the `aifc` module (GH-32134)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-rw-r--r--Lib/test/test_pyclbr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py
index 157c522b63..329acf0c64 100644
--- a/Lib/test/test_pyclbr.py
+++ b/Lib/test/test_pyclbr.py
@@ -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