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 vstinner
Recipients vstinner
Date 2009-12-08.02:59:16
SpamBayes Score 0.00041812667
Marked as misclassified No
Message-id <1260241159.34.0.385504670934.issue7455@psf.upfronthosting.co.za>
In-reply-to
Content
load_pop() pops a value if the stack length is >= 0. The test is wrong:
if the length is zero, the stack is empty and stackUnderflow() have to
be called.

Example:

  $ ../../python -c "import cPickle; cPickle.loads('0')"
  Erreur de segmentation
History
Date User Action Args
2009-12-08 02:59:19vstinnersetrecipients: + vstinner
2009-12-08 02:59:19vstinnersetmessageid: <1260241159.34.0.385504670934.issue7455@psf.upfronthosting.co.za>
2009-12-08 02:59:17vstinnerlinkissue7455 messages
2009-12-08 02:59:16vstinnercreate