diff options
author | Georg Brandl <georg@python.org> | 2006-03-31 16:12:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-03-31 16:12:34 (GMT) |
commit | 76a2caebed1849d03400c381535418031d11e98e (patch) | |
tree | 58377c358540c00bc44ef80f3449f6112ee61022 /Doc | |
parent | 51dbc4c879160c1ee4cf159595368676ced09500 (diff) | |
download | cpython-76a2caebed1849d03400c381535418031d11e98e.zip cpython-76a2caebed1849d03400c381535418031d11e98e.tar.gz cpython-76a2caebed1849d03400c381535418031d11e98e.tar.bz2 |
typos
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref3.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 2ab18a0..2dd70e0 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -1035,7 +1035,7 @@ by the built-in \function{classmethod()} constructor. %========================================================================= \section{New-style and classic classes} -Classes and instances come in two flavours: old-style or classic, and new-style. +Classes and instances come in two flavors: old-style or classic, and new-style. Up to Python 2.1, old-style classes were the only flavour available to the user. The concept of (old-style) class is unrelated to the concept of type: if @@ -1065,7 +1065,7 @@ the way special methods are invoked. Others are "fixes" that could not be implemented before for compatibility concerns, like the method resolution order in case of multiple inheritance. -This manuel is not up-to-date with respect to new-style classes. For now, +This manual is not up-to-date with respect to new-style classes. For now, please see \url{http://www.python.org/doc/newstyle.html} for more information. The plan is to eventually drop old-style classes, leaving only the semantics of |