diff options
author | Bruce Eckel <BruceTEckel@gmail.com> | 2023-06-26 15:30:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 15:30:20 (GMT) |
commit | 1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c (patch) | |
tree | a326aa28bdac4c5f3b98ffe6a6d1628658316e1e /Lib | |
parent | e8e59ee474869e7c02e7cae3815c9c2183671b21 (diff) | |
download | cpython-1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c.zip cpython-1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c.tar.gz cpython-1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c.tar.bz2 |
Update test.support.interpreters to include missing RunFailedError import (#103841)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/support/interpreters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/interpreters.py b/Lib/test/support/interpreters.py index eeff3ab..5c484d1 100644 --- a/Lib/test/support/interpreters.py +++ b/Lib/test/support/interpreters.py @@ -5,7 +5,7 @@ import _xxsubinterpreters as _interpreters import _xxinterpchannels as _channels # aliases: -from _xxsubinterpreters import is_shareable +from _xxsubinterpreters import is_shareable, RunFailedError from _xxinterpchannels import ( ChannelError, ChannelNotFoundError, ChannelEmptyError, ) |