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

Function read

Lib/test/support/asyncore.py:87–93  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

85_reraised_exceptions = (ExitNow, KeyboardInterrupt, SystemExit)
86
87def read(obj):
88 try:
89 obj.handle_read_event()
90 except _reraised_exceptions:
91 raise
92 except:
93 obj.handle_error()
94
95def write(obj):
96 try:

Callers 1

pollFunction · 0.70

Calls 2

handle_read_eventMethod · 0.45
handle_errorMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…