diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-09 18:53:14 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-09 18:53:14 (GMT) |
commit | 0560843b8fe8d4dd9e830f7b3ae7984154914516 (patch) | |
tree | be1fabb299e11cdc957e653592bbc7d658a9fc07 /Misc | |
parent | 1483140772c3f6c4c1674f0fbfcaaa1b350d27a1 (diff) | |
download | cpython-0560843b8fe8d4dd9e830f7b3ae7984154914516.zip cpython-0560843b8fe8d4dd9e830f7b3ae7984154914516.tar.gz cpython-0560843b8fe8d4dd9e830f7b3ae7984154914516.tar.bz2 |
Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line
flag to work properly. Furthermore, when specifying -u, the text stdout
and stderr streams have line-by-line buffering enabled (the default being
to buffer arbitrary chunks of data). Patch by Victor Stinner, test by me.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 3.1 alpha 0 Core and Builtins ----------------- +- Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line + flag to work properly. Furthermore, when specifying -u, the text stdout + and stderr streams have line-by-line buffering enabled (the default being + to buffer arbitrary chunks of data). + - The internal table, _PyLong_DigitValue, is now an array of unsigned chars instead of ints (reducing its size from 4 to 8 times thereby reducing Python's overall memory). |