diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-01 16:42:11 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-01 16:42:11 (GMT) |
commit | 76c8649038bed4598c7fcac9ef87548f94013087 (patch) | |
tree | 3bbe0ceed50c9072fce0bb2bdf5aa64192279111 /Include | |
parent | f54c2683267e008aa27570e366e64e2d0d80061c (diff) | |
download | cpython-76c8649038bed4598c7fcac9ef87548f94013087.zip cpython-76c8649038bed4598c7fcac9ef87548f94013087.tar.gz cpython-76c8649038bed4598c7fcac9ef87548f94013087.tar.bz2 |
Issue #8276: PyEval_CallObject() is now only available in macro form. The
function declaration, which was kept for backwards compatibility reasons,
is now removed (the macro was introduced in 1997!).
Diffstat (limited to 'Include')
-rw-r--r-- | Include/ceval.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index f441197..a3b3dcf 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -10,10 +10,6 @@ extern "C" { PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( PyObject *, PyObject *, PyObject *); -/* DLL-level Backwards compatibility: */ -#undef PyEval_CallObject -PyAPI_FUNC(PyObject *) PyEval_CallObject(PyObject *, PyObject *); - /* Inline this */ #define PyEval_CallObject(func,arg) \ PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL) |