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 vstinner
Recipients benjamin.peterson, cgohlke, paul.moore, pyscripter, steve.dower, tim.golden, vstinner, zach.ware
Date 2019-06-17.15:52:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560786729.64.0.112878526419.issue37189@roundup.psfhosted.org>
In-reply-to
Content
> A look through `git log -p` looks like bpo-34646 is likely to be related.

New changeset e5024517811ee990b770fca0ba7058742d00e032 by Benjamin Peterson in branch 'master':
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
https://github.com/python/cpython/commit/e5024517811ee990b770fca0ba7058742d00e032

Extract of this change:

 
 #undef PyRun_String
-PyAPI_FUNC(PyObject *)
+PyObject *
 PyRun_String(const char *str, int s, PyObject *g, PyObject *l)
 {
     return PyRun_StringFlags(str, s, g, l, NULL);
 }
 

On Windows, this change removed dllexport from PyRun_String(). My PR 14142 adds it back, to pythonrun.h.
History
Date User Action Args
2019-06-17 15:52:09vstinnersetrecipients: + vstinner, paul.moore, tim.golden, pyscripter, benjamin.peterson, cgohlke, zach.ware, steve.dower
2019-06-17 15:52:09vstinnersetmessageid: <1560786729.64.0.112878526419.issue37189@roundup.psfhosted.org>
2019-06-17 15:52:09vstinnerlinkissue37189 messages
2019-06-17 15:52:09vstinnercreate