[pypy-commit] pypy type-specialized-instances: oups

l.diekmann noreply at buildbot.pypy.org
Tue Dec 6 14:47:35 CET 2011


Author: Lukas Diekmann <lukas.diekmann at uni-duesseldorf.de>
Branch: type-specialized-instances
Changeset: r50209:0c894ad8e9b5
Date: 2011-12-06 14:47 +0100
http://bitbucket.org/pypy/pypy/changeset/0c894ad8e9b5/

Log:	oups

diff --git a/pypy/objspace/std/mapdict.py b/pypy/objspace/std/mapdict.py
--- a/pypy/objspace/std/mapdict.py
+++ b/pypy/objspace/std/mapdict.py
@@ -41,7 +41,7 @@
             return self.terminator._write_terminator(obj, selector, w_value)
         try:
             attr.write_attr(obj, w_value) #obj._mapdict_write_storage(index, w_value)
-        except OperationError:
+        except OperationError, e:
             if not e.match(self.space, self.space.w_TypeError):
                 raise
             firstattr = obj._get_mapdict_map()


More information about the pypy-commit mailing list