• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(6)  |  Call(2)  |  Derive(0)  |  Import(4)
No Document.

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: