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 arigo
Recipients arigo, benjamin.peterson, cgohlke, cstratak, hroncok, jhelmus, larry, mark.dickinson, ned.deily, njs, serhiy.storchaka, skrah, steve.dower
Date 2017-09-27.06:28:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506493696.44.0.154975027568.issue29943@psf.upfronthosting.co.za>
In-reply-to
Content
An update to Serhiy's proposed fix:

#if PY_VERSION_HEX < 0x03070000 && defined(PySlice_GetIndicesEx)
#if !defined(PYPY_VERSION)
#undef PySlice_GetIndicesEx
#endif
#endif

All PyXxx functions are macros on PyPy, and undefining a macro just makes everything go wrong.  And there is not much PyPy can do about that.
History
Date User Action Args
2017-09-27 06:28:16arigosetrecipients: + arigo, mark.dickinson, larry, benjamin.peterson, ned.deily, njs, cgohlke, skrah, serhiy.storchaka, steve.dower, cstratak, hroncok, jhelmus
2017-09-27 06:28:16arigosetmessageid: <1506493696.44.0.154975027568.issue29943@psf.upfronthosting.co.za>
2017-09-27 06:28:16arigolinkissue29943 messages
2017-09-27 06:28:16arigocreate