| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #26385: Cleanup NamedTemporaryFile if fdopen() fails, by SilentGhost | Martin Panter | 2016-02-29 | 1 | -1/+2 |
|
|
* | Issue #26261: Clarify NamedTemporaryFile name attribute vs file.name | Martin Panter | 2016-02-22 | 1 | -2/+2 |
|
|
* | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -4/+15 |
|
|
* | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -3/+5 |
|
|
* | tempfile: Fix docstring. Issue #21397, patch by R. David Murray. | Yury Selivanov | 2014-09-26 | 1 | -4/+4 |
|
|
* | Issue #21058: NamedTemporaryFile() closes the FD on any error, not only Excep... | 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 | -2/+6 |
|
|
* | Close #18849: Fixed a Windows-specific tempfile bug where collision with an | Eli Bendersky | 2013-09-06 | 1 | -0/+4 |
|
|
* | Tempfile.py: stop buildbot warning about using deprecated xreadlines. | Terry Jan Reedy | 2013-06-30 | 1 | -3/+3 |
|
|
* | Fix deprecation warning in tempfile. | Ezio Melotti | 2013-02-23 | 1 | -1/+1 |
|
|
* | Fix for issue #16800: Use buffered write to handle EINTR. | Serhiy Storchaka | 2013-02-12 | 1 | -2/+2 |
|
|
* | Issue #16800: tempfile.gettempdir() no longer left temporary files when | Serhiy Storchaka | 2013-02-12 | 1 | -7/+11 |
|
|
* | Issue #10355: SpooledTemporaryFile properties and xreadline method now work f... | Serhiy Storchaka | 2013-02-09 | 1 | -11/+12 |
|
|
* | Issue #12856: Ensure child processes do not inherit the parent's random seed ... | Antoine Pitrou | 2011-11-25 | 1 | -1/+8 |
|
|
* | proxy the __exit__ call | Benjamin Peterson | 2009-07-01 | 1 | -1/+1 |
|
|
* | provide a dummy __exit__ on windows | Benjamin Peterson | 2009-06-30 | 1 | -0/+3 |
|
|
* | Remove references to platform 'mac' | Ronald Oussoren | 2008-05-12 | 1 | -13/+1 |
|
|
* | A few small changes: | Skip Montanaro | 2008-04-27 | 1 | -10/+5 |
|
|
* | Issue 2021: Allow NamedTemporaryFile and SpooledTemporaryFile to be used as c... | Nick Coghlan | 2008-02-09 | 1 | -2/+33 |
|
|
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 1 | -3/+3 |
|
|
* | Patch #1630118: add a SpooledTemporaryFile class to tempfile. | Collin Winter | 2007-03-19 | 1 | -0/+114 |
|
|
* | Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter | Georg Brandl | 2007-03-13 | 1 | -6/+9 |
|
|
* | Patch #1668482: don't use '-' in mkstemp | Collin Winter | 2007-03-08 | 1 | -1/+1 |
|
|
* | Param name is dir, not directory. Update docstring. Backport candidate | Neal Norwitz | 2006-06-16 | 1 | -1/+1 |
|
|
* | Change WindowsError to carry the Win32 error code in winerror, | Martin v. Löwis | 2006-05-11 | 1 | -4/+0 |
|
|
* | Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API. | Martin v. Löwis | 2006-05-06 | 1 | -0/+4 |
|
|
* | SF bug #1099516: tempfile files not types.FileType | Raymond Hettinger | 2005-01-11 | 1 | -5/+5 |
|
|
* | Record that FCNTL.py has gone away; remove FCNTL hack in tempfile.py; | Tim Peters | 2004-07-18 | 1 | -7/+5 |
|
|
* | mktemp() shouldn't rely on os.path.exists(), which can return False if | Guido van Rossum | 2003-11-10 | 1 | -1/+23 |
|
|
* | fixed wrong error checking on fcntl call as per SF bug # 821896 | Alex Martelli | 2003-11-09 | 1 | -2/+3 |
|
|
* | Patch #810914: Return absolute path for mkstemp. Fixes #810408. | Martin v. Löwis | 2003-10-12 | 1 | -1/+1 |
|
|
* | Windows fix: When PYTHONCASEOK is set, or for any other reason imports | Tim Peters | 2003-07-22 | 1 | -3/+9 |
|
|
* | Getting rid of macfs. | Jack Jansen | 2003-03-21 | 1 | -6/+6 |
|
|
* | Use the dummy_thread module in Queue.py and tempfile.py. | Guido van Rossum | 2002-12-30 | 1 | -6/+3 |
|
|
* | Comment out the warnings about mktemp(). These are too annoying, and | Guido van Rossum | 2002-11-22 | 1 | -3/+3 |
|
|
* | _RandomNameSequence(): style guide changes, small speedup, don't | Tim Peters | 2002-11-21 | 1 | -8/+8 |
|
|
* | _TemporaryFileWrapper: changed self.close_called to a proper bool. | Tim Peters | 2002-11-21 | 1 | -2/+2 |
|
|
* | Get rid of _once(); inlining it takes less code. :-) | Guido van Rossum | 2002-08-17 | 1 | -36/+41 |
|
|
* | tempfile's mkstemp(): Changed last argument from | Tim Peters | 2002-08-14 | 1 | -10/+10 |
|
|
* | Patch #595014: Cygwin tempfile patch | Jason Tishler | 2002-08-14 | 1 | -3/+3 |
|
|
* | mkstemp(): Repaired error in docstring (the sense of the 'binary' flag | Tim Peters | 2002-08-14 | 1 | -2/+2 |
|
|
* | mkstemp(): The optional "binary" argument is clearly intended to be a | Tim Peters | 2002-08-13 | 1 | -1/+1 |
|
|
* | NamedTemporaryFile(), TemporaryFile(): removed needless local vrbl 'bin'. | Tim Peters | 2002-08-13 | 1 | -6/+8 |
|
|
* | template: removed special-casing for NT; there isn't an 8-character limit. | Tim Peters | 2002-08-13 | 1 | -4/+1 |
|
|
* | _once(): Removed obfuscating aliasing of _once_lock. | Tim Peters | 2002-08-13 | 1 | -4/+2 |
|
|
* | _once(): Simplified dict manipulation. | Tim Peters | 2002-08-13 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-09 | 1 | -6/+9 |
|
|
* | Check-in of the most essential parts of SF 589982 (tempfile.py | Guido van Rossum | 2002-08-09 | 1 | -225/+396 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
|
|
* | If possible, set FD_CLOEXEC flag on file descriptors opened using | Neil Schemenauer | 2002-03-24 | 1 | -0/+12 |
|
|