diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-07 22:33:19 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-07 22:33:19 +0200 |
commit | 479c1176bf8e8d7af65f73a1a12e7e334b6785c4 (patch) | |
tree | f33cad44e115edbc84d88a38b8a241545d64dcad | |
parent | 6276b32799d9396bb32dbbcbed61b3045ce166ec (diff) | |
parent | 3402ef6c8db288920a1f2fa22d311d62fe909020 (diff) | |
download | cpython-git-479c1176bf8e8d7af65f73a1a12e7e334b6785c4.tar.gz |
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 88aff898d4..39eb65f10d 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') |