[pypy-commit] pypy py3k: rpython should be py25

pjenvey noreply at buildbot.pypy.org
Tue Mar 13 06:46:15 CET 2012


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r53415:e1535308b778
Date: 2012-03-12 22:45 -0700
http://bitbucket.org/pypy/pypy/changeset/e1535308b778/

Log:	rpython should be py25

diff --git a/pypy/module/_hashlib/interp_hashlib.py b/pypy/module/_hashlib/interp_hashlib.py
--- a/pypy/module/_hashlib/interp_hashlib.py
+++ b/pypy/module/_hashlib/interp_hashlib.py
@@ -33,7 +33,7 @@
     try:
         w_name = state.space.wrap(rffi.charp2str(obj_name[0].c_name))
         state.space.call_method(state.w_meth_names, "add", w_name)
-    except OperationError as e:
+    except OperationError, e:
         state.w_error = e
 
 # XXX make it threadlocal?


More information about the pypy-commit mailing list