cpython: 08a500e8b482 (original) (raw)
Mercurial > cpython
changeset 103712:08a500e8b482
Issue #27810: Exclude METH_FASTCALL from the stable API [#27810]
Victor Stinner victor.stinner@gmail.com | |
---|---|
date | Mon, 12 Sep 2016 15:55:21 +0200 |
parents | bfd0a73cf907 |
children | da485c6c744e e3b28f5abf7c |
files | Include/methodobject.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Include/methodobject.h 2 |
line wrap: on
line diff
--- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -85,9 +85,9 @@ PyAPI_FUNC(PyObject *) PyCFunction_NewEx #define METH_COEXIST 0x0040 +#ifndef Py_LIMITED_API #define METH_FASTCALL 0x0080 -#ifndef Py_LIMITED_API typedef struct { PyObject_HEAD PyMethodDef m_ml; / Description of the C function to call */