Staging
v0.5.1
https://github.com/python/cpython
Revision 7f7485c0605fe979e39c58b688f2bb6a4f43e65e authored by Miss Islington (bot) on 17 March 2019, 23:09:14 UTC, committed by GitHub on 17 March 2019, 23:09:14 UTC

* Fix handshake timeout leak in asyncio/sslproto

Refs MagicStack/uvloopGH-222

* Break circular ref _SSLPipe <-> SSLProtocol

* bpo-34745: Fix asyncio ssl memory leak

* Break circular ref SSLProtocol <-> UserProtocol

* Add NEWS entry
(cherry picked from commit f683f464259715d620777d7ed568e701337a703a)

Co-authored-by: Fantix King <fantix.king@gmail.com>
1 parent b34f1aa
Raw File
Tip revision: 7f7485c0605fe979e39c58b688f2bb6a4f43e65e authored by Miss Islington (bot) on 17 March 2019, 23:09:14 UTC
bpo-34745: Fix asyncio sslproto memory issues (GH-12386)
Tip revision: 7f7485c
pyfpe.c
/* These variables used to be used when Python was built with --with-fpectl,
 * but support for that was dropped in 3.7. We continue to define them,
 * though, because they may be referenced by extensions using the stable ABI.
 */

#include "setjmp.h"

jmp_buf PyFPE_jbuf;
int PyFPE_counter;

double
PyFPE_dummy(void *dummy)
{
    return 1.0;
}
back to top