This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients AxelArnoldBangert, eryksun, remi.lapeyre, vstinner, xtreak
Date 2019-02-08.20:02:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549656155.31.0.810908116084.issue35875@roundup.psfhosted.org>
In-reply-to
Content
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.
History
Date User Action Args
2019-02-08 20:02:36eryksunsetrecipients: + eryksun, vstinner, remi.lapeyre, xtreak, AxelArnoldBangert
2019-02-08 20:02:35eryksunsetmessageid: <1549656155.31.0.810908116084.issue35875@roundup.psfhosted.org>
2019-02-08 20:02:35eryksunlinkissue35875 messages
2019-02-08 20:02:34eryksuncreate