summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorMark Summerfield <list@qtrac.plus.com>2007-11-02 08:24:59 (GMT)
committerMark Summerfield <list@qtrac.plus.com>2007-11-02 08:24:59 (GMT)
commitac3d429edc5d1488c00c443d860f3e00f6bdd49e (patch)
tree124975e2f76e9c713c4482e0048a320792104692 /Doc/library/functions.rst
parentf7601ee2c074092d5eee6bb077b976678c3a0433 (diff)
downloadcpython-ac3d429edc5d1488c00c443d860f3e00f6bdd49e.zip
cpython-ac3d429edc5d1488c00c443d860f3e00f6bdd49e.tar.gz
cpython-ac3d429edc5d1488c00c443d860f3e00f6bdd49e.tar.bz2
Added more file-handling related cross-references.
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 6c03472..1261547 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -766,8 +766,9 @@ available. They are listed here in alphabetical order.
Python enforces that the mode, after stripping ``'U'``, begins with ``'r'``,
``'w'`` or ``'a'``.
- See also the :mod:`fileinput` module, the :mod:`os` module, and the
- :mod:`os.path` module.
+ Python provides many file handling modules including
+ :mod:`fileinput`, :mod:`os`, :mod:`os.path`, :mod:`tempfile`, and
+ :mod:`shutil`.
.. versionchanged:: 2.5
Restriction on first letter of mode string introduced.