diff options
author | Mark Summerfield <list@qtrac.plus.com> | 2007-11-02 08:24:59 (GMT) |
---|---|---|
committer | Mark Summerfield <list@qtrac.plus.com> | 2007-11-02 08:24:59 (GMT) |
commit | ac3d429edc5d1488c00c443d860f3e00f6bdd49e (patch) | |
tree | 124975e2f76e9c713c4482e0048a320792104692 /Doc/library/functions.rst | |
parent | f7601ee2c074092d5eee6bb077b976678c3a0433 (diff) | |
download | cpython-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.rst | 5 |
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. |