Skip to content

Commit

Permalink
Updated debug_info_response (#657)
Browse files Browse the repository at this point in the history
* Updated debug_info_response

* Ignore dateutil types

* Update docs/messaging.rst

Co-authored-by: David Brochart <david.brochart@gmail.com>

Co-authored-by: David Brochart <david.brochart@gmail.com>
  • Loading branch information
JohanMabille and davidbrochart authored Jun 10, 2021
1 parent afc5b38 commit 3732015
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/messaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,9 @@ In order to support page reloading, or a client connecting at a later stage, Jup
'breakpoints' : list(source_breakpoints) # list of breakpoints for that source file
}
],
'stoppedThreads': list(int), # threads in which the debugger is currently in a stopped state
'stoppedThreads' : list(int), # threads in which the debugger is currently in a stopped state
'richRendering' : bool, # whether the debugger supports rich rendering of variables
'exceptionPaths' : list(str), # exception names used to match leaves or nodes in a tree of exception
}
}

Expand Down
4 changes: 2 additions & 2 deletions jupyter_client/jsonutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from typing import Optional
from typing import Union

from dateutil.parser import parse as _dateutil_parse
from dateutil.tz import tzlocal
from dateutil.parser import parse as _dateutil_parse # type: ignore
from dateutil.tz import tzlocal # type: ignore

next_attr_name = "__next__" # Not sure what downstream library uses this, but left it to be safe

Expand Down

0 comments on commit 3732015

Please sign in to comment.