summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2006-04-18 00:27:46 (GMT)
committerSkip Montanaro <skip@pobox.com>2006-04-18 00:27:46 (GMT)
commit54e964d25387f4a78faa207c22a9d6bdb3ac2c47 (patch)
treec0a8fc3a4d1f2b30f8eb646c313321895e268ea5 /Objects
parentc7605f21ae5c5b9e695c8a2346bc21357a84c6b3 (diff)
downloadcpython-54e964d25387f4a78faa207c22a9d6bdb3ac2c47.zip
cpython-54e964d25387f4a78faa207c22a9d6bdb3ac2c47.tar.gz
cpython-54e964d25387f4a78faa207c22a9d6bdb3ac2c47.tar.bz2
C++ compilation cleanup: Migrate declaration of
_PyObject_Call(Function|Method)_SizeT into Include/abstract.h. This gets them under the umbrella of the extern "C" { ... } block in that file.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 7e2cdbc..f7d6f5a 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -10,13 +10,6 @@
#define HASINDEX(o) PyType_HasFeature((o)->ob_type, Py_TPFLAGS_HAVE_INDEX)
-#ifdef HAVE_DECLSPEC_DLL
-PyAPI_FUNC(PyObject *) _PyObject_CallFunction_SizeT(PyObject *callable_object,
- char *format, ...);
-PyAPI_FUNC(PyObject *) _PyObject_CallMethod_SizeT(PyObject *o, char *m,
- char *format, ...);
-#endif
-
/* Shorthands to return certain errors */