Pregunta

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.

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top