summaryrefslogtreecommitdiff
path: root/Lib/tempfile.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Thanks to Detlef Lannert for pointing out a typo in the code thatTim Peters2002-01-301-1/+1
* New TemporaryFile implementation for Windows: this doesn't need aTim Peters2002-01-301-1/+17
* SF bug #509805 tempfile.gettempdir not threadsafeTim Peters2002-01-281-2/+28
* TemporaryFileWrapper: fixed typo in new comment.Tim Peters2001-12-181-1/+1
* TemporaryFileWrapper: cache the value of os.unlink for use by __del__,Tim Peters2001-12-181-1/+8
* SF bug #476138: tempfile behavior across platformsTim Peters2001-10-291-4/+6
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-1/+5
* Search /tmp before /var/tmp and /usr/tmp -- this seems preferred.Guido van Rossum2001-03-021-1/+1
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-0/+2
* fix long lineJeremy Hylton2001-02-191-1/+2
* Whitespace normalization.Tim Peters2001-01-151-25/+25
* Reverting a dumb experimental version I checked in by mistake.Tim Peters2001-01-141-9/+2
* SF bug 128713: type(mmap_object) blew up on Linux.Tim Peters2001-01-141-2/+9
* Guido found a brand new race in tempfile on Linux, due to Linux changingTim Peters2001-01-131-16/+31