Elvis Pranskevichus wrote:
By default, generators reference an empty LogicalContext object that is allocated once (like the None object). We can do that because LCs are immutable.

Ah, I see. That wasn't clear from the implementation, where

    gen.__logical_context__ = contextvars.LogicalContext()

looks like it's creating a new one.

However, there's another thing: it looks like every
time a generator is resumed/suspended, an execution
context node is created/discarded.

--
Greg
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to