New GitHub issue #92862 from asottile:<br>

<hr>

<pre>
**Bug report**

these are all allowed by the current grammar, but I would argue that they should not be, especially given the documentation refers to it as the `except*` keyword:

```python
try:
    ...
except * Exception:  # space before the `*`
    ...
except*Exception:  # no space at all
    ...
except *Exception:  # no space after
    ...
except      *      Exception:  # just for funsies
    ...
```

my proposal is that `except*` is only valid without whitespace before the star and with whitespace after the star

**Your environment**

- CPython versions tested on: 3.11.0b1
- Operating system and architecture: linux x86_64

</pre>

<hr>

<a href="https://github.com/python/cpython/issues/92862">View on GitHub</a>
<p>Labels: type-bug</p>
<p>Assignee: </p>