[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread miss-islington
miss-islington added the comment: New changeset b7f6e8e13574aaa69d132ea67d7a515bf257a0cb by Miss Islington (bot) in branch '3.9': bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-31547)

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread miss-islington
miss-islington added the comment: New changeset 632a8121d4d577541c3fddffc986bcb8d8d545b6 by Miss Islington (bot) in branch '3.10': bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-31547)

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread Irit Katriel
Irit Katriel added the comment: New changeset 53ecf9e08d35801807daf74492c090a325f995b7 by slateny in branch 'main': bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-31547) https://github.com/python/cpython/commit/53ecf9e08d35801807daf74492c090a325f995b7

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +29690 pull_request: https://github.com/python/cpython/pull/31568 ___ Python tracker ___

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +29689 pull_request: https://github.com/python/cpython/pull/31567 ___ Python tracker

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-24 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-23 Thread Stanley
Change by Stanley : -- keywords: +patch nosy: +slateny nosy_count: 4.0 -> 5.0 pull_requests: +29668 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31547 ___ Python tracker

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-01-23 Thread Irit Katriel
Irit Katriel added the comment: The docs and the code are the same now. I would add just the first half of the suggested sentence: "On platforms that are neither Posix nor Cygwin, TemporaryFile behaves exactly like NamedTemporaryFile". -- keywords: +easy nosy: +iritkatriel title: