fix
All checks were successful
Deploy Prod / Build (pull_request) Successful in 9s
Deploy Prod / Push (pull_request) Successful in 12s
Deploy Prod / Deploy prod (pull_request) Successful in 10s

This commit is contained in:
Egor Matveev
2024-12-28 22:48:16 +03:00
parent c1249bfcd0
commit 6c6a549aff
2532 changed files with 562109 additions and 1 deletions

View File

@@ -0,0 +1,50 @@
# flake8: noqa
import contextlib
import builtins
import sys
from test.support import requires_zlib
import test.support
ModuleNotFoundError = getattr(builtins, 'ModuleNotFoundError', ImportError)
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 (
rmtree,
EnvironmentVarGuard,
unlink,
skip_unless_symlink,
temp_dir,
)
except (ModuleNotFoundError, ImportError):
from test.support import (
rmtree,
EnvironmentVarGuard,
unlink,
skip_unless_symlink,
temp_dir,
)
try:
from test.support.import_helper import (
DirsOnSysPath,
CleanImport,
)
except (ModuleNotFoundError, ImportError):
from test.support import (
DirsOnSysPath,
CleanImport,
)
if sys.version_info < (3, 9):
requires_zlib = lambda: test.support.requires_zlib