This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author weirdink13
Recipients mattchaput, weirdink13
Date 2012-03-29.20:48:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333054093.13.0.553649312835.issue14447@psf.upfronthosting.co.za>
In-reply-to
Content
You are correct.
I got:
Python 3.1.2 (release31-maint, Dec  9 2011, 20:50:50) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import marshall
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named marshall
>>> import marshal
>>> f = open("test", "wb")
>>> marshal.dump(("hello", 1), f)
20
>>> marshal.dump(("there", 2), f)
20
>>> marshal.dump(("friend", 3), f)
21
>>> f.close()
>>> f = open("test", "rb")
>>> print(marshal.load(f))
('hello', 1)
>>> print(marshal.load(f))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
EOFError: EOF read where object expected
>>>
History
Date User Action Args
2012-03-29 20:48:13weirdink13setrecipients: + weirdink13, mattchaput
2012-03-29 20:48:13weirdink13setmessageid: <1333054093.13.0.553649312835.issue14447@psf.upfronthosting.co.za>
2012-03-29 20:48:12weirdink13linkissue14447 messages
2012-03-29 20:48:12weirdink13create