mirror of https://github.com/python/cpython.git
Issue #10296 : Don't handle BreakPoint exceptions using
Structured Exception Handling on windows.
This commit is contained in:
parent
8927e8f421
commit
11f989320e
|
@ -401,6 +401,11 @@ static DWORD HandleException(EXCEPTION_POINTERS *ptrs,
|
|||
{
|
||||
*pdw = ptrs->ExceptionRecord->ExceptionCode;
|
||||
*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;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue