(original) (raw)

changeset: 103712:08a500e8b482 user: Victor Stinner victor.stinner@gmail.com date: Mon Sep 12 15:55:21 2016 +0200 files: Include/methodobject.h description: Issue #27810: Exclude METH_FASTCALL from the stable API diff -r bfd0a73cf907 -r 08a500e8b482 Include/methodobject.h --- a/Include/methodobject.h Mon Sep 12 09:39:23 2016 -0400 +++ b/Include/methodobject.h Mon Sep 12 15:55:21 2016 +0200 @@ -85,9 +85,9 @@ #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 */ /victor.stinner@gmail.com