Armin Rigo <ar...@users.sourceforge.net> added the comment:

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.

----------
nosy: +arigo

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue29943>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to