Single-line docstring. Multiline is harder to reformat.
(arg, exec=False)
| 17 | exec("new-style exec", {}, {}) |
| 18 | return None |
| 19 | async def coroutine(arg, exec=False): |
| 20 | "Single-line docstring. Multiline is harder to reformat." |
| 21 | async with some_connection() as conn: |
| 22 | await conn.do_what_i_mean('SELECT bobby, tables FROM xkcd', timeout=2) |
| 23 | await asyncio.sleep(1) |
| 24 | @asyncio.coroutine |
| 25 | @some_decorator( |
| 26 | with_args=True, |
nothing calls this directly
no outgoing calls
no test coverage detected