10000 Update test.support.interpreters to include missing RunFailedError import by BruceEckel · Pull Request #103841 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Update test.support.interpreters to include missing RunFailedError import #103841

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
< BC3D div class="js-split-diff-view">
Diff view
2 changes: 1 addition & 1 deletion Lib/test/support/interpreters.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import _xxinterpchannels as _channels

# aliases:
from _xxsubinterpreters import is_shareable
from _xxsubinterpreters import is_shareable, RunFailedError
from _xxinterpchannels import (
ChannelError, ChannelNotFoundError, ChannelEmptyError,
)
Expand Down
0