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 serhiy.storchaka, vstinner
Date 2017-12-07.11:21:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512645701.53.0.213398074469.issue32240@psf.upfronthosting.co.za>
In-reply-to
Content
The proposed PR replaces argument declarations "PyObject **args" with "PyObject * const *args". In many cases this can be a pointer to the internal array of the tuple object. It is not safe to change it.

PyEval_EvalCodeEx() is the only public function affected by this change, but this change is backward compatible. All other affected code is a private C API.
History
Date User Action Args
2017-12-07 11:21:41serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner
2017-12-07 11:21:41serhiy.storchakasetmessageid: <1512645701.53.0.213398074469.issue32240@psf.upfronthosting.co.za>
2017-12-07 11:21:41serhiy.storchakalinkissue32240 messages
2017-12-07 11:21:41serhiy.storchakacreate