| 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 | -2/+8 |
|
|
* | [3.12] gh-87319: Simplify TemporaryDirectory cleanup using os.path.isjunction... | Miss Islington (bot) | 2023-12-07 | 1 | -13/+1 |
|
|
* | [3.12] gh-91133: tempfile.TemporaryDirectory: fix symlink bug in cleanup (GH-... | Miss Islington (bot) | 2023-12-07 | 1 | -9/+18 |
|
|
* | [3.12] bpo-43153: Don't mask `PermissionError` with `NotADirectoryError` duri... | Miss Islington (bot) | 2023-12-05 | 1 | -2/+26 |
|
|
* | gh-51574: Make tempfile.mkdtemp() always return absolute paths (#94612) | Samuel Sloniker | 2023-04-25 | 1 | -1/+1 |
|
|
* | gh-100131: Add optional delete parameter to tempfile.TemporaryDirectory() (#1... | JakobDev | 2023-03-24 | 1 | -7/+18 |
|
|
* | gh-102828: emit deprecation warning for onerror arg to shutil.rmtree (#102850) | Irit Katriel | 2023-03-21 | 1 | -4/+4 |
|
|
* | gh-58451: Add optional delete_on_close parameter to NamedTemporaryFile (GH-97... | Ev2geny | 2022-10-04 | 1 | -36/+40 |
|
|
* | gh-83499: Fix closing file descriptors in tempfile (GH-93874) | Serhiy Storchaka | 2022-06-26 | 1 | -28/+51 |
|
|
* | gh-70363: Implement `io.IOBase` interface for `SpooledTemporaryFile` (GH-29560) | Carey Metcalfe | 2022-05-03 | 1 | -3/+34 |
|
|
* | bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ... | Kyungmin Lee | 2021-10-20 | 1 | -0/+4 |
|
|
* | bpo-4928: Document NamedTemporaryFile non-deletion after SIGKILL (#26198) | Catherine Devlin | 2021-05-19 | 1 | -0/+4 |
|
|
* | bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481) | Inada Naoki | 2021-03-29 | 1 | -0/+7 |
|
|
* | bpo-29982: Add "ignore_cleanup_errors" param to tempfile.TemporaryDirectory()... | CAM Gerlach | 2021-03-14 | 1 | -10/+14 |
|
|
* | bpo-40701: tempfile mixes str and bytes in an inconsistent manner (GH-20442) | Eric L | 2021-03-03 | 1 | -8/+16 |
|
|
* | tempfile: Use random.choises() instead of choise() (GH-23068) | Inada Naoki | 2020-11-01 | 1 | -4/+1 |
|
|
* | Revert "bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)" | Inada Naoki | 2020-10-31 | 1 | -10/+12 |
|
|
* | bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997) | Eric W | 2020-10-30 | 1 | -12/+10 |
|
|
* | bpo-41410: Fix outdated info in mkstemp docs (GH-21701) | Rishav Kundu | 2020-08-14 | 1 | -2/+1 |
|
|
* | bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540) | Inada Naoki | 2020-04-17 | 1 | -1/+1 |
|
|
* | bpo-39481: PEP 585 for a variety of modules (GH-19423) | Batuhan Taşkaya | 2020-04-10 | 1 | -0/+2 |
|
|
* | bpo-39481: Implementation for PEP 585 (#18239) | Guido van Rossum | 2020-04-07 | 1 | -11/+2 |
|
|
* | bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599) | Shantanu | 2020-03-17 | 1 | -4/+0 |
|
|
* | bpo-39019: Implement missing __class_getitem__ for SpooledTemporaryFile (GH-1... | Batuhan Taşkaya | 2019-12-30 | 1 | -0/+12 |
|
|
* | bpo-26730: Fix SpooledTemporaryFile data corruption (GH-17400) | Inada Naoki | 2019-11-27 | 1 | -6/+9 |
|
|
* | bpo-37363: Add audit events for a range of modules (GH-14301) | Steve Dower | 2019-06-24 | 1 | -1/+4 |
|
|
* | bpo-26660, bpo-35144: Fix permission errors in TemporaryDirectory cleanup. (G... | Serhiy Storchaka | 2019-05-31 | 1 | -2/+32 |
|
|
* | Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) | Anthony Sottile | 2019-02-25 | 1 | -11/+1 |
|
|
* | bpo-27300: Add the errors parameter to tempfile classes. (GH-6696) | sth | 2018-05-23 | 1 | -19/+16 |
|
|
* | bpo-33522: Enable CI builds on Visual Studio Team Services (#6865) | Steve Dower | 2018-05-16 | 1 | -1/+3 |
|
|
* | Update docstring of tempfile._RandomNameSequence (GH-6414) | Wolfgang Maier | 2018-04-09 | 1 | -1/+1 |
|
|
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -5/+1 |
|
|
* | bpo-30030: Revert f50354ad (tempfile) (#1187) | Victor Stinner | 2017-04-19 | 1 | -12/+23 |
|
|
* | Reimplement tempfile._RandomNameSequence using a generator function. (#1075) | Serhiy Storchaka | 2017-04-11 | 1 | -23/+12 |
|
|
* | Add a source parameter to warnings.warn() | Victor Stinner | 2016-03-22 | 1 | -1/+0 |
|
|
* | Issue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhost | Martin Panter | 2016-02-28 | 1 | -1/+2 |
|
|
* | Issue #26261: Clarify NamedTemporaryFile name attribute vs file.name | Martin Panter | 2016-02-22 | 1 | -2/+2 |
|
|
* | Issue #25064: Adjust documentation according to new mkstemp signature | Martin Panter | 2015-11-07 | 1 | -8/+9 |
|
|
* | Issue #21515: Elaborate tempfile.TemporaryFile() comment | Victor Stinner | 2015-10-20 | 1 | -2/+10 |
|
|
* | Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir | Gregory P. Smith | 2015-05-22 | 1 | -26/+89 |
|
|
* | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -1/+17 |
|\ |
|
| * | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -1/+17 |
|
|
* | | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -3/+5 |
|\ \
| |/ |
|
| * | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -3/+5 |
|
|
* | | Merge: #23700: fix/improve comment | R David Murray | 2015-03-22 | 1 | -2/+4 |
|\ \
| |/ |
|
| * | #23700: fix/improve comment | R David Murray | 2015-03-22 | 1 | -2/+4 |
|
|
* | | Issue #23700: NamedTemporaryFile iterator closed underlied file object in | Serhiy Storchaka | 2015-03-20 | 1 | -3/+5 |
|\ \
| |/ |
|
| * | Issue #23700: NamedTemporaryFile iterator closed underlied file object in | Serhiy Storchaka | 2015-03-20 | 1 | -3/+5 |
|
|
* | | Issue #23700: Iterator of NamedTemporaryFile now keeps a reference to | Serhiy Storchaka | 2015-03-19 | 1 | -1/+3 |
|\ \
| |/ |
|
| * | Issue #23700: Iterator of NamedTemporaryFile now keeps a reference to | Serhiy Storchaka | 2015-03-19 | 1 | -1/+3 |
|
|