summaryrefslogtreecommitdiff
path: root/Lib/tempfile.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26385: Cleanup NamedTemporaryFile if fdopen() fails, by SilentGhostMartin Panter2016-02-291-1/+2
* Issue #26261: Clarify NamedTemporaryFile name attribute vs file.nameMartin Panter2016-02-221-2/+2
* Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try againSerhiy Storchaka2015-05-201-4/+15
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-3/+5
* tempfile: Fix docstring. Issue #21397, patch by R. David Murray.Yury Selivanov2014-09-261-4/+4
* Issue #21058: NamedTemporaryFile() closes the FD on any error, not only Excep...Victor Stinner2014-03-251-1/+1
* Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(),Victor Stinner2014-03-251-2/+6
* Close #18849: Fixed a Windows-specific tempfile bug where collision with anEli Bendersky2013-09-061-0/+4
* Tempfile.py: stop buildbot warning about using deprecated xreadlines.Terry Jan Reedy2013-06-301-3/+3
* Fix deprecation warning in tempfile.Ezio Melotti2013-02-231-1/+1
* Fix for issue #16800: Use buffered write to handle EINTR.Serhiy Storchaka2013-02-131-2/+2
* Issue #16800: tempfile.gettempdir() no longer left temporary files whenSerhiy Storchaka2013-02-131-7/+11
* Issue #10355: SpooledTemporaryFile properties and xreadline method now work f...Serhiy Storchaka2013-02-091-11/+12
* Issue #12856: Ensure child processes do not inherit the parent's random seed ...Antoine Pitrou2011-11-251-1/+8
* proxy the __exit__ callBenjamin Peterson2009-07-011-1/+1
* provide a dummy __exit__ on windowsBenjamin Peterson2009-06-301-0/+3
* Remove references to platform 'mac'Ronald Oussoren2008-05-121-13/+1
* A few small changes:Skip Montanaro2008-04-271-10/+5
* Issue 2021: Allow NamedTemporaryFile and SpooledTemporaryFile to be used as c...Nick Coghlan2008-02-091-2/+33
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-3/+3
* Patch #1630118: add a SpooledTemporaryFile class to tempfile.Collin Winter2007-03-191-0/+114
* Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameterGeorg Brandl2007-03-131-6/+9
* Patch #1668482: don't use '-' in mkstempCollin Winter2007-03-081-1/+1
* Param name is dir, not directory. Update docstring. Backport candidateNeal Norwitz2006-06-161-1/+1
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-111-4/+0
* Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.Martin v. Löwis2006-05-061-0/+4
* SF bug #1099516: tempfile files not types.FileTypeRaymond Hettinger2005-01-111-5/+5
* Record that FCNTL.py has gone away; remove FCNTL hack in tempfile.py;Tim Peters2004-07-181-7/+5
* mktemp() shouldn't rely on os.path.exists(), which can return False ifGuido van Rossum2003-11-101-1/+23
* fixed wrong error checking on fcntl call as per SF bug # 821896Alex Martelli2003-11-091-2/+3
* Patch #810914: Return absolute path for mkstemp. Fixes #810408.Martin v. Löwis2003-10-121-1/+1
* Windows fix: When PYTHONCASEOK is set, or for any other reason importsTim Peters2003-07-221-3/+9
* Getting rid of macfs.Jack Jansen2003-03-211-6/+6
* Use the dummy_thread module in Queue.py and tempfile.py.Guido van Rossum2002-12-301-6/+3
* Comment out the warnings about mktemp(). These are too annoying, andGuido van Rossum2002-11-221-3/+3
* _RandomNameSequence(): style guide changes, small speedup, don'tTim Peters2002-11-211-8/+8
* _TemporaryFileWrapper: changed self.close_called to a proper bool.Tim Peters2002-11-211-2/+2
* Get rid of _once(); inlining it takes less code. :-)Guido van Rossum2002-08-171-36/+41
* tempfile's mkstemp(): Changed last argument fromTim Peters2002-08-141-10/+10
* Patch #595014: Cygwin tempfile patchJason Tishler2002-08-141-3/+3
* mkstemp(): Repaired error in docstring (the sense of the 'binary' flagTim Peters2002-08-141-2/+2
* mkstemp(): The optional "binary" argument is clearly intended to be aTim Peters2002-08-131-1/+1
* NamedTemporaryFile(), TemporaryFile(): removed needless local vrbl 'bin'.Tim Peters2002-08-131-6/+8
* template: removed special-casing for NT; there isn't an 8-character limit.Tim Peters2002-08-131-4/+1
* _once(): Removed obfuscating aliasing of _once_lock.Tim Peters2002-08-131-4/+2
* _once(): Simplified dict manipulation.Tim Peters2002-08-131-2/+2
* Whitespace normalization.Tim Peters2002-08-091-6/+9
* Check-in of the most essential parts of SF 589982 (tempfile.pyGuido van Rossum2002-08-091-225/+396
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* If possible, set FD_CLOEXEC flag on file descriptors opened usingNeil Schemenauer2002-03-241-0/+12