[Python-checkins] cpython (merge 3.4 -> default): (Merge 3.4) Issue #12328, #20978: Add _winapi.WAIT_ABANDONED_0 symbol, needed

victor.stinner python-checkins at python.org
Thu Mar 20 09:28:49 CET 2014


http://hg.python.org/cpython/rev/2e4692a762d5
changeset:   89872:2e4692a762d5
parent:      89870:714002a5c1b7
parent:      89871:bdad874195d6
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Mar 20 09:27:11 2014 +0100
summary:
  (Merge 3.4) Issue #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