NamedTemporaryFile

NamedTemporaryFile is based on Python's function of the same name. Django's version rectifies a problem with the standard implementation whereby the returned temporary file cannot be reopened on Windows. Django's version allows the file to be reopened in the same process on all platforms (though it does not address the more general issue of opening a file for writing and reading in multiple processes in a manner that works across platforms).

NamedTemporaryFile is for Django's internal use, and as of Python 2.6 does not support the full range of keyword arguments available in the standard Python version.

Last modified 11 years ago Last modified on Sep 20, 2013, 1:00:22 AM
Note: See TracWiki for help on using the wiki.
Back to Top