summaryrefslogtreecommitdiff
path: root/Lib/tempfile.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #10188 (partial resolution): tidy up some behaviour in the new tempfile...Nick Coghlan2010-12-121-8/+27
* Avoid AttributeError(_closed) when a TemporaryDirectory is deallocated whose ...Georg Brandl2010-12-111-0/+2
* Simplify codeRaymond Hettinger2010-11-091-14/+3
* Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer)Nick Coghlan2010-10-241-1/+64
* #6077: on Windows, fix truncation of a tempfile.TemporaryFile opened in "wt+"...Amaury Forgeot d'Arc2009-11-301-10/+3
* Merged revisions 73744 via svnmerge fromBenjamin Peterson2009-07-011-1/+1
* Merged revisions 73710 via svnmerge fromBenjamin Peterson2009-06-301-0/+3
* Fixed test_tempfile.Alexandre Vassalotti2008-06-121-1/+1
* Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.Georg Brandl2008-05-251-2/+2
* Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-...Alexandre Vassalotti2008-05-161-13/+1
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-9/+4
* As Guido saysChristian Heimes2008-02-281-2/+2
* iter() doesn't use __getattr__ to find an __iter__ method. I'm not sure if th...Christian Heimes2008-02-281-0/+4
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-091-2/+33
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-1/+1
* fix typoFred Drake2007-10-291-1/+1
* Issue 1340 by Amaury Forgeot d'Arc (with help from Christian Heimes,Guido van Rossum2007-10-291-1/+4
* Fix exception indexing.Georg Brandl2007-10-221-1/+1
* Raise statement normalization in Lib/.Collin Winter2007-08-301-5/+5
* Patch # 1033 by Adam Hupp:Guido van Rossum2007-08-281-14/+27
* some RiscOS stuff I missed before (was only looking for "RISCOS")Skip Montanaro2007-08-171-3/+0
* Patch suggested Paul Colomiets fixes test_threaded_import.py.Guido van Rossum2007-08-131-2/+2
* Move tempfile over to the io module. Makes test_threaded_import pass.Brett Cannon2007-08-051-3/+3
* Make test_tempfile.py work. Make SpooledTempFile work in text and binary mode.Guido van Rossum2007-07-091-3/+5
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-3/+3
* Change some uses of cStringIO.StringIO to io.StringIO.Guido van Rossum2007-05-181-4/+1
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-4/+4
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-7/+124
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-5/+5
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-3/+3
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+1
* 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