Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r70272:5cba21f3d2be
Date: 2014-03-24 16:44 -0700
http://bitbucket.org/pypy/pypy/changeset/5cba21f3d2be/
Log: adapt to py3
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
@@ -186,7 +186,7 @@
from array import array
class subtype(array):
pass
- assert marshal.dumps(subtype('c', 'test')) == marshal.dumps(array('c',
'test'))
+ assert marshal.dumps(subtype('b', b'test')) ==
marshal.dumps(array('b', b'test'))
def test_bad_typecode(self):
import marshal
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit