[issue23861] Make stdprinter use DebugOutputString when no stdout/stderr available

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue23861] Make stdprinter use DebugOutputString when no stdout/stderr available

2015-04-04 Thread Steve Dower
Steve Dower added the comment: There's just a couple of places to add calls to OutputDebugString, plus we need to make creation always succeed on Windows. Not a huge change - it'll still write to the standard stream if it's there. -- ___ Python trac

[issue23861] Make stdprinter use DebugOutputString when no stdout/stderr available

2015-04-04 Thread Tim Golden
Tim Golden added the comment: Are we talking about re-implementing StdPrinter in terms of OutputDebugString? (Either always, on Windows, or as a fallback?) -- ___ Python tracker ___

[issue23861] Make stdprinter use DebugOutputString when no stdout/stderr available

2015-04-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue23861] Make stdprinter use DebugOutputString when no stdout/stderr available

2015-04-03 Thread Steve Dower
New submission from Steve Dower: Currently we initialize stdprinter while initializing and terminate if we can't access std streams. We should always write to DebugOutputString on Windows (only does anything if a debugger is attached) and avoid terminating in this case. -- components: