Fix remaining references to "../foo" HTML pages.

This commit is contained in:
Georg Brandl 2007-08-03 07:46:12 +00:00
parent 98f098e4be
commit 27fdfc9838
12 changed files with 36 additions and 44 deletions

View File

@ -1599,7 +1599,7 @@ other objects, or which only store references to atomic types (such as numbers
or strings), do not need to provide any explicit support for garbage collection.
.. An example showing the use of these interfaces can be found in "Supporting the
.. Cycle Collector (XXX reference: ../ext/example-cycle-support.html)".
.. Cycle Collector (XXX not found: ../ext/example-cycle-support.html)".
To create a container type, the :attr:`tp_flags` field of the type object must
include the :const:`Py_TPFLAGS_HAVE_GC` and provide an implementation of the

View File

@ -118,7 +118,7 @@ split across multiple lines for readability.
.. seealso::
`Installing Python Modules <../inst/config-syntax.html>`_
:ref:`inst-config-syntax` in "Installing Python Modules"
More information on the configuration files is available in the manual for
system administrators.

View File

@ -42,7 +42,7 @@ A simple demo of embedding Python can be found in the directory
.. seealso::
`Python/C API Reference Manual <../api/api.html>`_
:ref:`c-api-index`
The details of Python's C interface are given in this manual. A great deal of
necessary information can be found here.

View File

@ -370,17 +370,18 @@ The built-in function :func:`len` returns the length of a string::
.. seealso::
`Sequence Types <../lib/typesseq.html>`_
Strings, and the Unicode strings described in the next section, are examples of
*sequence types*, and support the common operations supported by such types.
:ref:`typesseq`
Strings, and the Unicode strings described in the next section, are
examples of *sequence types*, and support the common operations supported
by such types.
`String Methods <../lib/string-methods.html>`_
Both strings and Unicode strings support a large number of methods for basic
transformations and searching.
:ref:`string-methods`
Both strings and Unicode strings support a large number of methods for
basic transformations and searching.
`String Formatting Operations <../lib/typesseq-strings.html>`_
The formatting operations invoked when strings and Unicode strings are the left
operand of the ``%`` operator are described in more detail here.
:ref:`typesseq-strings`
The formatting operations invoked when strings and Unicode strings are the
left operand of the ``%`` operator are described in more detail here.
.. _tut-unicodestrings:

View File

@ -528,8 +528,7 @@ classes.
With all of these features the :mod:`logging` package should provide enough
flexibility for even the most complicated applications. This is only an
incomplete overview of its features, so please see the package's reference
documentation (XXX reference: ../lib/module-logging.html) for all of the
details. Reading :pep:`282` will also be helpful.
documentation for all of the details. Reading :pep:`282` will also be helpful.
.. seealso::

View File

@ -801,8 +801,7 @@ bound to a variable, and calls ``object.close`` at the end of the block. ::
':keyword:`with`' statement, which can be helpful in learning how the statement
works.
../lib/module-contextlib.html
The documentation for the :mod:`contextlib` module.
The documentation for the :mod:`contextlib` module.
.. % ======================================================================
@ -1745,8 +1744,7 @@ modules, now that :mod:`ctypes` is included with core Python.
http://starship.python.net/crew/theller/ctypes/
The ctypes web page, with a tutorial, reference, and FAQ.
../lib/module-ctypes.html
The documentation for the :mod:`ctypes` module.
The documentation for the :mod:`ctypes` module.
.. % ======================================================================
@ -1917,8 +1915,7 @@ with the same digest state.
.. seealso::
../lib/module-hashlib.html
The documentation for the :mod:`hashlib` module.
The documentation for the :mod:`hashlib` module.
.. % ======================================================================
@ -2024,8 +2021,7 @@ http://www.sqlite.org.
The SQLite web page; the documentation describes the syntax and the available
data types for the supported SQL dialect.
../lib/module-sqlite3.html
The documentation for the :mod:`sqlite3` module.
The documentation for the :mod:`sqlite3` module.
:pep:`249` - Database API Specification 2.0
PEP written by Marc-André Lemburg.

View File

@ -1599,7 +1599,7 @@ other objects, or which only store references to atomic types (such as numbers
or strings), do not need to provide any explicit support for garbage collection.
.. An example showing the use of these interfaces can be found in "Supporting the
.. Cycle Collector (XXX reference: ../ext/example-cycle-support.html)".
.. Cycle Collector (XXX not found: ../ext/example-cycle-support.html)".
To create a container type, the :attr:`tp_flags` field of the type object must
include the :const:`Py_TPFLAGS_HAVE_GC` and provide an implementation of the

View File

@ -118,7 +118,7 @@ split across multiple lines for readability.
.. seealso::
`Installing Python Modules <../inst/config-syntax.html>`_
:ref:`inst-config-syntax` in "Installing Python Modules"
More information on the configuration files is available in the manual for
system administrators.

View File

@ -42,7 +42,7 @@ A simple demo of embedding Python can be found in the directory
.. seealso::
`Python/C API Reference Manual <../api/api.html>`_
:ref:`c-api-index`
The details of Python's C interface are given in this manual. A great deal of
necessary information can be found here.

View File

@ -370,17 +370,18 @@ The built-in function :func:`len` returns the length of a string::
.. seealso::
`Sequence Types <../lib/typesseq.html>`_
Strings, and the Unicode strings described in the next section, are examples of
*sequence types*, and support the common operations supported by such types.
:ref:`typesseq`
Strings, and the Unicode strings described in the next section, are
examples of *sequence types*, and support the common operations supported
by such types.
`String Methods <../lib/string-methods.html>`_
Both strings and Unicode strings support a large number of methods for basic
transformations and searching.
:ref:`string-methods`
Both strings and Unicode strings support a large number of methods for
basic transformations and searching.
`String Formatting Operations <../lib/typesseq-strings.html>`_
The formatting operations invoked when strings and Unicode strings are the left
operand of the ``%`` operator are described in more detail here.
:ref:`typesseq-strings`
The formatting operations invoked when strings and Unicode strings are the
left operand of the ``%`` operator are described in more detail here.
.. _tut-unicodestrings:

View File

@ -528,8 +528,7 @@ classes.
With all of these features the :mod:`logging` package should provide enough
flexibility for even the most complicated applications. This is only an
incomplete overview of its features, so please see the package's reference
documentation (XXX reference: ../lib/module-logging.html) for all of the
details. Reading :pep:`282` will also be helpful.
documentation for all of the details. Reading :pep:`282` will also be helpful.
.. seealso::

View File

@ -790,8 +790,7 @@ bound to a variable, and calls ``object.close`` at the end of the block. ::
':keyword:`with`' statement, which can be helpful in learning how the statement
works.
../lib/module-contextlib.html
The documentation for the :mod:`contextlib` module.
The documentation for the :mod:`contextlib` module.
.. % ======================================================================
@ -1734,8 +1733,7 @@ modules, now that :mod:`ctypes` is included with core Python.
http://starship.python.net/crew/theller/ctypes/
The ctypes web page, with a tutorial, reference, and FAQ.
../lib/module-ctypes.html
The documentation for the :mod:`ctypes` module.
The documentation for the :mod:`ctypes` module.
.. % ======================================================================
@ -1906,8 +1904,7 @@ with the same digest state.
.. seealso::
../lib/module-hashlib.html
The documentation for the :mod:`hashlib` module.
The documentation for the :mod:`hashlib` module.
.. % ======================================================================
@ -2013,8 +2010,7 @@ http://www.sqlite.org.
The SQLite web page; the documentation describes the syntax and the available
data types for the supported SQL dialect.
../lib/module-sqlite3.html
The documentation for the :mod:`sqlite3` module.
The documentation for the :mod:`sqlite3` module.
:pep:`249` - Database API Specification 2.0
PEP written by Marc-André Lemburg.