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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, vinay.sajip
Date 2011-06-09.09:31:47
SpamBayes Score 0.00046348304
Marked as misclassified No
Message-id <1307611908.37.0.718312211999.issue12291@psf.upfronthosting.co.za>
In-reply-to
Content
Sadly, marshal.load() looks broken:

- The function starts with the comment
    /* XXX Quick hack -- need to do this differently */

- It starts by calling f.read() which consumes the whole file (and explains the issue reported here)

- The code was probably converted too quickly:
    if (PyBytes_Check(data)) {
          ...
    else if (PyBytes_Check(data)) {
History
Date User Action Args
2011-06-09 09:31:48amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, vinay.sajip
2011-06-09 09:31:48amaury.forgeotdarcsetmessageid: <1307611908.37.0.718312211999.issue12291@psf.upfronthosting.co.za>
2011-06-09 09:31:47amaury.forgeotdarclinkissue12291 messages
2011-06-09 09:31:47amaury.forgeotdarccreate