aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_tempfile.py
Commit message (Expand)AuthorAge
* gh-58451: Add optional delete_on_close parameter to NamedTemporaryFile (GH-97...Ev2geny2022-10-04
* gh-83499: Fix closing file descriptors in tempfile (GH-93874)Serhiy Storchaka2022-06-26
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-06
* bpo-45046: Support context managers in unittest (GH-28045)Serhiy Storchaka2022-05-08
* gh-70363: Emscripten cannot fstat renamed spool file (GH-92354)Christian Heimes2022-05-06
* gh-70363: Implement `io.IOBase` interface for `SpooledTemporaryFile` (GH-29560)Carey Metcalfe2022-05-03
* bpo-40280: Skip more tests on Emscripten (GH-31947)Christian Heimes2022-03-17
* bpo-40280: Add requires_fork test helper (GH-30622)Christian Heimes2022-01-16
* bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ...Kyungmin Lee2021-10-20
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-06
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-29
* bpo-29982: Add "ignore_cleanup_errors" param to tempfile.TemporaryDirectory()...CAM Gerlach2021-03-14
* bpo-40701: tempfile mixes str and bytes in an inconsistent manner (GH-20442)Eric L2021-03-03
* tempfile: Use random.choises() instead of choise() (GH-23068)Inada Naoki2020-11-01
* Revert "bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)"Inada Naoki2020-10-31
* bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)Eric W2020-10-30
* bpo-40275: Use new test.support helper submodules in tests (GH-21169)Hai Shi2020-06-30
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-30
* bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540)Inada Naoki2020-04-17
* bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum2020-04-07
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-31
* bpo-39019: Implement missing __class_getitem__ for SpooledTemporaryFile (GH-1...Batuhan Taşkaya2019-12-30
* bpo-26730: Fix SpooledTemporaryFile data corruption (GH-17400)Inada Naoki2019-11-27
* bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)Anthony Sottile2019-09-09
* bpo-26660, bpo-35144: Fix permission errors in TemporaryDirectory cleanup. (G...Serhiy Storchaka2019-05-31
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-05
* Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)Anthony Sottile2019-02-25
* bpo-27300: Add the errors parameter to tempfile classes. (GH-6696)sth2018-05-23
* bpo-31160: test_tempfile: Fix reap_children() warning (#3056)Victor Stinner2017-08-10
* bpo-30197: Enhance functions swap_attr() and swap_item() in test.support. (#1...Serhiy Storchaka2017-04-28
* bpo-30030: Revert f50354ad (tempfile) (#1187)Victor Stinner2017-04-19
* Reimplement tempfile._RandomNameSequence using a generator function. (#1075)Serhiy Storchaka2017-04-11
* Issue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhostMartin Panter2016-02-28
* Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dirGregory P. Smith2015-05-22
* Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try againSerhiy Storchaka2015-05-20
|\
| * Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try againSerhiy Storchaka2015-05-20
* | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-06
* | Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-13
|/
* Issue #23700: Iterator of NamedTemporaryFile now keeps a reference toSerhiy Storchaka2015-03-19
* Issue #22427: TemporaryDirectory no longer attempts to clean up twice whenSerhiy Storchaka2014-09-24
* Issue #18174: Fix leak of file descriptor in test_tempfileVictor Stinner2014-07-29
* Issue #21058: fix typo in a comment. Patch written by Vajrasky Kok.Victor Stinner2014-03-25
* Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(),Victor Stinner2014-03-25
* Issue #19077: tempfile.TemporaryDirectory cleanup no longer fails whenSerhiy Storchaka2014-01-27
|\
| * Issue #19077: tempfile.TemporaryDirectory cleanup is now most likelySerhiy Storchaka2014-01-27
* | Issue #18879: When a method is looked up on a temporary file, avoid closing t...Antoine Pitrou2013-12-21
|\|
| * Issue #18879: When a method is looked up on a temporary file, avoid closing t...Antoine Pitrou2013-12-21
* | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-08
|\|
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-08
* | Issue14255 Don't flatten case of tempdirTim Golden2013-10-25