summaryrefslogtreecommitdiff
path: root/Include/classobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-09-05 22:52:50 +0000
committerGuido van Rossum <guido@python.org>2001-09-05 22:52:50 +0000
commitb479dc561c1e778c892f04d1e9673400e95d7e78 (patch)
treef34c39cbecffdf0c0cda704a44c8758d6e097f1a /Include/classobject.h
parenta40c793d06ee2b42a5013015352616b4ca6b288b (diff)
downloadcpython-git-b479dc561c1e778c892f04d1e9673400e95d7e78.tar.gz
Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back.
While not even documented, they were clearly part of the C API, there's no great difficulty to support them, and it has the cool effect of not requiring any changes to ExtensionClass.c.
Diffstat (limited to 'Include/classobject.h')
-rw-r--r--Include/classobject.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/classobject.h b/Include/classobject.h
index 3bd535e1c3..3b25c7447d 100644
--- a/Include/classobject.h
+++ b/Include/classobject.h
@@ -47,6 +47,10 @@ extern DL_IMPORT(PyObject *) PyInstance_New(PyObject *, PyObject *,
extern DL_IMPORT(PyObject *) PyInstance_NewRaw(PyObject *, PyObject *);
extern DL_IMPORT(PyObject *) PyMethod_New(PyObject *, PyObject *, PyObject *);
+extern DL_IMPORT(PyObject *) PyMethod_Function(PyObject *);
+extern DL_IMPORT(PyObject *) PyMethod_Self(PyObject *);
+extern DL_IMPORT(PyObject *) PyMethod_Class(PyObject *);
+
/* Macros for direct access to these values. Type checks are *not*
done, so use with care. */
#define PyMethod_GET_FUNCTION(meth) \