commit | cb4ae815b5db6c9339c7c77e1d45e850ed76e497 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Jul 13 21:07:49 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Jul 13 21:07:49 2011 +0200 |
tree | 6d5c578a5513961a83dd2261632acb305fd683eb | |
parent | fd060474e3cc51528d321bbd52323036f9fda80d [diff] [blame] |
Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIOWrapper to a huge value, not TypeError.
diff --git a/Misc/NEWS b/Misc/NEWS index 3df8e95..25c1f3c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Library ------- +- Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a + TextIOWrapper to a huge value, not TypeError. + - Issue #12493: subprocess: Popen.communicate() now also handles EINTR errors if the process has only one pipe.