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 Arfrever, python-dev, vstinner
Date 2013-10-29.23:39:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383089994.55.0.0423237811472.issue19442@psf.upfronthosting.co.za>
In-reply-to
Content
The changeset 1787277915e9 is closer to a workaround than a real fix:

+    if (module != Py_None) {
+        res = warn_explicit(category, message, filename, lineno, module, registry,
+                            NULL);
+    }
+    else {
+        /* FIXME: emitting warnings at exit does crash Python */
+        res = Py_None;
+        Py_INCREF(res);
+    }
History
Date User Action Args
2013-10-29 23:39:54vstinnersetrecipients: + vstinner, Arfrever, python-dev
2013-10-29 23:39:54vstinnersetmessageid: <1383089994.55.0.0423237811472.issue19442@psf.upfronthosting.co.za>
2013-10-29 23:39:54vstinnerlinkissue19442 messages
2013-10-29 23:39:54vstinnercreate