def set_then_handler(self, then_handler):
"""
Set the then handler for this promise. When the prev promise resolves,
the then handler will be called with the result.
"""
# Pickle the function and save it
self.then_dill = dill.dumps(then_handler)
评论列表
文章目录