Author: Philip Jenvey <pjen...@underboss.org> Branch: py3k Changeset: r65472:be81f420e034 Date: 2013-07-18 15:40 -0700 http://bitbucket.org/pypy/pypy/changeset/be81f420e034/
Log: our marshal's fine, this is also a ValueError on cpython diff --git a/pypy/module/marshal/test/test_marshal.py b/pypy/module/marshal/test/test_marshal.py --- a/pypy/module/marshal/test/test_marshal.py +++ b/pypy/module/marshal/test/test_marshal.py @@ -184,7 +184,7 @@ import marshal # Yes, there is code that depends on this :-( raises(EOFError, marshal.loads, b'<test>') - raises(MemoryError, marshal.loads, b'(test)') + raises(ValueError, marshal.loads, b'(test)') class AppTestSmallLong(AppTestMarshal): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit