summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-01 16:53:15 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-01 16:53:15 (GMT)
commit8689a10f075fa2a1980a4fda040c46ed4dbcb3bb (patch)
treee363dc992e603f2f786004899656cd4cbc270a2f /Include
parentc8bdc01d82573ce95ab7fed8b9aab8b3b566fe03 (diff)
downloadcpython-8689a10f075fa2a1980a4fda040c46ed4dbcb3bb.zip
cpython-8689a10f075fa2a1980a4fda040c46ed4dbcb3bb.tar.gz
cpython-8689a10f075fa2a1980a4fda040c46ed4dbcb3bb.tar.bz2
Merged revisions 79555 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79555 | antoine.pitrou | 2010-04-01 18:42:11 +0200 (jeu., 01 avril 2010) | 5 lines 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.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index a48d23c..ad61373 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)