[issue30295] msvcrt SetErrorMode not documented

2021-03-06 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) type: -> enhancement versions: +Python 3.10, Python 3.8, Python 3.9 -Python 3.4, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker

[issue30295] msvcrt SetErrorMode not documented

2017-05-07 Thread Eryk Sun
Changes by Eryk Sun : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___

[issue30295] msvcrt SetErrorMode not documented

2017-05-07 Thread Eryk Sun
Eryk Sun added the comment: msvcrt set_error_mode, CrtReportMode, CrtReportFile and the associated CRT constants should be documented for use with debug builds. Also, msvcrt is missing the set_error_mode constants _OUT_TO_DEFAULT, _OUT_TO_STDERR, _OUT_TO_MSGBOX, and _REPORT_ERRMODE.

[issue30295] msvcrt SetErrorMode not documented

2017-05-07 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola': Also SEM_FAILCRITICALERRORS and other SEM_constants. They should as setting error mode on Windows for console applications is a pretty common use case (in fact ./Lib/test/libregrtest/setup.py uses it). -- assignee: docs@python components: