Skip to content

Commit bcc35ee

Browse files
Add isolated() and running_isolated to test.support.__all__
Fixes the ruff F401 "imported but unused" lint failure for the re-exports. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 2d5b380 commit bcc35ee

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Lib/test/support/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
__all__ = [
2525
# globals
2626
"PIPE_MAX_SIZE", "verbose", "max_memuse", "use_resources", "failfast",
27+
"running_isolated",
2728
# exceptions
2829
"Error", "TestFailed", "TestDidNotRun", "ResourceDenied",
2930
# io
@@ -36,6 +37,7 @@
3637
"check_syntax_error",
3738
"requires_gzip", "requires_bz2", "requires_lzma", "requires_zstd",
3839
"bigmemtest", "nomemtest", "bigaddrspacetest", "cpython_only", "get_attribute",
40+
"isolated",
3941
"requires_IEEE_754", "requires_zlib",
4042
"has_fork_support", "requires_fork",
4143
"has_subprocess_support", "requires_subprocess",

0 commit comments

Comments
 (0)