diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2025-05-05 00:30:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-05 00:30:14 (GMT) |
commit | 3f80165a26028e56f51f84dfe6663a31f8c169e2 (patch) | |
tree | 58d3015f0977ec80a5240725b04346fdf075547e /Lib/asyncio/tools.py | |
parent | 483d130e504f63aaf3afe8af3a37650edcdb07a3 (diff) | |
download | cpython-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.py | 2 |
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): |