diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-04 19:55:11 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-04 19:55:11 (GMT) |
commit | fa833950bf8c99ead3e4c793982716e684000b14 (patch) | |
tree | 57aa804f9814b8f15173cc84ef4015898c53ab2f /Doc/using | |
parent | 593d0f46703dd6bf3619ea7113d230a77d20778c (diff) | |
download | cpython-fa833950bf8c99ead3e4c793982716e684000b14.zip cpython-fa833950bf8c99ead3e4c793982716e684000b14.tar.gz cpython-fa833950bf8c99ead3e4c793982716e684000b14.tar.bz2 |
Merged revisions 77300 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r77300 | antoine.pitrou | 2010-01-04 19:50:53 +0100 (lun., 04 janv. 2010) | 4 lines
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.rst | 5 |
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`. |