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/library/new.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/library/new.rst')
-rw-r--r-- | Doc/library/new.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/new.rst b/Doc/library/new.rst index 6c5a4bf..832dca6 100644 --- a/Doc/library/new.rst +++ b/Doc/library/new.rst @@ -22,6 +22,8 @@ The :mod:`new` module defines the following functions: This function will return a method object, bound to *instance*. *function* must be callable. + .. XXX no unbound methods anymore + .. function:: function(code, globals[, name[, argdefs[, closure]]]) |