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 Rhamphoryncus
Recipients Rhamphoryncus
Date 2008-06-12.20:23:23
SpamBayes Score 0.011483143
Marked as misclassified No
Message-id <1213302204.8.0.0176767503355.issue3095@psf.upfronthosting.co.za>
In-reply-to
Content
multiprocessing.c currently has code like this:

	temp = PyDict_New();
	if (!temp)
		return;
	if (PyModule_AddObject(module, "flags", temp) < 0)
		return;

PyModule_AddObject consumes the reference to temp, so it could
conceivable be deleted before the rest of this function finishes.
History
Date User Action Args
2008-06-12 20:23:25Rhamphoryncussetspambayes_score: 0.0114831 -> 0.011483143
recipients: + Rhamphoryncus
2008-06-12 20:23:24Rhamphoryncussetspambayes_score: 0.0114831 -> 0.0114831
messageid: <1213302204.8.0.0176767503355.issue3095@psf.upfronthosting.co.za>
2008-06-12 20:23:24Rhamphoryncuslinkissue3095 messages
2008-06-12 20:23:23Rhamphoryncuscreate