/usr/lib/python3/dist-packages/spur/tempdir.py is in python3-spur 0.3.17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | import contextlib
import tempfile
import shutil
@contextlib.contextmanager
def create_temporary_dir():
dir = tempfile.mkdtemp()
try:
yield dir
finally:
shutil.rmtree(dir)
|