MCPcopy Create free account
hub / github.com/EasyIME/PIME / get_fd_error

Method get_fd_error

python/python3/tornado/iostream.py:319–327  ·  view source on GitHub ↗

Returns information about any error on the underlying file. This method is called after the `.IOLoop` has signaled an error on the file descriptor, and should return an Exception (such as `socket.error` with additional information, or None if no such information is a

(self)

Source from the content-addressed store, hash-verified

317 raise NotImplementedError()
318
319 def get_fd_error(self) -> Optional[Exception]:
320 """Returns information about any error on the underlying file.
321
322 This method is called after the `.IOLoop` has signaled an error on the
323 file descriptor, and should return an Exception (such as `socket.error`
324 with additional information, or None if no such information is
325 available.
326 """
327 return None
328
329 def read_until_regex(
330 self, regex: bytes, max_bytes: Optional[int] = None

Callers 1

_handle_eventsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected