摘要: Session操作 阅读全文
posted @ 2017-05-03 17:55 Erick-LONG 阅读(2486) 评论(0) 推荐(0) 编辑
摘要: 1 """A very simple co-routine scheduler. 2 Note: this is written to favour simple code over performance. 3 """ 4 from types import coroutine 5 6 7 @coroutine 8 def switch(): 9 yield 10... 阅读全文
posted @ 2017-05-03 11:11 Erick-LONG 阅读(203) 评论(0) 推荐(0) 编辑