MCPcopy Create free account
hub / github.com/breach/thrust / tempdir

Function tempdir

scripts/util.py:17–20  ·  view source on GitHub ↗
(prefix='')

Source from the content-addressed store, hash-verified

15verbose_mode = False
16
17def tempdir(prefix=''):
18 directory = tempfile.mkdtemp(prefix=prefix)
19 atexit.register(shutil.rmtree, directory)
20 return directory
21
22
23def enable_verbose_execute():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected