[pypy-commit] pypy virtual-arguments: maybe the last one

fijal noreply at buildbot.pypy.org
Wed Jul 18 18:35:47 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: virtual-arguments
Changeset: r56184:15097f46e79c
Date: 2012-07-18 18:35 +0200
http://bitbucket.org/pypy/pypy/changeset/15097f46e79c/

Log:	maybe the last one

diff --git a/pypy/module/__pypy__/interp_dict.py b/pypy/module/__pypy__/interp_dict.py
--- a/pypy/module/__pypy__/interp_dict.py
+++ b/pypy/module/__pypy__/interp_dict.py
@@ -21,4 +21,4 @@
     if not isinstance(w_obj, W_DictMultiObject):
         raise OperationError(space.w_TypeError,
                              space.wrap("expecting dict object"))
-    return space.wrap(w_obj.strategy.__class__.__name__)
+    return space.wrap(repr(w_obj.strategy.__class__))


More information about the pypy-commit mailing list