Lines Matching defs:tempfile
201 import tempfile
209 tmp_dir = tempfile.mkdtemp()
210 tmp_fp, tmp_name = tempfile.mkstemp(dir=tmp_dir)
214 # TESTFN & tempfile may use different file systems with
452 defaults to creating a temporary directory using tempfile.mkdtemp.
459 import tempfile
462 path = tempfile.mkdtemp()
522 created using tempfile.mkdtemp.
557 import tempfile
558 with tempfile.NamedTemporaryFile(dir=directory) as base: