From: Bruce Eckel Date: Mon, 26 Jun 2023 15:30:20 +0000 (-0700) Subject: Update test.support.interpreters to include missing RunFailedError import (#103841) X-Git-Tag: v3.13.0a1~1640 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c;p=thirdparty%2FPython%2Fcpython.git Update test.support.interpreters to include missing RunFailedError import (#103841) Co-authored-by: Alex Waygood --- diff --git a/Lib/test/support/interpreters.py b/Lib/test/support/interpreters.py index eeff3abe0324..5c484d1170d1 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, )