mirror of https://github.com/python/cpython.git
#10296: Merge to 3.3
This commit is contained in:
commit
a251b37179
|
@ -397,6 +397,11 @@ static DWORD HandleException(EXCEPTION_POINTERS *ptrs,
|
||||||
{
|
{
|
||||||
*pdw = ptrs->ExceptionRecord->ExceptionCode;
|
*pdw = ptrs->ExceptionRecord->ExceptionCode;
|
||||||
*record = *ptrs->ExceptionRecord;
|
*record = *ptrs->ExceptionRecord;
|
||||||
|
/* We don't want to catch breakpoint exceptions, they are used to attach
|
||||||
|
* a debugger to the process.
|
||||||
|
*/
|
||||||
|
if (*pdw == EXCEPTION_BREAKPOINT)
|
||||||
|
return EXCEPTION_CONTINUE_SEARCH;
|
||||||
return EXCEPTION_EXECUTE_HANDLER;
|
return EXCEPTION_EXECUTE_HANDLER;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue