From: Antoine Pitrou Date: Wed, 23 Nov 2011 00:42:52 +0000 (+0100) Subject: Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with... X-Git-Tag: v3.3.0a1~742^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc530324086fceab771e9ec5596d572fe452215e;p=python Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. Patch by Robert Xiao. --- bc530324086fceab771e9ec5596d572fe452215e diff --cc Misc/NEWS index 3d46a10061,f65fafe2ea..f78a31eec7 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -390,17 -83,11 +390,20 @@@ Core and Builtin Library ------- + - Issue #13458: Fix a memory leak in the ssl module when decoding a + certificate with a subjectAltName. Patch by Robert Xiao. + - Issue #13415: os.unsetenv() doesn't ignore errors anymore. +- Issue #13245: sched.scheduler class constructor's timefunc and + delayfunct parameters are now optional. + scheduler.enter and scheduler.enterabs methods gained a new kwargs parameter. + Patch contributed by Chris Clark. + +- Issue #12328: Under Windows, refactor handling of Ctrl-C events and + make _multiprocessing.win32.WaitForMultipleObjects interruptible when + the wait_flag parameter is false. Patch by sbt. + - Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but