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 Arfrever, ezio.melotti, gregory.p.smith, lemburg, loewis, pitrou, vstinner
Date 2010-05-01.15:12:16
SpamBayes Score 0.009321697
Marked as misclassified No
Message-id <1272726738.34.0.436532347795.issue8514@psf.upfronthosting.co.za>
In-reply-to
Content
In posixmodule.c, the following snippet doesn't make sense anymore:

 		if (k == NULL) {
 			PyErr_Clear();
 			continue;
 		}

If memory allocation of the bytes object fails, we should error out.
(same for "if (v == NULL)" a bit later)
History
Date User Action Args
2010-05-01 15:12:18pitrousetrecipients: + pitrou, lemburg, loewis, gregory.p.smith, vstinner, ezio.melotti, Arfrever
2010-05-01 15:12:18pitrousetmessageid: <1272726738.34.0.436532347795.issue8514@psf.upfronthosting.co.za>
2010-05-01 15:12:16pitroulinkissue8514 messages
2010-05-01 15:12:16pitroucreate