diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-13 19:08:56 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-13 19:08:56 (GMT) |
commit | 90ce72dd0684e55234b969f405826af7d810e5b0 (patch) | |
tree | 1fcbdb4e24b67f9976e4197fbcf635443b595c6a /Misc/NEWS | |
parent | 8442124693bf090b257b84b190aaa9a7024feffa (diff) | |
parent | cb4ae815b5db6c9339c7c77e1d45e850ed76e497 (diff) | |
download | cpython-90ce72dd0684e55234b969f405826af7d810e5b0.zip cpython-90ce72dd0684e55234b969f405826af7d810e5b0.tar.gz cpython-90ce72dd0684e55234b969f405826af7d810e5b0.tar.bz2 |
Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIOWrapper to a huge value, not TypeError.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -225,6 +225,9 @@ Core and Builtins Library ------- +- Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a + TextIOWrapper to a huge value, not TypeError. + - Issue #12504: Close file handles in a timely manner in packaging.database. This fixes a bug with the remove (uninstall) feature on Windows. |