Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么会这样:
>>> import greenlet >>> greenlet.getcurrent() <greenlet.greenlet object at 0x02244030>
我还没有开始任何 greenlets,那么 getcurrent() 返回的是什么?导入包时是否有“默认greenlet”运行?或者这只是我当前程序堆栈的“greenlet 表示”。
它返回“主greenlet”,它实际上只是任何其他显式greenlet 之外的主程序的表示。