Remove jupyter-channels-running-p

This commit is contained in:
Nathaniel Nicandro 2020-09-11 09:52:31 -05:00
parent 2f87fe3ca9
commit a430f4f0e1
2 changed files with 0 additions and 6 deletions

View file

@ -499,10 +499,6 @@ back."
"Stop any running channels of CLIENT."
(jupyter-disconnect client))
(cl-defmethod jupyter-channels-running-p ((client jupyter-kernel-client))
"Are any channels of CLIENT running?"
(jupyter-alive-p client))
(cl-defmethod jupyter-alive-p ((client jupyter-kernel-client) &optional channel)
(when-let* ((kernel (jupyter-kernel client)))
(and (jupyter-alive-p kernel)

View file

@ -301,7 +301,6 @@
(progn
(should (jupyter-alive-p
(oref jupyter-current-client kernel)))
(should (jupyter-channels-running-p jupyter-current-client))
(should (equal (jupyter-eval "1 + 1") "2")))
(jupyter-test-kill-buffer (current-buffer))))))
@ -316,7 +315,6 @@
(progn
(should (jupyter-alive-p
(oref jupyter-current-client kernel)))
(should (jupyter-channels-running-p jupyter-current-client))
(should (equal (jupyter-eval "1 + 1") "2")))
(jupyter-test-kill-buffer (current-buffer)))))))