Remove stale documentation

This commit is contained in:
Nathaniel Nicandro 2021-02-19 21:51:29 -06:00
parent a69242eda9
commit c74da6bd94

View file

@ -620,24 +620,6 @@ CLIENT. MSG is a message property list and is the Jupyter
message being handled.")
(cl-defmethod jupyter-handle-message ((client jupyter-kernel-client) channel msg)
"Run callbacks and handler method for MSG.
Before any handling of MSG takes place, update CLIENT's execution
status slots (execution-state, execution-count) based on MSG, let
bind `jupyter-current-client' to CLIENT, and, when there is a
`jupyter-request' sent by CLIENT associated with the
`jupyter-message-parent-id' of MSG, set the
`jupyter-request-last-message' of the request to MSG.
CLIENT may not have sent the request that generated MSG, e.g. if
MSG is an :execute-input request broadcasted to :iopub and not
sent by CLIENT. In this case, a message handler method is run,
without running any message callbacks, only if
`jupyter-include-other-output' is non-nil for CLIENT.
When MSG has an associated request generated by CLIENT, run the
`jupyter-request-callbacks', if any, for the message before
attempting to run the message handler. Then remove old,
completed, requests from CLIENT's request table."
(when msg
(let ((jupyter-current-client client)
(req (plist-get msg :parent-request)))