| Commit message (Expand) | Author | Age | Files | Lines |
* | [3.12] gh-79325: Fix recursion error in TemporaryDirectory cleanup on Windows... | Miss Islington (bot) | 2023-12-07 | 1 | -0/+11 |
|
|
* | [3.12] gh-91133: tempfile.TemporaryDirectory: fix symlink bug in cleanup (GH-... | Miss Islington (bot) | 2023-12-07 | 1 | -6/+105 |
|
|
* | [3.12] bpo-43153: Don't mask `PermissionError` with `NotADirectoryError` duri... | Miss Islington (bot) | 2023-12-05 | 1 | -0/+11 |
|
|
* | [3.12] gh-108962: Skip test_tempfile.test_flags() if not supported (GH-108964... | Miss Islington (bot) | 2023-09-08 | 1 | -1/+17 |
|
|
* | gh-51574: Make tempfile.mkdtemp() always return absolute paths (#94612) | Samuel Sloniker | 2023-04-25 | 1 | -0/+9 |
|
|
* | Fix typos in test_tempfile.py (#102841) | JakobDev | 2023-04-09 | 1 | -2/+2 |
|
|
* | gh-100131: Add optional delete parameter to tempfile.TemporaryDirectory() (#1... | JakobDev | 2023-03-24 | 1 | -0/+6 |
|
|
* | gh-58451: Add optional delete_on_close parameter to NamedTemporaryFile (GH-97... | Ev2geny | 2022-10-04 | 1 | -1/+99 |
|
|
* | gh-83499: Fix closing file descriptors in tempfile (GH-93874) | Serhiy Storchaka | 2022-06-26 | 1 | -36/+54 |
|
|
* | gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534) | Christian Heimes | 2022-06-06 | 1 | -0/+2 |
|
|
* | bpo-45046: Support context managers in unittest (GH-28045) | Serhiy Storchaka | 2022-05-08 | 1 | -5/+1 |
|
|
* | gh-70363: Emscripten cannot fstat renamed spool file (GH-92354) | Christian Heimes | 2022-05-05 | 1 | -0/+3 |
|
|
* | gh-70363: Implement `io.IOBase` interface for `SpooledTemporaryFile` (GH-29560) | Carey Metcalfe | 2022-05-03 | 1 | -0/+48 |
|
|
* | bpo-40280: Skip more tests on Emscripten (GH-31947) | Christian Heimes | 2022-03-17 | 1 | -0/+7 |
|
|
* | bpo-40280: Add requires_fork test helper (GH-30622) | Christian Heimes | 2022-01-16 | 1 | -2/+1 |
|
|
* | bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ... | Kyungmin Lee | 2021-10-20 | 1 | -0/+19 |
|
|
* | Fix typos in the Lib directory (GH-28775) | Christian Clauss | 2021-10-06 | 1 | -3/+3 |
|
|
* | bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005) | Serhiy Storchaka | 2021-08-29 | 1 | -0/+3 |
|
|
* | bpo-29982: Add "ignore_cleanup_errors" param to tempfile.TemporaryDirectory()... | CAM Gerlach | 2021-03-14 | 1 | -2/+88 |
|
|
* | bpo-40701: tempfile mixes str and bytes in an inconsistent manner (GH-20442) | Eric L | 2021-03-03 | 1 | -0/+57 |
|
|
* | tempfile: Use random.choises() instead of choise() (GH-23068) | Inada Naoki | 2020-11-01 | 1 | -2/+2 |
|
|
* | Revert "bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)" | Inada Naoki | 2020-10-31 | 1 | -2/+2 |
|
|
* | bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997) | Eric W | 2020-10-30 | 1 | -2/+2 |
|
|
* | bpo-40275: Use new test.support helper submodules in tests (GH-21169) | Hai Shi | 2020-06-30 | 1 | -8/+12 |
|
|
* | bpo-40443: Remove unused imports in tests (GH-19805) | Victor Stinner | 2020-04-29 | 1 | -1/+0 |
|
|
* | bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540) | Inada Naoki | 2020-04-17 | 1 | -2/+4 |
|
|
* | bpo-39481: Implementation for PEP 585 (#18239) | Guido van Rossum | 2020-04-07 | 1 | -2/+3 |
|
|
* | bpo-40094: Add test.support.wait_process() (GH-19254) | Victor Stinner | 2020-03-31 | 1 | -9/+1 |
|
|
* | bpo-39019: Implement missing __class_getitem__ for SpooledTemporaryFile (GH-1... | Batuhan Taşkaya | 2019-12-30 | 1 | -0/+3 |
|
|
* | bpo-26730: Fix SpooledTemporaryFile data corruption (GH-17400) | Inada Naoki | 2019-11-27 | 1 | -11/+14 |
|
|
* | bpo-35803: Document and test dir=PathLike for tempfile (GH-11644) | Anthony Sottile | 2019-09-09 | 1 | -2/+14 |
|
|
* | bpo-26660, bpo-35144: Fix permission errors in TemporaryDirectory cleanup. (G... | Serhiy Storchaka | 2019-05-31 | 1 | -9/+42 |
|
|
* | bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929) | Serhiy Storchaka | 2019-03-05 | 1 | -6/+4 |
|
|
* | Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) | Anthony Sottile | 2019-02-25 | 1 | -10/+2 |
|
|
* | bpo-27300: Add the errors parameter to tempfile classes. (GH-6696) | sth | 2018-05-23 | 1 | -1/+10 |
|
|
* | bpo-31160: test_tempfile: Fix reap_children() warning (#3056) | Victor Stinner | 2017-08-10 | 1 | -1/+7 |
|
|
* | bpo-30197: Enhance functions swap_attr() and swap_item() in test.support. (#1... | Serhiy Storchaka | 2017-04-28 | 1 | -3/+2 |
|
|
* | bpo-30030: Revert f50354ad (tempfile) (#1187) | Victor Stinner | 2017-04-19 | 1 | -3/+2 |
|
|
* | Reimplement tempfile._RandomNameSequence using a generator function. (#1075) | Serhiy Storchaka | 2017-04-11 | 1 | -2/+3 |
|
|
* | Issue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhost | Martin Panter | 2016-02-28 | 1 | -1/+9 |
|
|
* | Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir | Gregory P. Smith | 2015-05-22 | 1 | -21/+148 |
|
|
* | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -6/+41 |
|\ |
|
| * | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -6/+41 |
|
|
* | | Issue #9517: Move script_helper to the support package. | Berker Peksag | 2015-05-06 | 1 | -1/+2 |
|
|
* | | Issue #21741: Update 147 test modules to use test discovery. | Zachary Ware | 2015-04-13 | 1 | -4/+1 |
|/ |
|
* | Issue #23700: Iterator of NamedTemporaryFile now keeps a reference to | Serhiy Storchaka | 2015-03-19 | 1 | -0/+13 |
|
|
* | Issue #22427: TemporaryDirectory no longer attempts to clean up twice when | Serhiy Storchaka | 2014-09-24 | 1 | -0/+24 |
|
|
* | Issue #18174: Fix leak of file descriptor in test_tempfile | Victor Stinner | 2014-07-28 | 1 | -0/+4 |
|
|
* | Issue #21058: fix typo in a comment. Patch written by Vajrasky Kok. | Victor Stinner | 2014-03-25 | 1 | -1/+1 |
|
|
* | Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(), | Victor Stinner | 2014-03-25 | 1 | -0/+24 |
|
|