Skip to content

Commit

Permalink
use upstream pythoncapi_compat.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Jun 10, 2023
1 parent d4911d7 commit 1ced34a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bitarray/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 1ced34a

Please sign in to comment.