| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Thanks to Detlef Lannert for pointing out a typo in the code that | Tim Peters | 2002-01-30 | 1 | -1/+1 |
|
|
* | New TemporaryFile implementation for Windows: this doesn't need a | Tim Peters | 2002-01-30 | 1 | -1/+17 |
|
|
* | SF bug #509805 tempfile.gettempdir not threadsafe | Tim Peters | 2002-01-28 | 1 | -2/+28 |
|
|
* | TemporaryFileWrapper: fixed typo in new comment. | Tim Peters | 2001-12-18 | 1 | -1/+1 |
|
|
* | TemporaryFileWrapper: cache the value of os.unlink for use by __del__, | Tim Peters | 2001-12-18 | 1 | -1/+8 |
|
|
* | SF bug #476138: tempfile behavior across platforms | Tim Peters | 2001-10-29 | 1 | -4/+6 |
|
|
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -1/+5 |
|
|
* | Search /tmp before /var/tmp and /usr/tmp -- this seems preferred. | Guido van Rossum | 2001-03-02 | 1 | -1/+1 |
|
|
* | final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be | Skip Montanaro | 2001-03-01 | 1 | -0/+2 |
|
|