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 skrah
Recipients jcea, skrah, vstinner
Date 2012-01-27.22:17:32
SpamBayes Score 0.033891514
Marked as misclassified No
Message-id <1327702652.78.0.778235628842.issue13874@psf.upfronthosting.co.za>
In-reply-to
Content
Well, to be completely unambiguous. This works:

diff -r d2cf8a34ddf9 Modules/faulthandler.c
--- a/Modules/faulthandler.c    Thu Jan 26 00:15:07 2012 -0800
+++ b/Modules/faulthandler.c    Fri Jan 27 23:16:27 2012 +0100
@@ -943,7 +943,7 @@
 static PyObject *
 faulthandler_read_null(PyObject *self, PyObject *args)
 {
-    int *x = NULL, y;
+    volatile int *x = NULL, y;
     int release_gil = 0;
     if (!PyArg_ParseTuple(args, "|i:_read_null", &release_gil))
History
Date User Action Args
2012-01-27 22:17:32skrahsetrecipients: + skrah, jcea, vstinner
2012-01-27 22:17:32skrahsetmessageid: <1327702652.78.0.778235628842.issue13874@psf.upfronthosting.co.za>
2012-01-27 22:17:32skrahlinkissue13874 messages
2012-01-27 22:17:32skrahcreate