Closed dlqqq closed 2 years ago
@Zsailer I'll need to bump the jupyter_events
version in Jupyter Server after this, right?
Thanks, @dlqqq. Great stuff!
Yes, we'll need to make a new release of jupyter_events and bump in jupyter_server.
I'll cut a release on Monday morning (I avoid releasing on Fridays to avoid possible hotfix scenarios on weekends 😅 ).
See #26.
safe_load(stream)
is really just invokingload(stream, Loader=SafeLoader)
, and similarly forsafe_dump(stream)
(see source). I've preserved the existing behavior of trying to use the (much faster) C implementation before the Python implementation.