Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r53831:ba41eb7d7483
Date: 2012-03-20 11:10 +0100
http://bitbucket.org/pypy/pypy/changeset/ba41eb7d7483/

Log:    kill test about marshaling longs, they are no longer there

diff --git a/pypy/module/marshal/test/test_marshalimpl.py 
b/pypy/module/marshal/test/test_marshalimpl.py
--- a/pypy/module/marshal/test/test_marshalimpl.py
+++ b/pypy/module/marshal/test/test_marshalimpl.py
@@ -9,13 +9,6 @@
         space = gettestobjspace(usemodules=('array',))
         cls.space = space
 
-    def test_long_0(self):
-        import marshal
-        z = 0L
-        z1 = marshal.loads(marshal.dumps(z))
-        assert z == z1
-        assert type(z1) is long
-
     def test_unmarshal_int64(self):
         # test that we can unmarshal 64-bit ints on 32-bit platforms
         # (of course we only test that if we're running on such a
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to