File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ PyThreadState_LeaveTracing(PyThreadState *tstate)
390
390
391
391
392
392
// bpo-37194 added PyObject_CallNoArgs() to Python 3.9.0a1
393
- #if PY_VERSION_HEX < 0x030900A1 || defined(PYPY_VERSION)
393
+ #if PY_VERSION_HEX < 0x030900A1 && ! defined(PYPY_VERSION)
394
394
PYCAPI_COMPAT_STATIC_INLINE (PyObject*)
395
395
PyObject_CallNoArgs(PyObject *func)
396
396
{
@@ -401,7 +401,7 @@ PyObject_CallNoArgs(PyObject *func)
401
401
402
402
// bpo-39245 made PyObject_CallOneArg() public (previously called
403
403
// _PyObject_CallOneArg) in Python 3.9.0a4
404
- #if PY_VERSION_HEX < 0x030900A4 || defined(PYPY_VERSION)
404
+ #if PY_VERSION_HEX < 0x030900A4 && ! defined(PYPY_VERSION)
405
405
PYCAPI_COMPAT_STATIC_INLINE (PyObject*)
406
406
PyObject_CallOneArg(PyObject *func, PyObject *arg)
407
407
{
You can’t perform that action at this time.
0 commit comments