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.

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top