Author: Alex Gaynor <[email protected]>
Branch: 
Changeset: r59712:83f1c0026c4e
Date: 2013-01-05 00:21 -0800
http://bitbucket.org/pypy/pypy/changeset/83f1c0026c4e/

Log:    fix a typo

diff --git a/pypy/module/_sre/interp_sre.py b/pypy/module/_sre/interp_sre.py
--- a/pypy/module/_sre/interp_sre.py
+++ b/pypy/module/_sre/interp_sre.py
@@ -90,7 +90,7 @@
 # SRE_Pattern class
 
 class W_SRE_Pattern(Wrappable):
-    _immutable_fields_ = ["code", "flags", "num_groups", "w_indexgroup"]
+    _immutable_fields_ = ["code", "flags", "num_groups", "w_groupindex"]
 
     def cannot_copy_w(self):
         space = self.space
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to