Skip to content

Commit

Permalink
fix for pypy3.9-v7.3.11 (#59)
Browse files Browse the repository at this point in the history
pypy3.9-v7.3.11 provides PyObject_CallNoArgs() and PyObject_CallOneArg().
  • Loading branch information
logicsys committed Jun 1, 2023
1 parent 513acb3 commit e266312
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pythoncapi_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,8 @@ PyThreadState_LeaveTracing(PyThreadState *tstate)


// bpo-37194 added PyObject_CallNoArgs() to Python 3.9.0a1
#if PY_VERSION_HEX < 0x030900A1 || defined(PYPY_VERSION)
// PyObject_CallNoArgs() added to PyPy 3.9.16-v7.3.11
#if !defined(PyObject_CallNoArgs) && PY_VERSION_HEX < 0x030900A1
PYCAPI_COMPAT_STATIC_INLINE(PyObject*)
PyObject_CallNoArgs(PyObject *func)
{
Expand All @@ -401,7 +402,8 @@ PyObject_CallNoArgs(PyObject *func)

// bpo-39245 made PyObject_CallOneArg() public (previously called
// _PyObject_CallOneArg) in Python 3.9.0a4
#if PY_VERSION_HEX < 0x030900A4 || defined(PYPY_VERSION)
// PyObject_CallOneArg() added to PyPy 3.9.16-v7.3.11
#if !defined(PyObject_CallOneArg) && PY_VERSION_HEX < 0x030900A4
PYCAPI_COMPAT_STATIC_INLINE(PyObject*)
PyObject_CallOneArg(PyObject *func, PyObject *arg)
{
Expand Down

0 comments on commit e266312

Please sign in to comment.