summaryrefslogtreecommitdiffstats
path: root/Doc/library/io.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-02-19 00:58:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-02-19 00:58:13 (GMT)
commitcc12e1b651ad5b96beaac1bedda38121f04d61cc (patch)
tree5a961d782243ec281a8b774bfd4ce20af2a64fc6 /Doc/library/io.rst
parent3afc62e54f7081e81b365fe67f20bec6bf96cae8 (diff)
downloadcpython-cc12e1b651ad5b96beaac1bedda38121f04d61cc.zip
cpython-cc12e1b651ad5b96beaac1bedda38121f04d61cc.tar.gz
cpython-cc12e1b651ad5b96beaac1bedda38121f04d61cc.tar.bz2
add a link to sys.std* in io docs
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r--Doc/library/io.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 90573bd..2684b27 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -41,6 +41,11 @@ stream for text.
Argument names are not part of the specification, and only the arguments of
:func:`.open` are intended to be used as keyword arguments.
+.. seealso::
+ :mod:`sys`
+ Contains the standard IO streams: :data:`sys.stdin`, :data:`sys.stdout`,
+ and :data:`sys.stderr`.
+
Module Interface
----------------