Skip to content

Commit

Permalink
Fix PyPy Trashcan
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcoding committed Dec 1, 2024
1 parent 730d380 commit b1472fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asynctnt/iproto/tupleobj/tupleobj.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ extern "C" {
#endif

#if defined(PYPY_VERSION)
# define CPy_TRASHCAN_BEGIN(op, dealloc)
# define CPy_TRASHCAN_END(op)
# define CPy_TRASHCAN_BEGIN(op, dealloc) do {} while(0);
# define CPy_TRASHCAN_END(op) do {} while(0);
#else

#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8
Expand Down

0 comments on commit b1472fd

Please sign in to comment.