(self)
| 280 | # new pgen parser in 3.9 does not raise MemoryError on too many nested |
| 281 | # parens anymore |
| 282 | def test_memory_error(self): |
| 283 | with self.assertRaises(MemoryError): |
| 284 | iprc("(" * 200 + ")" * 200) |
| 285 | |
| 286 | @skip_without('curio') |
| 287 | def test_autoawait_curio(self): |
nothing calls this directly
no outgoing calls
no test coverage detected