[issue34187] Issues with lazy fd support in _WindowsConsoleIO fileno() and close()

2021-03-15 Thread Eryk Sun
Eryk Sun added the comment: The issues brought up here are addressed in a more direct, comprehensive, and productive way in PR 1927 for bpo-30555. -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> _io._WindowsConsoleIO breaks in the

[issue34187] Issues with lazy fd support in _WindowsConsoleIO fileno() and close()

2018-10-25 Thread Tal Einat
Change by Tal Einat : -- nosy: +taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34187] Issues with lazy fd support in _WindowsConsoleIO fileno() and close()

2018-10-16 Thread Gus Goulart
Change by Gus Goulart : -- keywords: +patch pull_requests: +9275 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue34187] Issues with lazy fd support in _WindowsConsoleIO fileno() and close()

2018-10-09 Thread Gus Goulart
Gus Goulart added the comment: Hi everyone, I would like to let you know that I'm starting working on this one. Thanks! -- nosy: +Gus ___ Python tracker ___

[issue34187] Issues with lazy fd support in _WindowsConsoleIO fileno() and close()

2018-07-22 Thread Eryk Sun
New submission from Eryk Sun : The _WindowsConsoleIO implementation of fileno should raise a ValueError if the internal handle value is INVALID_HANDLE_VALUE. Currently it raises io.UnsupportedOperation, and only if closefd=True. >>> f = open('conin$', 'r') >>> f.close() >>>