[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1c5c9c89ffc36875afaf4c3cc6a716d4bd089bbf by Łukasz Langa in branch '3.9': [3.9] bpo-44566: resolve differences between asynccontextmanager and contextmanager (GH-27024). (#27269)

[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 68b4690b010d0006e9b0235903afd367191f3c51 by Miss Islington (bot) in branch '3.10': bpo-44566: resolve differences between asynccontextmanager and contextmanager (GH-27024) (#27266)

[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-20 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +25813 pull_request: https://github.com/python/cpython/pull/27269 ___ Python tracker ___

[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +25810 pull_request: https://github.com/python/cpython/pull/27266 ___ Python tracker

[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 7f1c330da31c54e028dceaf3610877914c2a4497 by Thomas Grainger in branch 'main': bpo-44566: resolve differences between asynccontextmanager and contextmanager (#27024) https://github.com/python/cpython/commit/7f1c330da31c54e028dceaf3610877914c2a4497

[issue44566] StopIteration subclass suppressed by contextlib.contextmanager

2021-07-05 Thread Raymond Hettinger
Change by Raymond Hettinger : -- components: +Library (Lib) title: StopIteration subclass raised in body of 'with' statement suppressed -> StopIteration subclass suppressed by contextlib.contextmanager type: -> behavior versions: -Python 3.6, Python 3.7, Python 3.8