We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e41c60 commit fcb2ab4Copy full SHA for fcb2ab4
asynctnt/iproto/tupleobj/tupleobj.h
@@ -9,9 +9,9 @@ extern "C" {
9
#endif
10
11
#if defined(PYPY_VERSION)
12
-# define Py_TRASHCAN_BEGIN(op, dealloc)
13
-# define Py_TRASHCAN_END(op)
14
-#endif
+# define CPy_TRASHCAN_BEGIN(op, dealloc)
+# define CPy_TRASHCAN_END(op)
+#else
15
16
#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8
17
# define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_BEGIN(op, dealloc)
@@ -21,6 +21,8 @@ extern "C" {
21
# define CPy_TRASHCAN_END(op) Py_TRASHCAN_SAFE_END(op)
22
23
24
+#endif
25
+
26
/* Largest ttuple to save on free list */
27
#define AtntTuple_MAXSAVESIZE 20
28
0 commit comments