[Enum] EnumMeta.__prepare__ now accepts **kwds (#23917)

This commit is contained in:
Ethan Furman 2020-12-24 10:05:02 -08:00 committed by GitHub
parent 7ec59d8861
commit 6ec0adefad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View file

@ -178,7 +178,7 @@ class EnumMeta(type):
Metaclass for Enum
"""
@classmethod
def __prepare__(metacls, cls, bases):
def __prepare__(metacls, cls, bases, **kwds):
# check that previous enum members do not exist
metacls._check_for_existing_members(cls, bases)
# create the namespace dict