[Python-checkins] r65477 - python/trunk/Doc/library/tempfile.rst
georg.brandl
python-checkins at python.org
Mon Aug 4 09:23:29 CEST 2008
Author: georg.brandl
Date: Mon Aug 4 09:23:29 2008
New Revision: 65477
Log:
Template is always "tmp".
Modified:
python/trunk/Doc/library/tempfile.rst
Modified: python/trunk/Doc/library/tempfile.rst
==============================================================================
--- python/trunk/Doc/library/tempfile.rst (original)
+++ python/trunk/Doc/library/tempfile.rst Mon Aug 4 09:23:29 2008
@@ -233,8 +233,7 @@
When set to a value other than ``None``, this variable defines the prefix of the
final component of the filenames returned by :func:`mktemp`. A string of six
random letters and digits is appended to the prefix to make the filename unique.
- On Windows, the default prefix is :file:`~T`; on all other systems it is
- :file:`tmp`.
+ The default prefix is :file:`tmp`.
Older versions of this module used to require that ``template`` be set to
``None`` after a call to :func:`os.fork`; this has not been necessary since
More information about the Python-checkins
mailing list