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 mark.dickinson
Recipients Robin.Schreiber, loewis, mark.dickinson, rhettinger, skrah
Date 2012-08-18.15:35:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345304141.52.0.618365317588.issue15668@psf.upfronthosting.co.za>
In-reply-to
Content
The Py_tp_bases line below doesn't look right.  I suspect that's what's causing the segfault.


+static PyType_Slot Random_Type_slots[] = {
+    {Py_tp_getattro, PyObject_GenericGetAttr},
+    {Py_tp_doc, random_doc},
+    {Py_tp_methods, random_methods},
+    {Py_tp_new, random_new},
+    {Py_tp_free, PyObject_Free},
+    {Py_tp_bases, },
+    {0, 0}
History
Date User Action Args
2012-08-18 15:35:41mark.dickinsonsetrecipients: + mark.dickinson, loewis, rhettinger, skrah, Robin.Schreiber
2012-08-18 15:35:41mark.dickinsonsetmessageid: <1345304141.52.0.618365317588.issue15668@psf.upfronthosting.co.za>
2012-08-18 15:35:40mark.dickinsonlinkissue15668 messages
2012-08-18 15:35:40mark.dickinsoncreate