diff options
author | Georg Brandl <georg@python.org> | 2007-11-27 12:43:08 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-27 12:43:08 (GMT) |
commit | 2e0b7557b19293223cfd4f5f21ae5d80ccc55bbd (patch) | |
tree | fa2e1af6bc316f3cc04abdebff56954c984c7b33 /Doc/c-api/concrete.rst | |
parent | ff737954f3ee3005236133fc51b55a508b11aa06 (diff) | |
download | cpython-2e0b7557b19293223cfd4f5f21ae5d80ccc55bbd.zip cpython-2e0b7557b19293223cfd4f5f21ae5d80ccc55bbd.tar.gz cpython-2e0b7557b19293223cfd4f5f21ae5d80ccc55bbd.tar.bz2 |
Futher update docs after unbound method removal.
Diffstat (limited to 'Doc/c-api/concrete.rst')
-rw-r--r-- | Doc/c-api/concrete.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/c-api/concrete.rst b/Doc/c-api/concrete.rst index d2bedc2..50ab005 100644 --- a/Doc/c-api/concrete.rst +++ b/Doc/c-api/concrete.rst @@ -2600,8 +2600,9 @@ There are some useful functions that are useful for working with method objects. function that will be called when the method is called. If this method should be bound to an instance, *self* should be the instance and *class* should be the class of *self*, otherwise *self* should be *NULL* and *class* should be the - class which provides the unbound method.. + class which provides the unbound method. + .. XXX no unbound methods anymore... .. cfunction:: PyObject* PyMethod_Class(PyObject *meth) |