Skip to content

Commit fcb2ab4

Browse files
committed
fix for pypy
1 parent 7e41c60 commit fcb2ab4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

asynctnt/iproto/tupleobj/tupleobj.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ extern "C" {
99
#endif
1010

1111
#if defined(PYPY_VERSION)
12-
# define Py_TRASHCAN_BEGIN(op, dealloc)
13-
# define Py_TRASHCAN_END(op)
14-
#endif
12+
# define CPy_TRASHCAN_BEGIN(op, dealloc)
13+
# define CPy_TRASHCAN_END(op)
14+
#else
1515

1616
#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8
1717
# define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_BEGIN(op, dealloc)
@@ -21,6 +21,8 @@ extern "C" {
2121
# define CPy_TRASHCAN_END(op) Py_TRASHCAN_SAFE_END(op)
2222
#endif
2323

24+
#endif
25+
2426
/* Largest ttuple to save on free list */
2527
#define AtntTuple_MAXSAVESIZE 20
2628

0 commit comments

Comments
 (0)