Catherine Moroney wrote:
Are the temporary filenames generated by the tempfile module
guaranteed to be unique?

I suspect this answers your question...

Emile


>>> import tempfile
>>> help(tempfile)
Help on module tempfile:

NAME
    tempfile - Temporary files.

FILE
    c:\python25\lib\tempfile.py

DESCRIPTION
    This module provides generic, low- and high-level interfaces for
    creating temporary files and directories.  The interfaces listed
    as "safe" just below can be used without fear of race conditions.
    Those listed as "unsafe" cannot, and are provided for backward
    compatibility only.

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to