[issue46009] sending non-None values makes generator raise StopIteration on next access

2022-01-05 Thread Christian Heimes
Christian Heimes added the comment: False alarm ... the frozen files for getpath.py were out of date. I can no longer reproduce the issue after a hard git clean and rebuild. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed

[issue46009] sending non-None values makes generator raise StopIteration on next access

2022-01-05 Thread Christian Heimes
Change by Christian Heimes : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46009] sending non-None values makes generator raise StopIteration on next access

2022-01-05 Thread Christian Heimes
Christian Heimes added the comment: I got more debug symbols: python.js:235 Uncaught RuntimeError: null function or function signature mismatch at _PyEval_EvalFrameDefault (ceval.c:4247) at _PyEval_EvalFrame (pycore_ceval.h:48) at gen_send_ex2 (genobject.c:219) at

[issue46009] sending non-None values makes generator raise StopIteration on next access

2022-01-05 Thread Christian Heimes
Christian Heimes added the comment: GH-30367 broke Emscripten WASM builds. I'm getting a "null function or function signature mismatch" error from the WASM engine: RuntimeError: null function or function signature mismatch at _PyEval_EvalFrameDefault

[issue46009] sending non-None values makes generator raise StopIteration on next access

2022-01-04 Thread Brandt Bucher
Brandt Bucher added the comment: New changeset 31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 by Brandt Bucher in branch 'main': bpo-46009: Remove GEN_START (GH-30367) https://github.com/python/cpython/commit/31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 --

[issue46009] sending non-None values makes generator raise StopIteration on next access

2022-01-03 Thread Brandt Bucher
Change by Brandt Bucher : -- nosy: +brandtbucher nosy_count: 3.0 -> 4.0 pull_requests: +28580 pull_request: https://github.com/python/cpython/pull/30367 ___ Python tracker ___

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-08 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-08 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 99c72326d245fb604609a87a51ef1ad0845467b7 by Mark Shannon in branch '3.10': [3.10] bpo-46009: Do not exhaust generator when send() method raises (GH-29986). (GH-29988)

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-08 Thread Mark Shannon
Change by Mark Shannon : -- pull_requests: +28211 pull_request: https://github.com/python/cpython/pull/29988 ___ Python tracker ___

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-08 Thread Mark Shannon
Mark Shannon added the comment: New changeset 69806b9516dbe092381f3ef884c7c64bb9b8414a by Mark Shannon in branch 'main': bpo-46009: Do not exhaust generator when send() method raises (GH-29986) https://github.com/python/cpython/commit/69806b9516dbe092381f3ef884c7c64bb9b8414a --

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-08 Thread Mark Shannon
Change by Mark Shannon : -- keywords: +patch pull_requests: +28209 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29986 ___ Python tracker ___

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal priority: normal -> release blocker ___ Python tracker ___ ___

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46009] sending non-None values makes generator raise StopIteration on next access

2021-12-07 Thread Stanislav Syekirin
New submission from Stanislav Syekirin : Tested with Python 3.10.1 on Linux and Python 3.10.0 on Windows. The following code prints None in 3.9 and raises StopIteration without any additional information in 3.10: def f(): yield x = f() try: x.send(0)