[Python-checkins] cpython: Issue #27810: Exclude METH_FASTCALL from the stable API

victor.stinner python-checkins at python.org
Mon Sep 12 09:56:25 EDT 2016


https://hg.python.org/cpython/rev/08a500e8b482
changeset:   103712:08a500e8b482
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Sep 12 15:55:21 2016 +0200
summary:
  Issue #27810: Exclude METH_FASTCALL from the stable API

files:
  Include/methodobject.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Include/methodobject.h b/Include/methodobject.h
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -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 */

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list