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

ambv webhook-mailer at python.org
Mon Jun 26 12:11:52 EDT 2023


https://github.com/python/cpython/commit/e923971c6d99c67d80265be95dabe491327b3244
commit: e923971c6d99c67d80265be95dabe491327b3244
branch: 3.12
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2023-06-26T18:11:48+02:00
summary:

[3.12] Update test.support.interpreters to include missing RunFailedError import (GH-103841) (#106110)

(cherry picked from commit 1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c)

Co-authored-by: Bruce Eckel <BruceTEckel at gmail.com>
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