aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/support/interpreters/queues.py
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2024-04-24 10:18:24 -0600
committerGitHub <noreply@github.com>2024-04-24 16:18:24 +0000
commit03e3e317231d67557191ee067cb7f192f3d4d092 (patch)
tree613288cb7be97b91ef960d68dcccd2ac741d451c /Lib/test/support/interpreters/queues.py
parentaf3c1d817d3f8369f8003965d967332a3a721a25 (diff)
downloadcpython-03e3e317231d67557191ee067cb7f192f3d4d092.tar.gz
cpython-03e3e317231d67557191ee067cb7f192f3d4d092.zip
gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)
See https://discuss.python.org/t/pep-734-multiple-interpreters-in-the-stdlib/41147/26.
Diffstat (limited to 'Lib/test/support/interpreters/queues.py')
-rw-r--r--Lib/test/support/interpreters/queues.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support/interpreters/queues.py b/Lib/test/support/interpreters/queues.py
index 5849a1cc15e..1b9e7481f2e 100644
--- a/Lib/test/support/interpreters/queues.py
+++ b/Lib/test/support/interpreters/queues.py
@@ -4,10 +4,10 @@ import pickle
import queue
import time
import weakref
-import _xxinterpqueues as _queues
+import _interpqueues as _queues
# aliases:
-from _xxinterpqueues import (
+from _interpqueues import (
QueueError, QueueNotFoundError,
)