Issue 27168: Comprehensions and await need more unittests (original) (raw)

Issue27168

Created on 2016-05-31 18:06 by njs, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg266763 - (view) Author: Nathaniel Smith (njs) * (Python committer) Date: 2016-05-31 18:06
So he asked me to file a bug reminding him to write more unit tests. Interesting cases: async def f(): return (x for x in await g()) async def f(): return (await x for x in g()) (and ditto for [], {} comprehensions)
msg278163 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-10-05 23:46
Closing this one. We added a lot of tests as part of the PEP 530 implementation.
History
Date User Action Args
2022-04-11 14:58:31 admin set github: 71355
2016-10-05 23:46:50 yselivanov set status: open -> closedresolution: fixedmessages: + stage: resolved
2016-06-06 05:59:11 SilentGhost set type: behaviorcomponents: + Teststitle: Yury isn't sure comprehensions and await interact correctly -> Comprehensions and await need more unittests
2016-06-05 17:53:08 ned.deily set assignee: yselivanov
2016-05-31 18:06:54 njs create