From 60c65596d476d5b6553eb040fe67f36da938da0f Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 22 Dec 2012 18:28:52 +0100 Subject: [PATCH] changed re.SREMatch.group --- jedi/mixin/_sre.pym | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/mixin/_sre.pym b/jedi/mixin/_sre.pym index 2b6935b5..00d6c4e0 100644 --- a/jedi/mixin/_sre.pym +++ b/jedi/mixin/_sre.pym @@ -22,7 +22,7 @@ def compile(): def expand(self): return '' - def group(self): + def group(self, nr): return '' def groupdict(self):