PATH:
lib
/
python3.8
/
site-packages
/
setuptools
__all__ = [] __metaclass__ = type try: # Python >=3.2 from tempfile import TemporaryDirectory except ImportError: import shutil import tempfile class TemporaryDirectory: """ Very simple temporary directory context manager. Will try to delete afterward, but will also ignore OS and similar errors on deletion. """ def __init__(self, **kwargs): self.name = None # Handle mkdtemp raising an exception self.name = tempfile.mkdtemp(**kwargs) def __enter__(self): return self.name def __exit__(self, exctype, excvalue, exctrace): try: shutil.rmtree(self.name, True) except OSError: # removal errors are not the only possible pass self.name = None
[-] _imp.py
[edit]
[-] wheel.py
[edit]
[-] dist.py
[edit]
[-] extension.py
[edit]
[-] sandbox.py
[edit]
[-] py27compat.py
[edit]
[+]
_vendor
[-] config.py
[edit]
[-] msvc.py
[edit]
[-] archive_util.py
[edit]
[-] _deprecation_warning.py
[edit]
[-] namespaces.py
[edit]
[-] __init__.py
[edit]
[-] glob.py
[edit]
[-] py31compat.py
[edit]
[-] windows_support.py
[edit]
[+]
..
[+]
extern
[-] site-patch.py
[edit]
[-] glibc.py
[edit]
[-] script (dev).tmpl
[edit]
[-] dep_util.py
[edit]
[-] unicode_utils.py
[edit]
[-] script.tmpl
[edit]
[+]
__pycache__
[-] monkey.py
[edit]
[-] pep425tags.py
[edit]
[-] launch.py
[edit]
[-] lib2to3_ex.py
[edit]
[-] build_meta.py
[edit]
[-] ssl_support.py
[edit]
[-] depends.py
[edit]
[-] py34compat.py
[edit]
[+]
command
[-] package_index.py
[edit]
[-] version.py
[edit]
[-] py33compat.py
[edit]