diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-05-30 10:43:59 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2019-05-30 10:43:58 (GMT) |
commit | c145f3bfbe80d498d40848450d4d33c14e2cf782 (patch) | |
tree | e290ce5742c55e9205b663729a014067f1a0fa04 /Include | |
parent | 735e8afa9ee942367b5d0807633a2b9f662cbdbf (diff) | |
download | cpython-c145f3bfbe80d498d40848450d4d33c14e2cf782.zip cpython-c145f3bfbe80d498d40848450d4d33c14e2cf782.tar.gz cpython-c145f3bfbe80d498d40848450d4d33c14e2cf782.tar.bz2 |
bpo-36974: remove _PyObject_HasFastCall (GH-13460)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cpython/abstract.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/cpython/abstract.h b/Include/cpython/abstract.h index 7099178..7ab2045 100644 --- a/Include/cpython/abstract.h +++ b/Include/cpython/abstract.h @@ -55,10 +55,6 @@ PyAPI_FUNC(int) _PyStack_UnpackDict( 40 bytes on the stack. */ #define _PY_FASTCALL_SMALL_STACK 5 -/* Return 1 if callable supports FASTCALL calling convention for positional - arguments: see _PyObject_Vectorcall() and _PyObject_FastCallDict() */ -PyAPI_FUNC(int) _PyObject_HasFastCall(PyObject *callable); - PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(PyObject *callable, PyObject *result, const char *where); |