diff options
author | Georg Brandl <georg@python.org> | 2008-05-05 21:42:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-05 21:42:51 (GMT) |
commit | e06de8b3cc279804f7f38a8002ca171094f83f55 (patch) | |
tree | e9b58dae5efa86f0c50fd0bdb68ce6354b670ceb /Doc/reference/datamodel.rst | |
parent | 7694100e4b44a6dd965964af323e5e0c23ffc897 (diff) | |
download | cpython-e06de8b3cc279804f7f38a8002ca171094f83f55.zip cpython-e06de8b3cc279804f7f38a8002ca171094f83f55.tar.gz cpython-e06de8b3cc279804f7f38a8002ca171094f83f55.tar.bz2 |
#2762: remove 2.x remnants and patch up some new documentation.
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r-- | Doc/reference/datamodel.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index f7d5283..74b2efb 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -510,10 +510,6 @@ Callable types An instance method object combines a class, a class instance and any callable object (normally a user-defined function). - .. versionchanged:: 2.6 - For 3.0 forward-compatibility, :attr:`im_func` is also available as - :attr:`__func__`, and :attr:`im_self` as :attr:`__self__`. - .. index:: single: __func__ (method attribute) single: __self__ (method attribute) |