##// END OF EJS Templates
Backport PR #4189: always fire LOCAL_IPS.extend(PUBLIC_IPS)...
Backport PR #4189: always fire LOCAL_IPS.extend(PUBLIC_IPS) was in `else`, but should have been `finally` so it aways runs. Symptom was warnings in parallel.client about `127.0.1.1` not being this machine. backport to 1.1

File last commit:

r4406:0251893c
r12479:0a95c2e7
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
))