New GitHub issue #92647 from ethanfurman:<br>

<hr>

<pre>
Using call syntax to with an Enum has two possibilities:

- creating a new enum from a previous enum (good for inheriting behavior, etc.)
- looking up a member in a final enum

Which should be used is determined by the number of arguments: one means lookup, more than one means creation.  However, if the enum was created using multiple values, and the lookup call erroneously passes multiple values instead of one tuple with those multiple values, then the creation branch is chosen and the resulting error message is less than useful.

Which branch to take should be determined by whether the enum is final (has members).
</pre>

<hr>

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