Author: Armin Rigo <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to