Re: uniqueness of temporary files generated by tempfile

2009-03-06 Thread Emile van Sebille
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\tempfil

uniqueness of temporary files generated by tempfile

2009-03-06 Thread Catherine Moroney
Are the temporary filenames generated by the tempfile module guaranteed to be unique? I have a need to generate temporary files within an application, and I will have many instances of this application running as a sub-process (so I can submit them to a batch queue). Is there any danger of my di