summaryrefslogtreecommitdiffstats
path: root/Lib/tempfile.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* A variant of SF patch 103028 (Make tempfile.mktemp threadsafe).Tim Peters2001-01-121-12/+45
* Patch by tg@FreeBSD.org to try /var/tmp first.Guido van Rossum2000-08-291-1/+1
* Security patch for Unix by Chris McDonough.Guido van Rossum2000-04-241-7/+21
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-8/+6
* In class TemporaryFileWrapper, don't cache attributes of tpye int --Guido van Rossum1999-06-011-1/+2
* Improvement to the previous fix suggested by Thomas Bellman: if theGuido van Rossum1998-10-241-2/+6
* The TemporaryFile() function has a security leak -- because theGuido van Rossum1998-10-241-5/+6
* Fix so that after a fork() -- on Unix only -- the template getsGuido van Rossum1998-10-141-3/+9
* On the Mac, create the Temporary Items folder if it does not exist yet.Guido van Rossum1998-04-281-1/+1
* When getcwd() doesn't exist or raises an exception, don't fail butGuido van Rossum1998-04-091-1/+5
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-58/+58
* Add new optional parameter 'suffix' (default ''), which is appended toGuido van Rossum1997-12-191-10/+11