This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Anthony Sottile
Recipients Anthony Sottile, Mark.Shannon, domdfcoding, gvanrossum, pablogsal, vstinner
Date 2021-06-19.06:30:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
here is a minimal reproduction:

```python
def iterboom():
    raise AssertionError
    yield 1

next(1 for x in iterboom())
```

python 3.9:


```
$ python3.9 t.py
Traceback (most recent call last):
  File "/tmp/rinohtype/t.py", line 5, in <module>
    next(1 for x in iterboom())
  File "/tmp/rinohtype/t.py", line 5, in <genexpr>
    next(1 for x in iterboom())
  File "/tmp/rinohtype/t.py", line 2, in iterboom
    raise AssertionError
AssertionError
```

```
$ python3.10 t.py
Traceback (most recent call last):
  File "/tmp/rinohtype/t.py", line 5, in <module>
    next(1 for x in iterboom())
  File "/tmp/rinohtype/t.py", line -1, in <genexpr>
  File "/tmp/rinohtype/t.py", line 2, in iterboom
    raise AssertionError
AssertionError
```
History
Date User Action Args
2021-06-19 06:30:39Anthony Sottilesetrecipients: + Anthony Sottile, gvanrossum, vstinner, Mark.Shannon, pablogsal, domdfcoding
2021-06-19 06:30:39Anthony Sottilesetmessageid: <[email protected]>
2021-06-19 06:30:39Anthony Sottilelinkissue44297 messages
2021-06-19 06:30:39Anthony Sottilecreate