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 pitrou, vstinner
Date 2012-04-18.11:54:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334750048.42.0.880786301025.issue14385@psf.upfronthosting.co.za>
In-reply-to
Content
-                assert(!builtins || PyDict_Check(builtins));
+                assert(!builtins);

Oops, the assert must be replaced with assert(builtins != NULL) -> fixed in patch version 4.
History
Date User Action Args
2012-04-18 11:54:08vstinnersetrecipients: + vstinner, pitrou
2012-04-18 11:54:08vstinnersetmessageid: <1334750048.42.0.880786301025.issue14385@psf.upfronthosting.co.za>
2012-04-18 11:54:07vstinnerlinkissue14385 messages
2012-04-18 11:54:07vstinnercreate