diff options
author | Raymond Hettinger <python@rcn.com> | 2011-06-01 21:57:13 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-06-01 21:57:13 (GMT) |
commit | 783a30f38e67ebd828cc32ca93db8579d0efffb8 (patch) | |
tree | ccc500c87add89bf718dbefd47aaec98af9c8cda | |
parent | 2845365bf297894bdd7e6584e87faa25a4c4951d (diff) | |
download | cpython-783a30f38e67ebd828cc32ca93db8579d0efffb8.zip cpython-783a30f38e67ebd828cc32ca93db8579d0efffb8.tar.gz cpython-783a30f38e67ebd828cc32ca93db8579d0efffb8.tar.bz2 |
Link to suggestions for how to use super().
-rw-r--r-- | Doc/library/functions.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 962a53d..1c6c76a 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1335,6 +1335,10 @@ available. They are listed here in alphabetical order. argument form specifies the arguments exactly and makes the appropriate references. + For practical suggestions on how to design cooperative classes using + :func:`super`, see `guide to using super() + <http://rhettinger.wordpress.com/2011/05/26/super-considered-super/>`_. + .. versionadded:: 2.2 |