Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added debugger key in kernel_info_reply #486

Merged
merged 1 commit into from
Jul 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/messaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ Message type: ``kernel_info_reply``::
# Only needed if it differs from the 'name' field.
'pygments_lexer': str,

# Codemirror mode, for for highlighting in the notebook.
# Codemirror mode, for highlighting in the notebook.
# Only needed if it differs from the 'name' field.
'codemirror_mode': str or dict,

Expand All @@ -986,7 +986,11 @@ Message type: ``kernel_info_reply``::

# A banner of information about the kernel,
# which may be desplayed in console environments.
'banner' : str,
'banner': str,

# A boolean flag which tells if the kernel supports debugging in the notebook.
# Default is False
'debugger': bool,

# Optional: A list of dictionaries, each with keys 'text' and 'url'.
# These will be displayed in the help menu in the notebook UI.
Expand Down