From 05351c1bd8b70d1878527762174cdaaba3572395 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Tue, 5 Sep 2017 21:43:08 -0700 Subject: Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) Windows buildbots started failing due to include-related errors. --- 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 6556d99ea8..682d0a3cdd 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_IS_FINALIZING() + else if (_Py_Finalizing == NULL) { /* The operation is still pending -- give a warning. This will probably only happen on Windows XP. */ -- cgit v1.2.1