From: Victor Stinner Date: Tue, 1 Jul 2014 14:39:23 +0000 (+0200) Subject: (Merge 3.4) Issue #21781: Make the ssl module "ssize_t clean" for parsing X-Git-Tag: v3.5.0a1~1365 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f084064e8f0ca815af4c436cd2cb9f131024bb9;p=python (Merge 3.4) Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters. ssl.RAND_add() now supports strings longer than 2 GB. --- 7f084064e8f0ca815af4c436cd2cb9f131024bb9 diff --cc Misc/NEWS index 9fa3dc4d02,0efa8150d5..ad521b57ac --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -103,12 -27,8 +103,14 @@@ Core and Builtin Library ------- + - Issue #21781: ssl.RAND_add() now supports strings longer than 2 GB. + +- Issue #21679: Prevent extraneous fstat() calls during open(). Patch by + Bohuslav Kabrda. + +- Issue #21863: cProfile now displays the module name of C extension functions, + in addition to their own name. + - 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.