comparison planemo/lib/python3.7/site-packages/setuptools/py31compat.py @ 1:56ad4e20f292 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:32:28 -0400
parents
children
comparison
equal deleted inserted replaced
0:d30785e31577 1:56ad4e20f292
1 __all__ = []
2
3 __metaclass__ = type
4
5
6 try:
7 # Python >=3.2
8 from tempfile import TemporaryDirectory
9 except ImportError:
10 import shutil
11 import tempfile
12
13 class TemporaryDirectory:
14 """
15 Very simple temporary directory context manager.
16 Will try to delete afterward, but will also ignore OS and similar
17 errors on deletion.
18 """
19
20 def __init__(self, **kwargs):
21 self.name = None # Handle mkdtemp raising an exception
22 self.name = tempfile.mkdtemp(**kwargs)
23
24 def __enter__(self):
25 return self.name
26
27 def __exit__(self, exctype, excvalue, exctrace):
28 try:
29 shutil.rmtree(self.name, True)
30 except OSError: # removal errors are not the only possible
31 pass
32 self.name = None