~pythonregexp2.7/python/issue2636-11

« back to all changes in this revision

Viewing changes to Doc/library/tempfile.rst

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 17:53:26 UTC
  • mfrom: (39025.1.14 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921175326-92vaej2hc3yuecxb
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
   When set to a value other than ``None``, this variable defines the prefix of the
234
234
   final component of the filenames returned by :func:`mktemp`.  A string of six
235
235
   random letters and digits is appended to the prefix to make the filename unique.
236
 
   On Windows, the default prefix is :file:`~T`; on all other systems it is
237
 
   :file:`tmp`.
 
236
   The default prefix is :file:`tmp`.
238
237
 
239
238
   Older versions of this module used to require that ``template`` be set to
240
239
   ``None`` after a call to :func:`os.fork`; this has not been necessary since