diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-09 22:48:41 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-09 22:48:41 (GMT) |
commit | 17ca323e7c0d6cc0495f4d1dbef628566a1f8f09 (patch) | |
tree | 67be7162ea1049891cf20a3ba2882fa8da2d9f16 /Misc/NEWS | |
parent | db932786afdd569bbf2d6b84cfd5cdcb16cb4f27 (diff) | |
parent | ee18b6f2fda4afcdd1a22adb5b0637019510907b (diff) | |
download | cpython-17ca323e7c0d6cc0495f4d1dbef628566a1f8f09.zip cpython-17ca323e7c0d6cc0495f4d1dbef628566a1f8f09.tar.gz cpython-17ca323e7c0d6cc0495f4d1dbef628566a1f8f09.tar.bz2 |
(Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional
OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2
protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid.
Optimize also ssl.get_protocol_name(): speed does matter!
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -618,6 +618,8 @@ Core and Builtins Library ------- +- Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional. + - Issue #10916: mmap should not segfault when a file is mapped using 0 as length and a non-zero offset, and an attempt to read past the end of file is made (IndexError is raised instead). Patch by Ross Lagerwall. |