diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-01 14:37:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-01 14:37:17 (GMT) |
commit | 2e57b4e488ddeabe61fe3ca579df908a921bac06 (patch) | |
tree | 143bb09c190a6621d24daac991687ff7490ba3be /Misc | |
parent | 1690ed397aadf4cc2057c43d960dbe2ba9e556d0 (diff) | |
download | cpython-2e57b4e488ddeabe61fe3ca579df908a921bac06.zip cpython-2e57b4e488ddeabe61fe3ca579df908a921bac06.tar.gz cpython-2e57b4e488ddeabe61fe3ca579df908a921bac06.tar.bz2 |
Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters.
ssl.RAND_add() now supports strings longer than 2 GB.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -27,6 +27,8 @@ Core and Builtins Library ------- +- Issue #21781: ssl.RAND_add() now supports strings longer than 2 GB. + - Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper object is destroyed. The destructor now closes the file if needed. The close() method can now be called twice: the second call does nothing. |