From: Serhiy Storchaka Date: Fri, 7 Nov 2014 20:32:37 +0000 (+0200) Subject: Silence the failure of test_pyclbr after adding a property in sre_parse X-Git-Tag: v3.5.0a1~503^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3402ef6c8db288920a1f2fa22d311d62fe909020;p=python Silence the failure of test_pyclbr after adding a property in sre_parse (issue #814253). --- 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')