##// END OF EJS Templates
- fix bug where aliases would shadow variables when autocall was fully off....
- fix bug where aliases would shadow variables when autocall was fully off. - add a flag to controlat what detail level strings are computed when foo? is requested. Both after problems reported by SAGE

File last commit:

r0:6f629fcc
r299:9ccbf202
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