[issue36319] Erro 0xC0000374 on windows 10

2021-03-26 Thread Eryk Sun
Change by Eryk Sun : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> [Windows] time: crash on formatting time with de_DE locale ___ Python tracker

[issue36319] Erro 0xC0000374 on windows 10

2019-05-15 Thread Bernd Meiners
Bernd Meiners added the comment: Microsoft Windows [Version 10.0.17763.437] (c) 2018 Microsoft Corporation. Alle Rechte vorbehalten. C:\Users\bmx>python Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or

[issue36319] Erro 0xC0000374 on windows 10

2019-03-17 Thread Eryk Sun
Eryk Sun added the comment: Windows Error Reporting should create a crash dump file. The default location for dump files is "%LocalAppData%\CrashDumps". The file should be named either "python.exe..dmp" (release build) or "python_d.exe..dmp" (debug build). You can analyze the crash dump in

[issue36319] Erro 0xC0000374 on windows 10

2019-03-16 Thread Андрей Казанцев
New submission from Андрей Казанцев : On windows 10 python falls after evaluate this code ``` import time import locale locale.setlocale(locale.LC_ALL, 'Russian_Russia.utf8') time.localtime(1552753806.2363703) ``` What tools would you recommend for getting more information? --