summaryrefslogtreecommitdiff
path: root/Doc/c-api
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-27 12:43:08 +0000
committerGeorg Brandl <georg@python.org>2007-11-27 12:43:08 +0000
commit2e0b7557b19293223cfd4f5f21ae5d80ccc55bbd (patch)
treefa2e1af6bc316f3cc04abdebff56954c984c7b33 /Doc/c-api
parentff737954f3ee3005236133fc51b55a508b11aa06 (diff)
downloadcpython-git-2e0b7557b19293223cfd4f5f21ae5d80ccc55bbd.tar.gz
Futher update docs after unbound method removal.
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/concrete.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/c-api/concrete.rst b/Doc/c-api/concrete.rst
index d2bedc2e30..50ab005ddf 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)