summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/tools.py
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2025-05-05 00:30:14 (GMT)
committerGitHub <noreply@github.com>2025-05-05 00:30:14 (GMT)
commit3f80165a26028e56f51f84dfe6663a31f8c169e2 (patch)
tree58d3015f0977ec80a5240725b04346fdf075547e /Lib/asyncio/tools.py
parent483d130e504f63aaf3afe8af3a37650edcdb07a3 (diff)
downloadcpython-3f80165a26028e56f51f84dfe6663a31f8c169e2.zip
cpython-3f80165a26028e56f51f84dfe6663a31f8c169e2.tar.gz
cpython-3f80165a26028e56f51f84dfe6663a31f8c169e2.tar.bz2
GH-91048: Minor fixes for ``_remotedebugging`` & rename to ``_remote_debugging`` (#133398)
Diffstat (limited to 'Lib/asyncio/tools.py')
-rw-r--r--Lib/asyncio/tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/tools.py b/Lib/asyncio/tools.py
index 6c1f725..dde755e 100644
--- a/Lib/asyncio/tools.py
+++ b/Lib/asyncio/tools.py
@@ -5,7 +5,7 @@ from collections import defaultdict
from itertools import count
from enum import Enum
import sys
-from _remotedebugging import get_all_awaited_by
+from _remote_debugging import get_all_awaited_by
class NodeType(Enum):