Author: Alex Gaynor <[email protected]>
Branch: 
Changeset: r67142:b49818a92164
Date: 2013-09-29 21:51 -0700
http://bitbucket.org/pypy/pypy/changeset/b49818a92164/

Log:    Fix an emberassing typo

diff --git a/pypy/interpreter/eval.py b/pypy/interpreter/eval.py
--- a/pypy/interpreter/eval.py
+++ b/pypy/interpreter/eval.py
@@ -114,7 +114,7 @@
                 try:
                     self.space.delitem(self.w_locals, w_name)
                 except OperationError as e:
-                    if not e.maches(self.space.w_KeyError):
+                    if not e.match(self.space, self.space.w_KeyError):
                         raise
 
     def locals2fast(self):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to