diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-07 20:32:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-07 20:32:37 (GMT) |
commit | 3402ef6c8db288920a1f2fa22d311d62fe909020 (patch) | |
tree | 8fc2271ab579e30734fb145ae55ed57970d222d9 | |
parent | 84df7fe6a2ff20663a194d3758295bee9b1436ef (diff) | |
download | cpython-3402ef6c8db288920a1f2fa22d311d62fe909020.zip cpython-3402ef6c8db288920a1f2fa22d311d62fe909020.tar.gz cpython-3402ef6c8db288920a1f2fa22d311d62fe909020.tar.bz2 |
Silence the failure of test_pyclbr after adding a property in sre_parse
(issue #814253).
-rw-r--r-- | Lib/test/test_pyclbr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 88aff89..39eb65f 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -159,7 +159,7 @@ class PyclbrTest(TestCase): cm('cgi', ignore=('log',)) # set with = in module cm('pickle') cm('aifc', ignore=('openfp', '_aifc_params')) # set with = in module - cm('sre_parse', ignore=('dump',)) # from sre_constants import * + cm('sre_parse', ignore=('dump', 'groups')) # from sre_constants import *; property cm('pdb') cm('pydoc') |