Skip to content

Commit 794075f

Browse files
committed
Minor fixes after renaming to _remotedebugging
1 parent d8c118f commit 794075f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Lib/test/test_external_inspection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from _remotedebugging import get_all_awaited_by
2121
except ImportError:
2222
raise unittest.SkipTest(
23-
"Test only runs when _remotedebuggingmodule is available")
23+
"Test only runs when _remotedebugging is available")
2424

2525
def _make_test_script(script_dir, script_basename, source):
2626
to_return = make_script(script_dir, script_basename, source)

Lib/test/test_sys.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1960,7 +1960,7 @@ def _supports_remote_attaching():
19601960
PROCESS_VM_READV_SUPPORTED = False
19611961

19621962
try:
1963-
from _remotedebuggingmodule import PROCESS_VM_READV_SUPPORTED
1963+
from _remotedebugging import PROCESS_VM_READV_SUPPORTED
19641964
except ImportError:
19651965
pass
19661966

Tools/build/generate_stdlib_module_names.py

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
'_testlimitedcapi',
3535
'_testmultiphase',
3636
'_testsinglephase',
37-
'_remotedebugging',
3837
'_xxtestfuzz',
3938
'idlelib.idle_test',
4039
'test',

0 commit comments

Comments
 (0)