Kaydet (Commit) 137f39ac authored tarafından Victor Stinner's avatar Victor Stinner

Issue #27810: Exclude METH_FASTCALL from the stable API

üst dde4f63a
...@@ -85,9 +85,9 @@ PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, ...@@ -85,9 +85,9 @@ PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
#define METH_COEXIST 0x0040 #define METH_COEXIST 0x0040
#ifndef Py_LIMITED_API
#define METH_FASTCALL 0x0080 #define METH_FASTCALL 0x0080
#ifndef Py_LIMITED_API
typedef struct { typedef struct {
PyObject_HEAD PyObject_HEAD
PyMethodDef *m_ml; /* Description of the C function to call */ PyMethodDef *m_ml; /* Description of the C function to call */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment