]> granicus.if.org Git - python/commitdiff
Fix and add more links.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 12 Oct 2012 07:59:14 +0000 (10:59 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 12 Oct 2012 07:59:14 +0000 (10:59 +0300)
Doc/howto/unicode.rst
Doc/library/functions.rst
Doc/library/string.rst
Doc/tutorial/introduction.rst

index f9eeae4c027e538b68c61d47cd08dc9359e91216..5d9e0275274a056057733fb2b4177b20209d7143 100644 (file)
@@ -414,7 +414,7 @@ References
 ----------
 
 The ``str`` type is described in the Python library reference at
-:ref:`typesseq`.
+:ref:`textseq`.
 
 The documentation for the :mod:`unicodedata` module.
 
index d6a8d0c5b840cb108e881219a83fc9835c781085..0e836f9d0755efb74138f9011375fa35d15cdd1e 100644 (file)
@@ -122,6 +122,8 @@ are always available.  They are listed here in alphabetical order.
 
    Without an argument, an array of size 0 is created.
 
+   See also :ref:`binaryseq` and :ref:`typebytearray`.
+
 
 .. _func-bytes:
 .. function:: bytes([source[, encoding[, errors]]])
@@ -135,6 +137,8 @@ are always available.  They are listed here in alphabetical order.
 
    Bytes objects can also be created with literals, see :ref:`strings`.
 
+   See also :ref:`binaryseq`, :ref:`typebytes`, and :ref:`bytes-methods`.
+
 
 .. function:: callable(object)
 
@@ -687,6 +691,8 @@ are always available.  They are listed here in alphabetical order.
    method; if the value returned is equal to *sentinel*, :exc:`StopIteration`
    will be raised, otherwise the value will be returned.
 
+   See also :ref:`typeiter`.
+
    One useful application of the second form of :func:`iter` is to read lines of
    a file until a certain line is reached.  The following example reads a file
    until the :meth:`readline` method returns an empty string::
@@ -707,7 +713,7 @@ are always available.  They are listed here in alphabetical order.
    :noindex:
 
    Rather than being a function, :class:`list` is actually a mutable
-   sequence type, as documented in :ref:`typesseq`.
+   sequence type, as documented in :ref:`typesseq-list` and :ref:`typesseq`.
 
 
 .. function:: locals()
@@ -1081,7 +1087,7 @@ are always available.  They are listed here in alphabetical order.
    :noindex:
 
    Rather than being a function, :class:`range` is actually an immutable
-   sequence type, as documented in :ref:`typesseq`.
+   sequence type, as documented in :ref:`typesseq-range` and :ref:`typesseq`.
 
 
 .. function:: repr(object)
@@ -1309,7 +1315,7 @@ are always available.  They are listed here in alphabetical order.
    :noindex:
 
    Rather than being a function, :class:`tuple` is actually an immutable
-   sequence type, as documented in :ref:`typesseq`.
+   sequence type, as documented in :ref:`typesseq-tuple` and :ref:`typesseq`.
 
 
 .. function:: type(object)
@@ -1342,6 +1348,8 @@ are always available.  They are listed here in alphabetical order.
       ...
       >>> X = type('X', (object,), dict(a=1))
 
+   See also :ref:`bltin-type-objects`.
+
 
 .. function:: vars([object])
 
index 79d4e3f47aa1290bde0145ff32c1a3a8a6f1fb52..9c6327207bcc67180c76d24eddff1d1e2b029c8c 100644 (file)
@@ -10,7 +10,7 @@
 
 .. seealso::
 
-   :ref:`typesseq`
+   :ref:`textseq`
 
    :ref:`string-methods`
 
index b6d94accfdd13692de1c770e67eefcdfe460eb6d..c07a668ccb9dedb7456135d5dabaef15029a6b52 100644 (file)
@@ -390,7 +390,7 @@ The built-in function :func:`len` returns the length of a string::
 
 .. seealso::
 
-   :ref:`typesseq`
+   :ref:`textseq`
       Strings are examples of *sequence types*, and support the common
       operations supported by such types.