New GitHub issue #122221 from zerserob:<br>
<hr>
<pre>
# Feature or enhancement
### Proposal:
When creating an enum using `class` syntax, it would save much time to add `auto()` as the value for all members using a `@auto` class decorator.
Example:
```
@auto
class Example(Enum):
FIRST
SECOND
THRD
```
is the same as:
```
class Example(Enum):
FIRST = auto()
SECOND = auto()
THRD = auto()
```
### Has this already been discussed elsewhere?
This is a minor feature, which does not need previous discussion elsewhere
### Links to previous discussion of this feature:
_No response_
</pre>
<hr>
<a href="https://github.com/python/cpython/issues/122221">View on GitHub</a>
<p>Labels: type-feature</p>
<p>Assignee: </p>