Commit 81772f1e authored by Serhiy Storchaka's avatar Serhiy Storchaka

Trying to fix test_xpickle with python 2.4 and 2.5.

parent 3c8ef8f1
......@@ -723,8 +723,8 @@ class AbstractUnpickleTests(unittest.TestCase):
self.check_unpickling_error(self.bad_mark_errors, p)
def test_truncated_data(self):
self.check_unpickling_error(EOFError, b'')
self.check_unpickling_error(EOFError, b'N')
self.check_unpickling_error(EOFError, '')
self.check_unpickling_error(EOFError, 'N')
badpickles = [
'F', # FLOAT
'F0.0',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment