We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8892ae commit 8918e27Copy full SHA for 8918e27
1 file changed
importlib_resources/tests/compat/py39.py
@@ -2,7 +2,6 @@
2
Backward-compatability shims to support Python 3.9 and earlier.
3
"""
4
5
-import os
6
import types
7
8
from jaraco.collections import Projection
@@ -29,12 +28,3 @@ def from_test_support(*names):
29
28
from test.support import os_helper # type: ignore
30
except ImportError:
31
os_helper = from_test_support('temp_dir')
32
-
33
34
-try:
35
- from test.support.os_helper import unlink
36
-except ImportError:
37
- from test.support import unlink as _unlink
38
39
- def unlink(target):
40
- return _unlink(os.fspath(target))
0 commit comments