Message303101
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. |
|
Date |
User |
Action |
Args |
2017-09-27 06:28:16 | arigo | set | recipients:
+ arigo, mark.dickinson, larry, benjamin.peterson, ned.deily, njs, cgohlke, skrah, serhiy.storchaka, steve.dower, cstratak, hroncok, jhelmus |
2017-09-27 06:28:16 | arigo | set | messageid: <1506493696.44.0.154975027568.issue29943@psf.upfronthosting.co.za> |
2017-09-27 06:28:16 | arigo | link | issue29943 messages |
2017-09-27 06:28:16 | arigo | create | |
|