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

Method _check_closed

Lib/asyncio/base_events.py:553–555  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

551 raise NotImplementedError
552
553 def _check_closed(self):
554 if self._closed:
555 raise RuntimeError('Event loop is closed')
556
557 def _check_default_executor(self):
558 if self._executor_shutdown_called:

Callers 10

create_taskMethod · 0.95
_run_forever_setupMethod · 0.95
run_until_completeMethod · 0.95
call_atMethod · 0.95
call_soonMethod · 0.95
call_soon_threadsafeMethod · 0.95
run_in_executorMethod · 0.95
_add_readerMethod · 0.45
_add_writerMethod · 0.45
add_signal_handlerMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected