STINNER Victor <[email protected]> added the comment: - assert(!builtins || PyDict_Check(builtins)); + assert(!builtins);
Oops, the assert must be replaced with assert(builtins != NULL) -> fixed in patch version 4. ---------- Added file: http://bugs.python.org/file25257/builtins-4.patch _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue14385> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
