```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()`
turns into
same with
await xyz()turns intoawaitxyz()same with
assert xyz()turns intoassertxyz()