From 76d5abc8684bac4f2fc7cccfe2cd940923357351 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Tue, 5 Sep 2017 18:26:16 -0700 Subject: bpo-30860: Consolidate stateful runtime globals. (#2594) * group the (stateful) runtime globals into various topical structs * consolidate the topical structs under a single top-level _PyRuntimeState struct * add a check-c-globals.py script that helps identify runtime globals Other globals are excluded (see globals.txt and check-c-globals.py). --- Modules/_winapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/_winapi.c') diff --git a/Modules/_winapi.c b/Modules/_winapi.c index 682d0a3cdd..6556d99ea8 100644 --- a/Modules/_winapi.c +++ b/Modules/_winapi.c @@ -114,7 +114,7 @@ overlapped_dealloc(OverlappedObject *self) { /* The operation is no longer pending -- nothing to do. */ } - else if (_Py_Finalizing == NULL) + else if _Py_IS_FINALIZING() { /* The operation is still pending -- give a warning. This will probably only happen on Windows XP. */ -- cgit v1.2.1