[Python-checkins] cpython (3.4): Isuse #12328, #20978: Add _winapi.WAIT_ABANDONED_0 symbol, needed by
victor.stinner
python-checkins at python.org
Thu Mar 20 09:28:47 CET 2014
http://hg.python.org/cpython/rev/bdad874195d6
changeset: 89871:bdad874195d6
branch: 3.4
parent: 89869:f6f691ff27b9
user: Victor Stinner <victor.stinner at gmail.com>
date: Thu Mar 20 09:26:55 2014 +0100
summary:
Isuse #12328, #20978: Add _winapi.WAIT_ABANDONED_0 symbol, needed by
multiprocessing.connection
files:
Modules/_winapi.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Modules/_winapi.c b/Modules/_winapi.c
--- a/Modules/_winapi.c
+++ b/Modules/_winapi.c
@@ -1343,6 +1343,7 @@
WINAPI_CONSTANT(F_DWORD, STILL_ACTIVE);
WINAPI_CONSTANT(F_DWORD, SW_HIDE);
WINAPI_CONSTANT(F_DWORD, WAIT_OBJECT_0);
+ WINAPI_CONSTANT(F_DWORD, WAIT_ABANDONED_0);
WINAPI_CONSTANT(F_DWORD, WAIT_TIMEOUT);
WINAPI_CONSTANT("i", NULL);
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list