Automatic dependency tracking
In [10]:
%%isolate name(Init1)
a1 = 10
b1 = 20
c = 30
d = 90
In [11]:
%%isolate name(Init2)
d = 40
e = 50
In [12]:
%%isolate name(Process1)
print a1, d
In [13]:
%%isolate name(Process2)
print b1, c, e
In [14]:
g = %flowchart
In [15]:
i = %iso_debug
In [16]:
g
Out[16]:
In [17]:
%history
In [17]:
In [18]:
import IPython
ip = IPython.get_ipython()
ip.history_manager.input_hist_raw[28]
In [ ]: