[Python-checkins] Update test.support.interpreters to include missing RunFailedError import (#103841)

ambv webhook-mailer at python.org
Mon Jun 26 11:30:23 EDT 2023


https://github.com/python/cpython/commit/1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c
commit: 1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c
branch: main
author: Bruce Eckel <BruceTEckel at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2023-06-26T17:30:20+02:00
summary:

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

Co-authored-by: Alex Waygood <Alex.Waygood at Gmail.com>

files:
M Lib/test/support/interpreters.py

diff --git a/Lib/test/support/interpreters.py b/Lib/test/support/interpreters.py
index eeff3abe0324e..5c484d1170d1d 100644
--- a/Lib/test/support/interpreters.py
+++ b/Lib/test/support/interpreters.py
@@ -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,
 )



More information about the Python-checkins mailing list