From a75e730075cd25be1143e6183006f3b1d61bb80f Mon Sep 17 00:00:00 2001 From: Jeffrey Quesnelle Date: Thu, 16 Apr 2020 22:09:45 -0400 Subject: [PATCH] bpo-40294: Fix _asyncio when module is loaded/unloaded multiple times (GH-19542) --- Modules/_asynciomodule.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c index 96a99fe49ce..a03a63119ba 100644 --- a/Modules/_asynciomodule.c +++ b/Modules/_asynciomodule.c @@ -3271,6 +3271,8 @@ module_free(void *m) Py_CLEAR(context_kwname); module_free_freelists(); + + module_initialized = 0; } static int