From c4d2760a6ad8d1e6be87c09c2b7c2ee179e26ac9 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Fri, 7 Nov 2014 22:31:54 +0200 Subject: [PATCH] Silence the failure of test_pyclbr after adding a property in sre_parse (issue #814253). --- Lib/test/test_pyclbr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 7bdc555cd2..3bfee8d243 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -180,7 +180,7 @@ class PyclbrTest(TestCase): cm('pickle') cm('aifc', ignore=('openfp',)) # set with = in module cm('Cookie') - cm('sre_parse', ignore=('dump',)) # from sre_constants import * + cm('sre_parse', ignore=('dump', 'groups')) # from sre_constants import *; property cm('pdb') cm('pydoc') -- 2.50.1