##// END OF EJS Templates
IPython/Extensions/ipipe.py: Added a Table ihist that can be used to...
IPython/Extensions/ipipe.py: Added a Table ihist that can be used to browse the IPython input history. IPython/Extensions/ibrowse.py: Added two command to ibrowse: pickinput (mapped to "i") can be used to put the object under the curser in the input line. pickinputattr (mapped to "I") does the same for the attribute under the cursor.

File last commit:

r0:6f629fcc
r683:9df9cbe4
Show More
nbexample.py
11 lines | 268 B | text/x-python | PythonLexer
from notebook.markup import rest
rest.title('This is a Python Notebook')
rest.heading(1,'A first-level heading')
rest.text("""\
Some plain text, without any special formatting.
Below, we define a simple function to add two numbers.""")
def add(x,y):
return x+y