summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-10-12 23:48:08 +0300
committerda-woods <dw-git@d-woods.co.uk>2022-10-12 21:48:35 +0100
commit95009ba67a4c0e4cbe2285d59cde5029574c6fc3 (patch)
tree1a28285f7cdacaa809bf53cc4170817cf4874c4f
parent877167351d2b1da993ea14ec4001406850ba7371 (diff)
downloadcython-95009ba67a4c0e4cbe2285d59cde5029574c6fc3.tar.gz
always set CYTHON_UPDATE_DESCRIPTOR_DOC to 0 on PyPy (#5083)
It was previously set to 0 via a typo.
-rw-r--r--Cython/Utility/ModuleSetupCode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/ModuleSetupCode.c b/Cython/Utility/ModuleSetupCode.c
index f8bf885bc..463d2b7ac 100644
--- a/Cython/Utility/ModuleSetupCode.c
+++ b/Cython/Utility/ModuleSetupCode.c
@@ -85,7 +85,7 @@
#undef CYTHON_USE_EXC_INFO_STACK
#define CYTHON_USE_EXC_INFO_STACK 0
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
- #define CYTHON_UPDATE_DESCRIPTOR_DOC (PYPY_VERSION_HEX >= 0x07030900)
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
#endif
#elif defined(PYSTON_VERSION)