Description Usage Arguments Value Author(s) References Examples
View source: R/is_complete_request.R
Handler for the is_complete_request Message Type
1 | is_complete_request(request_msg)
|
request_msg |
A list passed in from |
A list having names msg_type
and content
. The
msg_type
is is_complete_reply
, which corresponds
to the is_complete_request
message. The content
field
complies with the Jupyter wire message protocol specification
for is_complete_reply
messages.
Spencer Aiello
http://jupyter-client.readthedocs.io/en/latest/messaging.html#code-completeness
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
request_msg <- list(code="print(") 'incomplete'
is_complete_request(request_msg)
## End(Not run)
## Not run:
request_msg <- list(code="print(5)") # 'complete'
is_complete_request(request_msg)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.