[issue46409] Add a new bytecode instruction to create generators

2022-01-22 Thread Nikita Sobolev
Change by Nikita Sobolev : -- nosy: +sobolevn nosy_count: 1.0 -> 2.0 pull_requests: +28991 pull_request: https://github.com/python/cpython/pull/30780 ___ Python tracker ___ ___

[issue46409] Add a new bytecode instruction to create generators

2022-01-20 Thread Mark Shannon
Change by Mark Shannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue46409] Add a new bytecode instruction to create generators

2022-01-20 Thread Mark Shannon
Mark Shannon added the comment: New changeset b04dfbbe4bd7071d46c8688c2263726ea31d33cd by Mark Shannon in branch 'main': bpo-46409: Make generators in bytecode (GH-30633) https://github.com/python/cpython/commit/b04dfbbe4bd7071d46c8688c2263726ea31d33cd -- __

[issue46409] Add a new bytecode instruction to create generators

2022-01-17 Thread Mark Shannon
Change by Mark Shannon : -- keywords: +patch pull_requests: +28836 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30633 ___ Python tracker ___ ___

[issue46409] Add a new bytecode instruction to create generators

2022-01-17 Thread Mark Shannon
New submission from Mark Shannon : (including coroutines, and async generators) We now make the start and resumption of Python functions explicit in the bytecode which allows us to initialize frames in the bytecode without exposing incomplete frames tracing, the GC etc. However, we still expo