diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-07 20:33:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-07 20:33:19 (GMT) |
commit | 479c1176bf8e8d7af65f73a1a12e7e334b6785c4 (patch) | |
tree | f33cad44e115edbc84d88a38b8a241545d64dcad | |
parent | 6276b32799d9396bb32dbbcbed61b3045ce166ec (diff) | |
parent | 3402ef6c8db288920a1f2fa22d311d62fe909020 (diff) | |
download | cpython-479c1176bf8e8d7af65f73a1a12e7e334b6785c4.zip cpython-479c1176bf8e8d7af65f73a1a12e7e334b6785c4.tar.gz cpython-479c1176bf8e8d7af65f73a1a12e7e334b6785c4.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') |