[issue35021] Assertion failures in datetimemodule.c.

2019-06-17 Thread Ned Deily
Ned Deily added the comment: Can we close this or is there anything further needed for this issue? -- nosy: +ned.deily ___ Python tracker ___

[issue37267] os.dup() creates an inheritable fd when handling a character file on Windows

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: According to the discussion in PR 14051: if os.dup() fails to make the new file descriptor new inheritable for a character device, the error must not be ignored. Instead, the caller is supposed to use os.dup(fd, inheritable=False). Before *this bugfix*,

[issue37267] os.dup() creates an inheritable fd when handling a character file on Windows

2019-06-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +13982 pull_request: https://github.com/python/cpython/pull/14141 ___ Python tracker ___

[issue37267] os.dup() creates an inheritable fd when handling a character file on Windows

2019-06-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +13981 pull_request: https://github.com/python/cpython/pull/14140 ___ Python tracker ___

[issue37267] os.dup() creates an inheritable fd when handling a character file on Windows

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 28fca0c422b425a6be43be31add0a5328c16b0b8 by Victor Stinner (Zackery Spytz) in branch 'master': bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051)

<    1   2   3