summaryrefslogtreecommitdiffstats
path: root/Doc/library/tempfile.rst
Commit message (Expand)AuthorAgeFilesLines
* gh-101100: Fix Sphinx nitpicks in `library/tempfile.rst` (#112886)Alex Waygood2023-12-091-23/+29
* gh-111282: Fix NamedTemporaryFile example code (GH-111283)Krzysiek Karbowiak2023-10-311-7/+7
* gh-101100: Fix Sphinx warnings for `fileno` (#111118)Hugo van Kemenade2023-10-231-1/+1
* gh-110631: Fix reST indentation in `Doc/library` (#110685)Ezio Melotti2023-10-111-8/+8
* gh-106909: Use role :const: for referencing module constants (GH-106910)Serhiy Storchaka2023-07-211-2/+2
* gh-51574: Make tempfile.mkdtemp() always return absolute paths (#94612)Samuel Sloniker2023-04-251-0/+3
* gh-100131: Add optional delete parameter to tempfile.TemporaryDirectory() (#1...JakobDev2023-03-241-1/+10
* gh-58451: Add optional delete_on_close parameter to NamedTemporaryFile (GH-97...Ev2geny2022-10-041-14/+71
* gh-76773: Update docs mentioning no-longer-supported Windows versions & featu...CAM Gerlach2022-05-101-1/+1
* gh-70363: Implement `io.IOBase` interface for `SpooledTemporaryFile` (GH-29560)Carey Metcalfe2022-05-031-0/+5
* Correctly document class instead of function (GH-32016)slateny2022-03-231-4/+4
* bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-3...slateny2022-02-251-0/+3
* bpo-39498 Start linking the security warnings in the stdlib modules (GH-18272)Anthony Shaw2021-08-091-0/+1
* bpo-4928: Document NamedTemporaryFile non-deletion after SIGKILL (#26198)Catherine Devlin2021-05-191-0/+3
* bpo-40701: doc typo historcal -> historical (GH-25334)Gregory P. Smith2021-04-101-1/+1
* bpo-29982: Add "ignore_cleanup_errors" param to tempfile.TemporaryDirectory()...CAM Gerlach2021-03-141-3/+12
* bpo-40701: tempfile mixes str and bytes in an inconsistent manner (GH-20442)Eric L2021-03-031-2/+19
* bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* f...Sergey Fedoseev2020-09-131-3/+3
* bpo-41410: Fix outdated info in mkstemp docs (GH-21701)Rishav Kundu2020-08-141-3/+2
* bpo-26730: Fix SpooledTemporaryFile data corruption (GH-17400)Inada Naoki2019-11-271-2/+2
* bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)Anthony Sottile2019-09-091-0/+6
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-271-5/+5
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+10
* bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)Serhiy Storchaka2018-12-191-1/+1
* Clarified the tempfile.tempdir documentation (GH-7829)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-211-1/+1
* bpo-27300: Add the errors parameter to tempfile classes. (GH-6696)sth2018-05-231-4/+13
* tempfile.rst: Fix some typos (GH-610)Jelle Zijlstra2017-03-111-2/+2
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-5/+3
* Fix spelling (inital), grammar (may translates) in documentation, commentsMartin Panter2016-04-191-1/+1
* Issue #26261: Clarify NamedTemporaryFile name attribute vs file.nameMartin Panter2016-02-221-1/+2
* Issue #25064: Adjust documentation according to new mkstemp signatureMartin Panter2015-11-071-19/+17
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-1/+1
|\
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* | Issue #23725: Overhaul tempfile docs.Robert Collins2015-08-121-66/+89
* | Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dirGregory P. Smith2015-05-221-2/+35
* | merge with 3.4Georg Brandl2014-10-311-1/+1
|\ \ | |/
| * #22613: minor other fixes in library docs (thanks Jacques Ducasse)Georg Brandl2014-10-311-1/+1
* | Issue #21515: tempfile.TemporaryFile now uses os.O_TMPFILE flag is availableVictor Stinner2014-06-051-0/+7
|/
* #14515: clarify that TemporaryDirectory's __enter__ returns the name.R David Murray2014-02-051-4/+6
* Issue #18743: Fix references to non-existant "StringIO" module.Serhiy Storchaka2013-08-161-1/+1
* #17271: merge with 3.2.Ezio Melotti2013-02-221-4/+3
|\
| * #17271: update example in tempfile docs.Ezio Melotti2013-02-221-4/+3
* | Minor fix of previous commit.Serhiy Storchaka2013-02-091-1/+1
|\ \ | |/
| * Minor fix of previous commit.Serhiy Storchaka2013-02-091-1/+1
* | Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation.Serhiy Storchaka2013-02-091-3/+5
|\ \ | |/
| * Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation.Serhiy Storchaka2013-02-091-3/+5
* | #9957: document that SpooledTemporaryFile.truncate now accepts a size argR David Murray2012-10-061-0/+3
|\ \ | |/
| * #9957: document that SpooledTemporaryFile.truncate does not take size argR David Murray2012-10-061-1/+2
* | Merge from 3.2 . Replace the term members with correct and appropriate termi...Senthil Kumaran2011-07-041-2/+2
|\ \ | |/
| * issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ...Senthil Kumaran2011-07-041-2/+2