tempfile
 

# Temporary file name allocation
#
# XXX This tries to be not UNIX specific, but I don't know beans about
# how to choose a temp directory or filename on MS-DOS or other
# systems so it may have to be changed...


 Modules
                                                                                                                                                                                                                               
os


 Classes
                                                                                                                                                                                                                               
TemporaryFileWrapper


 class TemporaryFileWrapper
           Temporary file wrapper

This class provides a wrapper around files opened for temporary use.
In particular, it seeks to automatically remove the file when it is
no longer needed.
 
                                                                                                                                                                                                                     
__del__(self)
no doc string
__getattr__(self, name)
no doc string
__init__(self, file, path)
no doc string
close(self)
no doc string


 Functions
                                                                                                                                                                                                                               
TemporaryFile(mode='w+b', bufsize=-1, suffix='')
no doc string
gettempdir()
# Function to calculate the directory to use
gettempprefix()
no doc string
mktemp(suffix='')
# User-callable function to return a unique temporary file name