[issue28161] Opening CON for write access fails

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +936 ___ Python tracker ___ ___

[issue28161] Opening CON for write access fails

2016-09-17 Thread Steve Dower
Changes by Steve Dower : -- resolution: -> fixed stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue28161] Opening CON for write access fails

2016-09-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d0bab9fda568 by Steve Dower in branch '3.6': Issue #28161: Opening CON for write access fails https://hg.python.org/cpython/rev/d0bab9fda568 New changeset 187a114b9ef4 by Steve Dower in branch 'default': Issue #28161: Opening CON for write access

[issue28161] Opening CON for write access fails

2016-09-14 Thread Eryk Sun
New submission from Eryk Sun: When opening the CON device the underlying CreateFile call needs to use either GENERIC_READ or GENERIC_WRITE access, but not both. Currently opening for writing fails as follows: >>> open('CON', 'wb', buffering=0) Traceback (most recent call last):