diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-29 00:45:26 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-29 00:45:26 (GMT) |
commit | 66994e11544ac8b173ccfedbd05c47082f1dc842 (patch) | |
tree | 8725d34076098548c9f9f0a89a2a063cbaa73168 /Misc | |
parent | 24f3629083fc07a31b2e604a94a748f2020585ed (diff) | |
download | cpython-66994e11544ac8b173ccfedbd05c47082f1dc842.zip cpython-66994e11544ac8b173ccfedbd05c47082f1dc842.tar.gz cpython-66994e11544ac8b173ccfedbd05c47082f1dc842.tar.bz2 |
Issue #1174606: Calling read() without arguments of an unbounded file
(typically /dev/zero under Unix) could crash the interpreter.
No test as there always seems to be a risk of putting the machine on its knees.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -43,6 +43,9 @@ Core and Builtins Library ------- +- Issue #1174606: Calling read() without arguments of an unbounded file + (typically /dev/zero under Unix) could crash the interpreter. + - The max_buffer_size arguments of io.BufferedWriter, io.BufferedRWPair, and io.BufferedRandom have been deprecated for removal in Python 3.2. |