diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2012-05-05 20:41:23 +0100 |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2012-05-05 20:41:23 +0100 |
commit | 7ef909cdd7af66d63eedf68519eed146fdf5de39 (patch) | |
tree | d849f835741eae51acd1140c2df9c4e0caea0e43 /Modules/_multiprocessing | |
parent | Fix test connecting to sha256.tbs-internet.com. (diff) | |
download | cpython-7ef909cdd7af66d63eedf68519eed146fdf5de39.tar.gz cpython-7ef909cdd7af66d63eedf68519eed146fdf5de39.tar.bz2 cpython-7ef909cdd7af66d63eedf68519eed146fdf5de39.zip |
Fix for issue 14725 for 3.2 branch
Diffstat (limited to 'Modules/_multiprocessing')
-rw-r--r-- | Modules/_multiprocessing/win32_functions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_multiprocessing/win32_functions.c b/Modules/_multiprocessing/win32_functions.c index 452d6086485..0e348c4134f 100644 --- a/Modules/_multiprocessing/win32_functions.c +++ b/Modules/_multiprocessing/win32_functions.c @@ -244,6 +244,7 @@ create_win32_namespace(void) Py_INCREF(&Win32Type); WIN32_CONSTANT(F_DWORD, ERROR_ALREADY_EXISTS); + WIN32_CONSTANT(F_DWORD, ERROR_NO_DATA); WIN32_CONSTANT(F_DWORD, ERROR_PIPE_BUSY); WIN32_CONSTANT(F_DWORD, ERROR_PIPE_CONNECTED); WIN32_CONSTANT(F_DWORD, ERROR_SEM_TIMEOUT); |