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 serhiy.storchaka
Recipients amaury.forgeotdarc, belopolsky, brett.cannon, dgreiman, eli.bendersky, eric.snow, ext-, gustavo, ncoghlan, pitrou, serhiy.storchaka
Date 2013-06-01.13:17:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370092652.11.0.364657554558.issue1772673@psf.upfronthosting.co.za>
In-reply-to
Content
The patch is outdated. Some function prototypes were changed in issue9369, some were changed before.

Here is a new patch. It adds const qualifier to following public functions:
PyObject_DelAttrString, PyObject_HasAttrString, PyObject_GetAttrString, PyObject_SetAttrString, PyObject_DelItemString, PyMapping_DelItemString, PyMapping_HasKeyString, PyMapping_GetItemString, PyMapping_SetItemString, PyFile_FromFd, PyImport_ExecCodeModule, PyImport_ExecCodeModuleEx, PyImport_ExecCodeModuleWithPathnames, PyImport_ImportFrozenModule, PyLong_FromString, PyOS_strtoul, PyOS_strtol, PyOS_Readline, PyMarshal_ReadObjectFromString, PyParser_ParseFile, PyParser_ParseFileFlags, PyParser_ParseFileFlagsEx, PyTokenizer_FromFile. It also changes prototypes of some internal functions and structures and fixes documentation for PyDict_DelItemString. Some of functions already were documented with const qualifier.
History
Date User Action Args
2013-06-01 13:17:32serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, amaury.forgeotdarc, ncoghlan, belopolsky, gustavo, pitrou, dgreiman, ext-, eli.bendersky, eric.snow
2013-06-01 13:17:32serhiy.storchakasetmessageid: <1370092652.11.0.364657554558.issue1772673@psf.upfronthosting.co.za>
2013-06-01 13:17:32serhiy.storchakalinkissue1772673 messages
2013-06-01 13:17:26serhiy.storchakacreate