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 pitrou
Recipients ajaksu2, benjamin.peterson, ggenellina, gjb1002, jackjansen, loewis, pitrou, ronaldoussoren
Date 2009-05-12.13:20:13
SpamBayes Score 1.1456947e-11
Marked as misclassified No
Message-id <1242134415.16.0.813386637656.issue1724366@psf.upfronthosting.co.za>
In-reply-to
Content
Also, I don't understand how you confirmed this bug under py3k. Text
files under py3k forbid bytes input, which is what pickle produces:

>>> pickle.dump([], sys.stdout)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/antoine/py3k/__svn__/Lib/pickle.py", line 1333, in dump
    Pickler(file, protocol).dump(obj)
TypeError: write() argument 1 must be str, not bytes
History
Date User Action Args
2009-05-12 13:20:15pitrousetrecipients: + pitrou, loewis, jackjansen, ronaldoussoren, gjb1002, ggenellina, ajaksu2, benjamin.peterson
2009-05-12 13:20:15pitrousetmessageid: <1242134415.16.0.813386637656.issue1724366@psf.upfronthosting.co.za>
2009-05-12 13:20:14pitroulinkissue1724366 messages
2009-05-12 13:20:13pitroucreate