diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-24 22:43:47 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-24 22:43:47 (GMT) |
commit | 86073dc3c2aaa5c9292bd63ccc1db4da10f712c9 (patch) | |
tree | 0d093914ebcc0e774588388c0dad4196135cd16a /Misc | |
parent | 14b9b110982fd7f00392b898230c4015bd2bdaaa (diff) | |
parent | 6efa965a27696ae0acf1c914ca71b545a53be01c (diff) | |
download | cpython-86073dc3c2aaa5c9292bd63ccc1db4da10f712c9.zip cpython-86073dc3c2aaa5c9292bd63ccc1db4da10f712c9.tar.gz cpython-86073dc3c2aaa5c9292bd63ccc1db4da10f712c9.tar.bz2 |
(Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if
the input string in longer than 2 gigabytes, and
ssl.SSLContext.load_cert_chain() raises a ValueError if the password is longer
than 2 gigabytes. The ssl module does not support partial write.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -129,12 +129,14 @@ Core and Builtins Library ------- + - Issue #11390: Add -o and -f command line options to the doctest CLI to specify doctest options (and convert it to using argparse). -- Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() - and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than - 2 gigabytes. +- Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input + string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain() + raises a ValueError if the password is longer than 2 gigabytes. The ssl + module does not support partial write. - Issue #11016: Add C implementation of the stat module as _stat. |