We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49ca1ef commit 2471967Copy full SHA for 2471967
pandas/_libs/src/compat_helper.h
@@ -26,8 +26,10 @@ the macro, which restores compat.
26
https://bugs.python.org/issue29943
27
*/
28
29
-#if PY_VERSION_HEX < 0x03070000 && defined(PySlice_GetIndicesEx)
30
- #undef PySlice_GetIndicesEx
+#ifndef PYPY_VERSION
+# if PY_VERSION_HEX < 0x03070000 && defined(PySlice_GetIndicesEx)
31
+# undef PySlice_GetIndicesEx
32
+# endif
33
#endif
34
35
PANDAS_INLINE int slice_get_indices(PyObject *s,
0 commit comments