##// END OF EJS Templates
cleanup boundaries of MultiKernelManager and KernelRestarter classes...
cleanup boundaries of MultiKernelManager and KernelRestarter classes - MultiKernelManager no longer has IOLoop affiliations - move connect_[channel] method to base KernelManager - connect_[channel] wraps in ZMQStream in IOLoopKM subclass - add KernelRestarter base class - use decorators to minimize code in wrapped KM methods

File last commit:

r4406:0251893c
r10295:42734e89
Show More
nbexamples.py
29 lines | 435 B | text/x-python | PythonLexer
from ..nbbase import (
NotebookNode,
new_code_cell, new_text_cell, new_notebook
)
nb0 = new_notebook()
nb0.cells.append(new_text_cell(
text='Some NumPy Examples'
))
nb0.cells.append(new_code_cell(
code='import numpy',
prompt_number=1
))
nb0.cells.append(new_code_cell(
code='a = numpy.random.rand(100)',
prompt_number=2
))
nb0.cells.append(new_code_cell(
code='print a',
prompt_number=3
))