summaryrefslogtreecommitdiffstats
path: root/Doc/using
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-04 18:50:53 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-04 18:50:53 (GMT)
commit4adb288f4eaea3a21295c11a3ca49313d7da8cc7 (patch)
tree84821f5b594c91134847979997663ce070cbfc57 /Doc/using
parent6e40e27ecfe417ab4633c46b8ac99d30ebad6b36 (diff)
downloadcpython-4adb288f4eaea3a21295c11a3ca49313d7da8cc7.zip
cpython-4adb288f4eaea3a21295c11a3ca49313d7da8cc7.tar.gz
cpython-4adb288f4eaea3a21295c11a3ca49313d7da8cc7.tar.bz2
Issue #7631: Fix undefined references to the "built-in file object", which
has ceased to be.
Diffstat (limited to 'Doc/using')
-rw-r--r--Doc/using/cmdline.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index 5440c20..7c9b511 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -235,11 +235,6 @@ 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 :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
- :meth:`file.readline` inside a ``while 1:`` loop.
-
See also :envvar:`PYTHONUNBUFFERED`.