Reapply `.devx.debug` mod-name change to ipc-server lost during rebase..

repl_fixture
Tyler Goodlet 2025-06-11 22:09:04 -04:00
parent 64f56e09b9
commit 7b05547fcc
1 changed files with 5 additions and 5 deletions

View File

@ -43,7 +43,7 @@ from trio import (
SocketListener, SocketListener,
) )
# from ..devx import _debug # from ..devx import debug
from .._exceptions import ( from .._exceptions import (
TransportClosed, TransportClosed,
) )
@ -318,7 +318,7 @@ async def handle_stream_from_peer(
server._no_more_peers = trio.Event() # unset by making new server._no_more_peers = trio.Event() # unset by making new
# TODO, debug_mode tooling for when hackin this lower layer? # TODO, debug_mode tooling for when hackin this lower layer?
# with _debug.maybe_open_crash_handler( # with debug.maybe_open_crash_handler(
# pdb=True, # pdb=True,
# ) as boxerr: # ) as boxerr:
@ -504,8 +504,8 @@ async def handle_stream_from_peer(
and and
_state.is_debug_mode() _state.is_debug_mode()
): ):
from ..devx import _debug from ..devx import debug
pdb_lock = _debug.Lock pdb_lock = debug.Lock
pdb_lock._blocked.add(uid) pdb_lock._blocked.add(uid)
# TODO: NEEEDS TO BE TESTED! # TODO: NEEEDS TO BE TESTED!
@ -540,7 +540,7 @@ async def handle_stream_from_peer(
f'last disconnected child uid: {uid}\n' f'last disconnected child uid: {uid}\n'
f'locking child uid: {pdb_user_uid}\n' f'locking child uid: {pdb_user_uid}\n'
) )
await _debug.maybe_wait_for_debugger( await debug.maybe_wait_for_debugger(
child_in_debug=True child_in_debug=True
) )