Question

Why does this work:

>>> import greenlet
>>> greenlet.getcurrent()
<greenlet.greenlet object at 0x02244030>

I haven't started any greenlets yet, so what is getcurrent() returning? Is there a 'default greenlet' that gets run when I import the package? Or is this just the 'greenlet representation' of my current program stack.

Était-ce utile?

La solution

It returns the "main greenlet", which indeed is just a representation of the main program outside any other explicit greenlet.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top