Author: Maciej Fijalkowski <[email protected]>
Branch: rpython-bytearray
Changeset: r59564:0c2700262f0d
Date: 2012-12-26 19:10 +0200
http://bitbucket.org/pypy/pypy/changeset/0c2700262f0d/

Log:    mark bytearray as not supported for now

diff --git a/pypy/jit/metainterp/test/test_string.py 
b/pypy/jit/metainterp/test/test_string.py
--- a/pypy/jit/metainterp/test/test_string.py
+++ b/pypy/jit/metainterp/test/test_string.py
@@ -620,3 +620,13 @@
             return result
         res = self.meta_interp(main, [9])
         assert res == main(9)
+
+    def test_bytearray(self):
+        py.test.skip("implement it")
+        def f(i):
+            b = bytearray("abc")
+            b[1] = i
+            return b[1]
+
+        res = self.interp_operations(f, [13])
+        assert res == 13
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to