[pypy-commit] pypy default: Fix for module/_jitlog on "py.test -A"

arigo pypy.commits at gmail.com
Sat Jul 30 10:33:38 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r85930:86f37295b7ac
Date: 2016-07-30 16:35 +0200
http://bitbucket.org/pypy/pypy/changeset/86f37295b7ac/

Log:	Fix for module/_jitlog on "py.test -A"

diff --git a/pypy/tool/pytest/objspace.py b/pypy/tool/pytest/objspace.py
--- a/pypy/tool/pytest/objspace.py
+++ b/pypy/tool/pytest/objspace.py
@@ -128,3 +128,5 @@
     def is_w(self, obj1, obj2):
         return obj1 is obj2
 
+    def setitem(self, obj, key, value):
+        obj[key] = value


More information about the pypy-commit mailing list