##// END OF EJS Templates
Let the auto pylab backend detection work....
Let the auto pylab backend detection work. The kernel knows how to find the user's backend choice, so if no backend is explicitly given, read it from the matplotlibrc file.

File last commit:

r1396:ee81bbeb
r2978:f52feb29
Show More
task1.py
17 lines | 359 B | text/x-python | PythonLexer
Brian E Granger
Fixed most of the examples. A few still don't work, but this is a start.
r1338 from IPython.kernel import client
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337
tc = client.TaskClient()
rc = client.MultiEngineClient()
rc.push(dict(d=30))
cmd1 = """\
a = 5
b = 10*d
c = a*b*d
"""
Brian E Granger
The refactoring of the Task system is nearly complete. Now there are...
r1395 t1 = client.StringTask(cmd1, clear_before=False, clear_after=True, pull=['a','b','c'])
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337 tid1 = tc.run(t1)
tr1 = tc.get_task_result(tid1,block=True)
Brian E Granger
Fixing more tests and examples after the task, map and @parallel work.
r1396 tr1.raise_exception()
Brian E Granger
Adding examples from ipython1-dev to docs/examples/kernel. These ...
r1337 print "a, b: ", tr1.ns.a, tr1.ns.b