MCPcopy Index your code
hub / github.com/python/cpython / _process_self_data

Method _process_self_data

Lib/asyncio/unix_events.py:83–88  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

81 self._signal_handlers.clear()
82
83 def _process_self_data(self, data):
84 for signum in data:
85 if not signum:
86 # ignore null bytes written by _write_to_self()
87 continue
88 self._handle_signal(signum)
89
90 def add_signal_handler(self, sig, callback, *args):
91 """Add a handler for a signal. UNIX only.

Callers

nothing calls this directly

Calls 1

_handle_signalMethod · 0.95

Tested by

no test coverage detected