(self)
| 268 | ) |
| 269 | |
| 270 | def test_autoawait(self): |
| 271 | iprc("%autoawait False") |
| 272 | iprc("%autoawait True") |
| 273 | iprc(""" |
| 274 | from asyncio import sleep |
| 275 | await sleep(0.1) |
| 276 | """ |
| 277 | ) |
| 278 | |
| 279 | if sys.version_info < (3,9): |
| 280 | # new pgen parser in 3.9 does not raise MemoryError on too many nested |
nothing calls this directly
no outgoing calls
no test coverage detected