diff options
| author | Raymond Hettinger <python@rcn.com> | 2009-02-25 01:08:27 (GMT) |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2009-02-25 01:08:27 (GMT) |
| commit | 65c8655e33de02ba1e6a64e7df38d5e9f4ef595f (patch) | |
| tree | 8c949fb2032b619144a7028a3d101e0ecd80872f | |
| parent | e95f90c4207ca889226f9e1bf0105727d77e2472 (diff) | |
| download | cpython-65c8655e33de02ba1e6a64e7df38d5e9f4ef595f.zip cpython-65c8655e33de02ba1e6a64e7df38d5e9f4ef595f.tar.gz cpython-65c8655e33de02ba1e6a64e7df38d5e9f4ef595f.tar.bz2 | |
Remove reference to zero argument form of super() in 2.x docs.
| -rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 20b8644..e0bc8d7 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1240,8 +1240,7 @@ available. They are listed here in alphabetical order. Also note that :func:`super` is not limited to use inside methods. The two argument form specifies the arguments exactly and makes the appropriate - references. The zero argument form automatically searches the stack frame - for the class (``__class__``) and the first argument. + references. .. versionadded:: 2.2 |
