[pypy-commit] pypy py3k: kill test about marshaling longs, they are no longer there

antocuni noreply at buildbot.pypy.org
Tue Mar 20 15:52:35 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
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


More information about the pypy-commit mailing list