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 Tobias.Becker
Recipients Tobias.Becker, docs@python
Date 2013-03-06.00:05:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362528340.9.0.203037073378.issue17363@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/3.3/c-api/module.html?highlight=pymodule#PyState_AddModule

the arguments of PyState_AddModule are in wrong order:
currently: int PyState_AddModule(PyModuleDef *def, PyObject *module)
correct: int PyState_AddModule(PyObject *module,PyModuleDef *def)
History
Date User Action Args
2013-03-06 00:05:40Tobias.Beckersetrecipients: + Tobias.Becker, docs@python
2013-03-06 00:05:40Tobias.Beckersetmessageid: <1362528340.9.0.203037073378.issue17363@psf.upfronthosting.co.za>
2013-03-06 00:05:40Tobias.Beckerlinkissue17363 messages
2013-03-06 00:05:40Tobias.Beckercreate