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 IROV
Recipients Digitalxero, IROV, amaury.forgeotdarc, temoto
Date 2011-02-27.10:16:44
SpamBayes Score 0.06546274
Marked as misclassified No
Message-id <1298801805.41.0.0498645848245.issue10880@psf.upfronthosting.co.za>
In-reply-to
Content
sorry ^_^

+    test_var = Py_BuildValue("?", 0);
+    if (!PyBool_Check(test_var) || test_var == Py_True) {
+        PyErr_SetString(TestError, "Failed to Create boolean");
+        return NULL;
+    }
+    
+    test_var = Py_BuildValue("?", 1);
+    if (!PyBool_Check(test_var) || test_var == Py_False) {
+        PyErr_SetString(TestError, "Failed to Create boolean");
+        return NULL;
+    }
History
Date User Action Args
2011-02-27 10:16:45IROVsetrecipients: + IROV, amaury.forgeotdarc, temoto, Digitalxero
2011-02-27 10:16:45IROVsetmessageid: <1298801805.41.0.0498645848245.issue10880@psf.upfronthosting.co.za>
2011-02-27 10:16:44IROVlinkissue10880 messages
2011-02-27 10:16:44IROVcreate