Eryk Sun <eryk...@gmail.com> added the comment:

The access violation (exception code 0xC0000005) occurs in 
algos.cp36-win_amd64.pyd, which is a Pandas extension module, so I'm closing 
this issue as third party. You can open an issue with the Pandas project at 
their GitHub repo:

https://github.com/pandas-dev/pandas/issues

It will help whoever has to analyze this problem if you include the crash dump 
file. The default location for dump files is "%LocalAppData%\CrashDumps". In 
Windows 7 and 10, it should be enabled by default and configured to keep at 
least the last 10 dump files. 

Regarding error reporting in Windows 10, the default policy is to not show a 
user interface. If the Windows Error Reporting service is called, it still 
executes as before (e.g. saving crash dumps and sending anonymized data to 
Microsoft), but users won't see a dialog, which for most people is a useless 
annoyance. If desired, we can show the error-reporting dialog by setting a 
DWORD value of 0 named "DontShowUI" in either of the following registry keys:

HKLM\Software\Microsoft\Windows\Windows Error Reporting
HKLM\Software\Policies\Microsoft\Windows\Windows Error Reporting

That said, error reporting itself may be disabled, which can be configured by 
setting the flag SEM_NOGPFAULTERRORBOX in the error mode of the process, 
thread, or job. (GPFAULT, or "General Protection Fault", is used loosely here 
to mean an unhandled exception.) It can also be repressed if the process calls 
SetUnhandledExceptionFilter to set a custom unhandled exception filter that 
returns either EXCEPTION_EXECUTE_HANDLER or EXCEPTION_CONTINUE_EXECUTION 
instead of EXCEPTION_CONTINUE_SEARCH. So it may be normal for a particular 
program to not show the error-reporting dialog.

----------
nosy: +eryksun
resolution:  -> third party
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35875>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to