ipython / ipython/ipykernel

Embedding Example Bug?

未關閉
#440 0 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視
主要語言
Python
星號
734
分支
412
平均合併
1 天 5 小時
30 天內合併 PR
8

描述

https://github.com/ipython/ipykernel/blob/master/examples/embedding/internal_ipkernel.py
```python
class InternalIPKernel(object):

def init_ipkernel(self, backend):
# Start IPython kernel with GUI event loop and mpl support
self.ipkernel = mpl_kernel(backend)
# To create and track active qt consoles
self.consoles = []

# This application will also act on the shell user namespace
self.namespace = self.ipkernel.shell.user_ns

# Example: a variable that will be seen by the user in the shell, and
# that the GUI modifies (the 'Counter++' button increments it):
self.namespace['app_counter'] = 0
#self.namespace['ipkernel'] = self.ipkernel # dbg

def print_namespace(self, evt=None):
print("\n***Variables in User namespace***")
for k, v in self.namespace.items():
if not k.startswith('_'):
print('%s -> %r' % (k, v))
sys.stdout.flush()

def new_qt_console(self, evt=None):
"""start a new qtconsole connected to our kernel"""
return connect_qtconsole(self.ipkernel.abs_connection_file, profile=self.ipkernel.profile)

def count(self, evt=None):
self.namespace['app_counter'] += 1

def cleanup_consoles(self, evt=None):
for c in self.consoles:
c.kill()
```
`self.consoles` is not appended anywhere in the class, so the cleanup will just be a no-op.

貢獻指南

開啟貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。