#6204: use a real reference instead of "see later".

This commit is contained in:
Georg Brandl 2009-06-06 17:51:31 +00:00
parent 4c324b9801
commit e3b9b5e4ed
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ This example, as usual, demonstrates some new Python features:
and ``methodname`` is the name of a method that is defined by the object's type.
Different types define different methods. Methods of different types may have
the same name without causing ambiguity. (It is possible to define your own
object types and methods, using *classes*, as discussed later in this tutorial.)
object types and methods, using *classes*, see :ref:`tut-classes`)
The method :meth:`append` shown in the example is defined for list objects; it
adds a new element at the end of the list. In this example it is equivalent to
``result = result + [b]``, but more efficient.