diff options
author | Skip Montanaro <skip@pobox.com> | 2006-04-18 00:27:46 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2006-04-18 00:27:46 (GMT) |
commit | 54e964d25387f4a78faa207c22a9d6bdb3ac2c47 (patch) | |
tree | c0a8fc3a4d1f2b30f8eb646c313321895e268ea5 /Include/abstract.h | |
parent | c7605f21ae5c5b9e695c8a2346bc21357a84c6b3 (diff) | |
download | cpython-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 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 3dcc0b0..f96b297 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -348,6 +348,11 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ Python expression: o.method(args). */ + PyAPI_FUNC(PyObject *) _PyObject_CallFunction_SizeT(PyObject *callable, + char *format, ...); + PyAPI_FUNC(PyObject *) _PyObject_CallMethod_SizeT(PyObject *o, + char *name, + char *format, ...); PyAPI_FUNC(PyObject *) PyObject_CallFunctionObjArgs(PyObject *callable, ...); |