(self, *args)
| 1213 | return self |
| 1214 | |
| 1215 | async def __aexit__(self, *args): |
| 1216 | await AsyncYieldFrom(['exit-1-' + self.name, |
| 1217 | 'exit-2-' + self.name]) |
| 1218 | |
| 1219 | if self.name == 'B': |
| 1220 | return True |
| 1221 | |
| 1222 | |
| 1223 | async def foo(): |
nothing calls this directly
no test coverage detected