summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pyclbr.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-25 20:12:01 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-25 20:12:01 (GMT)
commit4d35e75ca069b51ffdac7b34dad4ffb77e72a598 (patch)
tree0b5cbaf639fc047ed4fd464371fcef2f8ccdcf13 /Lib/test/test_pyclbr.py
parent840c310a2577459dd9f6ac9f5f9b136d7f4829f8 (diff)
downloadcpython-4d35e75ca069b51ffdac7b34dad4ffb77e72a598.zip
cpython-4d35e75ca069b51ffdac7b34dad4ffb77e72a598.tar.gz
cpython-4d35e75ca069b51ffdac7b34dad4ffb77e72a598.tar.bz2
#17818: aifc.getparams now returns a namedtuple.
Patch by Claudiu Popa.
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-rw-r--r--Lib/test/test_pyclbr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py
index e83989e..c094455 100644
--- a/Lib/test/test_pyclbr.py
+++ b/Lib/test/test_pyclbr.py
@@ -158,7 +158,7 @@ class PyclbrTest(TestCase):
cm('random', ignore=('Random',)) # from _random import Random as CoreGenerator
cm('cgi', ignore=('log',)) # set with = in module
cm('pickle')
- cm('aifc', ignore=('openfp',)) # set with = in module
+ cm('aifc', ignore=('openfp', '_aifc_params')) # set with = in module
cm('sre_parse', ignore=('dump',)) # from sre_constants import *
cm('pdb')
cm('pydoc')