From 1a2bc94fc2bbdf5f810b441ebbbd8fec95a3207c Mon Sep 17 00:00:00 2001 From: Bruce Eckel Date: Mon, 26 Jun 2023 08:30:20 -0700 Subject: Update test.support.interpreters to include missing RunFailedError import (#103841) Co-authored-by: Alex Waygood --- Lib/test/support/interpreters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ) -- cgit v0.12