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 2010-04-18.22:46:38
SpamBayes Score 7.9352907e-07
Marked as misclassified No
Message-id <1271630800.04.0.536228822461.issue8446@psf.upfronthosting.co.za>
In-reply-to
Content
Mac/Modules/icgluemodule.c has a call to PyErr_WarnPy3k

if (PyErr_WarnPy3k("In 3.x, the icglue module is removed.", 1))
   return;

Other modules check if the result is smaller than 0, but PyErr_WarnPy3k() possible results are only 0 or -1, so I don't understand the error.
History
Date User Action Args
2010-04-18 22:46:40vstinnersetrecipients: + vstinner
2010-04-18 22:46:40vstinnersetmessageid: <1271630800.04.0.536228822461.issue8446@psf.upfronthosting.co.za>
2010-04-18 22:46:38vstinnerlinkissue8446 messages
2010-04-18 22:46:38vstinnercreate