]> granicus.if.org Git - python/commit
bpo-35388: Fix _PyRuntime_Finalize() (GH-12443)
authorVictor Stinner <vstinner@redhat.com>
Tue, 19 Mar 2019 23:03:01 +0000 (00:03 +0100)
committerGitHub <noreply@github.com>
Tue, 19 Mar 2019 23:03:01 +0000 (00:03 +0100)
commitfd23cfa464ab93273370475900819c1ea37c852f
treed0ea39fe76e18a937db90974781ab99b1e2c9db7
parentfe13883f01da855967403acab77e0f16707a56cb
bpo-35388: Fix _PyRuntime_Finalize() (GH-12443)

Calling _PyRuntime_Initialize() after _PyRuntime_Finalize() now re-initializes
_PyRuntime structure. Previously, _PyRuntime_Initialize() did
nothing in that case.
Python/pylifecycle.c