summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorKristján Valur Jónsson <kristjan@ccpgames.com>2009-07-04 15:09:25 (GMT)
committerKristján Valur Jónsson <kristjan@ccpgames.com>2009-07-04 15:09:25 (GMT)
commit8c4f4178cbd22b49c19f56baa0b305cbb64b9e94 (patch)
tree516713e2c2ac59691d26bac2a20f1fb3708c9efa /Modules
parent04cecafce10abc8906a96aa16c0a7a87d9fb8227 (diff)
downloadcpython-8c4f4178cbd22b49c19f56baa0b305cbb64b9e94.zip
cpython-8c4f4178cbd22b49c19f56baa0b305cbb64b9e94.tar.gz
cpython-8c4f4178cbd22b49c19f56baa0b305cbb64b9e94.tar.bz2
http://bugs.python.org/issue6381
merging revision 73819 from trunk
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_multiprocessing/win32_functions.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/_multiprocessing/win32_functions.c b/Modules/_multiprocessing/win32_functions.c
index ba82c23..379a495 100644
--- a/Modules/_multiprocessing/win32_functions.c
+++ b/Modules/_multiprocessing/win32_functions.c
@@ -130,12 +130,6 @@ win32_ExitProcess(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "I", &uExitCode))
return NULL;
- #if defined(Py_DEBUG)
- SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOALIGNMENTFAULTEXCEPT|SEM_NOGPFAULTERRORBOX|SEM_NOOPENFILEERRORBOX);
- _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
- #endif
-
-
ExitProcess(uExitCode);
return NULL;