src/z/a/zamboni-lib-HEAD/lib/python/IPython/kernel/taskfc.py zamboni-lib(Download)
def remote_run(self, ptask):
try:
task = pickle.loads(ptask)
task.uncan_task()
except:
d = defer.fail(pickle.UnpickleableError("Could not unmarshal task"))
else:
src/i/p/ipython-0.10/IPython/kernel/taskfc.py ipython(Download)
def remote_run(self, ptask):
try:
task = pickle.loads(ptask)
task.uncan_task()
except:
d = defer.fail(pickle.UnpickleableError("Could not unmarshal task"))
else: