```python def one(): yield (1, 2) ``` turns into ```python def one(): yield(1, 2) ``` same with `await xyz()` turns into `awaitxyz()` same with `assert xyz()` turns into `assertxyz()`