summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorMark Summerfield <list@qtrac.plus.com>2007-09-13 14:54:30 (GMT)
committerMark Summerfield <list@qtrac.plus.com>2007-09-13 14:54:30 (GMT)
commitddca9f0823e44dd9c35d38de65417c09521ab5aa (patch)
treea27c69fa99dfc4f3ecc9a3c64cd743c96e5eb74a /Doc/library/functions.rst
parent0dda1e9e948e223a93c8852d8c2a3cc790630f2e (diff)
downloadcpython-ddca9f0823e44dd9c35d38de65417c09521ab5aa.zip
cpython-ddca9f0823e44dd9c35d38de65417c09521ab5aa.tar.gz
cpython-ddca9f0823e44dd9c35d38de65417c09521ab5aa.tar.bz2
Replaced variable o with obj in operator.rst because o is easy to
confuse. Added a note about Python 3's collections.Mapping etc., above section that describes isMappingType() etc. Added xrefs between os, os.path, fileinput, and open().
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 2f4685d..39ada43 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -765,7 +765,8 @@ 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.
+ See also the :mod:`fileinput` module, the :mod:`os` module, and the
+ :mod:`os.path` module.
.. versionchanged:: 2.5
Restriction on first letter of mode string introduced.