summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-30 17:51:18 (GMT)
committerGeorg Brandl <georg@python.org>2007-10-30 17:51:18 (GMT)
commitf4ef23f8c10a34c9b80477d084b24feb6f7cee06 (patch)
treea226f3d1d4a9714bb81f15ca628d24c6db533812
parent20172f9b5dbfffe4ba005b298325b8a461bea013 (diff)
downloadcpython-f4ef23f8c10a34c9b80477d084b24feb6f7cee06.zip
cpython-f4ef23f8c10a34c9b80477d084b24feb6f7cee06.tar.gz
cpython-f4ef23f8c10a34c9b80477d084b24feb6f7cee06.tar.bz2
Use correct markup.
-rw-r--r--Doc/using/cmdline.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index efe2af6..8a4a9b7 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -217,10 +217,10 @@ Miscellaneous options
Force stdin, stdout and stderr to be totally unbuffered. On systems where it
matters, also put stdin, stdout and stderr in binary mode.
- Note that there is internal buffering in :func:`file.readlines` and
+ Note that there is internal buffering in :meth:`file.readlines` and
:ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced
by this option. To work around this, you will want to use
- :func:`file.readline` inside a ``while 1:`` loop.
+ :meth:`file.readline` inside a ``while 1:`` loop.
See also :envvar:`PYTHONUNBUFFERED`.