Home | Trees | Indices | Help |
|
---|
|
object --+ | core.Proxy --+ | TempFile
Create a temporary file and take care of deleting it upon object destruction. The file can be opened multiple times on any platform, unlike the case with tempfile.NamedTemporaryFile (does not work on Windows).
>>> with TempFile() as tmp: tmp.write(...) open(tmp.name)...
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
str or bytes |
|
||
Inherited from Inherited from |
Properties | |
str |
name Full path and file name |
Inherited from |
Method Details |
x.__init__(...) initializes x; see help(type(x)) for signature
|
|
Property Details |
nameFull path and file name
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Jul 4 20:19:06 2017 | http://epydoc.sourceforge.net |