You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In GH-142394, the upstream structures from _remote_debugging were changed, but the reimplementations in the tests were not updated to match. This caused a regression from GH-143952 to sneak in.
Let's use structures from _remote_debugging directly, as it is currently done in test_external_inspection, to prevent any further unnoticed discrepancies.
The asyncio tools use structures from the
_remote_debuggingmodule.In tests we currently reimplement these structures:
cpython/Lib/test/test_asyncio/test_tools.py
Lines 7 to 11 in 1b52ce8
In GH-142394, the upstream structures from
_remote_debuggingwere changed, but the reimplementations in the tests were not updated to match. This caused a regression from GH-143952 to sneak in.Let's use structures from
_remote_debuggingdirectly, as it is currently done intest_external_inspection, to prevent any further unnoticed discrepancies.cc @pablogsal
Linked PRs