Skip to content

Commit

Permalink
Exclude Py_am_send for PyPy (#259) (#263)
Browse files Browse the repository at this point in the history
PyPy 3.10-7.3.12 does not (yet) support it
  • Loading branch information
tttapa committed Aug 14, 2023
1 parent fd1117d commit fb55089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nb_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ static constexpr nb_slot type_slots[] {
E(78, as_async, am, aiter),
E(79, as_async, am, anext),
E(80, ht_type, tp, finalize),
#if PY_VERSION_HEX >= 0x030A0000
#if PY_VERSION_HEX >= 0x030A0000 && !defined(PYPY_VERSION)
E(81, as_async, am, send),
#endif
};
Expand Down

0 comments on commit fb55089

Please sign in to comment.