Author: Matti Picus <[email protected]> Branch: py3.5 Changeset: r93726:ea2362e153ff Date: 2018-01-31 00:28 +0200 http://bitbucket.org/pypy/pypy/changeset/ea2362e153ff/
Log: add missing constant, more are lacking diff --git a/lib_pypy/_winapi.py b/lib_pypy/_winapi.py --- a/lib_pypy/_winapi.py +++ b/lib_pypy/_winapi.py @@ -164,6 +164,7 @@ SW_HIDE = 0 INFINITE = 0xffffffff WAIT_OBJECT_0 = 0 +WAIT_ABANDONED_0 = 0x80 WAIT_TIMEOUT = 0x102 CREATE_NEW_CONSOLE = 0x010 CREATE_NEW_PROCESS_GROUP = 0x200 _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
