[pypy-svn] pypy improve-unwrap_spec: Oops

amauryfa commits-noreply at bitbucket.org
Wed Feb 16 19:20:30 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: improve-unwrap_spec
Changeset: r42090:d7173c0d195d
Date: 2011-02-16 19:07 +0100
http://bitbucket.org/pypy/pypy/changeset/d7173c0d195d/

Log:	Oops

diff --git a/pypy/tool/pytest/appsupport.py b/pypy/tool/pytest/appsupport.py
--- a/pypy/tool/pytest/appsupport.py
+++ b/pypy/tool/pytest/appsupport.py
@@ -176,7 +176,7 @@
     w_BuiltinAssertionError = space.getitem(space.builtin.w_dict, 
                                             space.wrap('AssertionError'))
     w_metaclass = space.type(w_BuiltinAssertionError)
-    w_init = space.wrap(gateway.interp2app_temp(my_init)
+    w_init = space.wrap(gateway.interp2app_temp(my_init))
     w_dict = space.newdict()
     space.setitem(w_dict, space.wrap('__init__'), w_init)
     return space.call_function(w_metaclass,


More information about the Pypy-commit mailing list