##// END OF EJS Templates
Updated the multiengine and task interface documentation....
Updated the multiengine and task interface documentation. The multiengine interface documentation is in very good condition. The task interface documentation is in OK condition. The main problem is that the task documentation had fallen very out of date. Rather than trying to update all of it, I moved the old task documentation to a file (docs/source/parallel/parallel_task_old.txt) and started a new shorter task documentation that is fully up to date. This should get user's started with the new stuff. But, we do need to write more complete task interface docs.

File last commit:

r1248:19e3b286
r1678:75e7964c
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