MCPcopy Index your code
hub / github.com/aws/aws-cli / tmp_dir

Function tmp_dir

scripts/utils.py:51–56  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

49
50@contextlib.contextmanager
51def tmp_dir():
52 dirname = tempfile.mkdtemp()
53 try:
54 yield dirname
55 finally:
56 shutil.rmtree(dirname)
57
58
59@contextlib.contextmanager

Callers

nothing calls this directly

Calls 1

rmtreeMethod · 0.45

Tested by

no test coverage detected