8000 GH-91048: Minor fixes for ``_remotedebugging`` & rename to ``_remote_debugging`` by AA-Turner · Pull Request #133398 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-91048: Minor fixes for _remotedebugging & rename to _remote_debugging #133398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 5, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Minor fixes after renaming to _remotedebugging
  • Loading branch information
AA-Turner committed May 4, 2025
commit 794075fd01f1a0a90675beba42db3390f1f7cf1e
2 changes: 1 addition & 1 deletion Lib/test/test_external_inspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from _remotedebugging import get_all_awaited_by
except ImportError:
raise unittest.SkipTest(
"Test only runs when _remotedebuggingmodule is available")
"Test only runs when _remotedebugging is available")

def _make_test_script(script_dir, script_basename, source):
to_return = make_script(script_dir, script_basename, source)
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_sys.py
Original file line number Diff line number Diff line change
Expand Up @@ -1960,7 +1960,7 @@ def _supports_remote_attaching():
PROCESS_VM_READV_SUPPORTED = False

try:
from _remotedebuggingmodule import PROCESS_VM_READV_SUPPORTED
from _remotedebugging import PROCESS_VM_READV_SUPPORTED
except ImportError:
pass

Expand Down
1 change: 0 additions & 1 deletion Tools/build/generate_stdlib_module_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
'_testlimitedcapi',
'_testmultiphase',
'_testsinglephase',
'_remotedebugging',
'_xxtestfuzz',
'idlelib.idle_test',
'test',
Expand Down
0