summaryrefslogtreecommitdiff
path: root/setuptools/_distutils/tests/py38compat.py
blob: 46ff575892bffcc3ef3bda8c387154e40a08c251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# flake8: noqa

import contextlib

try:
    from test.support.warnings_helper import check_warnings
except (ModuleNotFoundError, ImportError):
    from test.support import check_warnings


try:
    from test.support.os_helper import (
        change_cwd,
        rmtree,
        EnvironmentVarGuard,
        TESTFN,
        unlink,
        skip_unless_symlink,
        temp_dir,
        create_empty_file,
        temp_cwd,
    )
except (ModuleNotFoundError, ImportError):
    from test.support import (
        change_cwd,
        rmtree,
        EnvironmentVarGuard,
        TESTFN,
        unlink,
        skip_unless_symlink,
        temp_dir,
        create_empty_file,
        temp_cwd,
    )


# From Python 3.9
@contextlib.contextmanager
def _save_restore_warnings_filters():
    old_filters = warnings.filters[:]
    try:
        yield
    finally:
        warnings.filters[:] = old_filters


try:
    from test.support.warnings_helper import save_restore_warnings_filters
except (ModuleNotFoundError, ImportError):
    save_restore_warnings_filters = _save_restore_warnings_filters