diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-02 21:12:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-02 21:12:48 (GMT) |
commit | f6b3c84a4ab592602745d072423ff4d6b8e6a39d (patch) | |
tree | 13462a44fa32b2f545731bd0a685a0f07aa1529c /Misc/NEWS | |
parent | cf0a706c15e7e82cceebbaf15a204f36ccece4d9 (diff) | |
download | cpython-f6b3c84a4ab592602745d072423ff4d6b8e6a39d.zip cpython-f6b3c84a4ab592602745d072423ff4d6b8e6a39d.tar.gz cpython-f6b3c84a4ab592602745d072423ff4d6b8e6a39d.tar.bz2 |
Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,
it ignored I/O errors if at least the first C call read() succeed.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ Core and Builtins Library ------- +- Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, + it ignored I/O errors if at least the first C call read() succeed. + - Issue #19870: BaseCookie now parses 'secure' and 'httponly' flags. Backport of issue #16611. |