()
| 80 | |
| 81 | @fast(really=True) |
| 82 | async def wat(): |
| 83 | # This comment, for some reason \ |
| 84 | # contains a trailing backslash. |
| 85 | async with X.open_async() as x: # Some more comments |
| 86 | result = await x.method1() |
| 87 | # Comment after ending a block. |
| 88 | if result: |
| 89 | print("A OK", file=sys.stdout) |
| 90 | # Comment between things. |
| 91 | print() |
| 92 | |
| 93 | |
| 94 | # Some closing comments. |
nothing calls this directly
no outgoing calls
no test coverage detected