mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Use stdlib json, not zmq jsonapi
This commit is contained in:
parent
85ce34bc66
commit
ebf0ea32ef
@ -2,11 +2,9 @@
|
||||
|
||||
# Copyright (c) IPython Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
import json
|
||||
from tornado import web
|
||||
|
||||
from zmq.utils import jsonapi
|
||||
|
||||
from ...base.handlers import IPythonHandler, json_errors
|
||||
|
||||
|
||||
@ -24,7 +22,7 @@ class MainKernelSpecHandler(IPythonHandler):
|
||||
results.append(d)
|
||||
|
||||
self.set_header("Content-Type", 'application/json')
|
||||
self.finish(jsonapi.dumps(results))
|
||||
self.finish(json.dumps(results))
|
||||
|
||||
|
||||
class KernelSpecHandler(IPythonHandler):
|
||||
|
Loading…
x
Reference in New Issue
Block a user