On 05/01, Guido van Rossum wrote:
> On Fri, May 1, 2015 at 11:26 AM, Jim J. Jewett <jimjjew...@gmail.com> wrote:

>> So does this mean that yield should NOT be used just to yield control
>> if a task isn't blocked?  (e.g., if its next step is likely to be
>> long, or low priority.)  Or even that it wouldn't be considered a
>> co-routine in the python sense?
>>
> 
> I'm not sure what you're talking about. Does "next step" refer to something
> in the current stack frame or something that you're calling? None of the
> current uses of "yield" (the keyword) in Python are good for lowering
> priority of something. It's not just the GIL, it's that coroutines (by
> whatever name) are still single-threaded. If you have something
> long-running CPU-intensive you should probably run it in a background
> thread (or process) e.g. using an executor.

So when a generator is used as an iterator, yield and yield from are used
to produce the actual working values...

But when a generator is used as a coroutine, yield (and yield from?) are
used to provide context about when they should be run again?

--
~Ethan~
_______________________________________________
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