This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ethan.furman
Recipients eric.smith, ethan.furman
Date 2021-12-17.13:15:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639746901.1.0.94698491529.issue46108@roundup.psfhosted.org>
In-reply-to
Content
Thanks, test added.  I also updated the title.

Code updated to treat any __repr__s as affecting the display of the member value instead of the member itself (i.e. the "<...: %r>" portion).  if a user actually wants to change the member repr they can assign it when creating the Enum:

    class Entries(Foo, Enum):
        ENTRY = 1
        __repr__ = Foo.__repr__

    assert repr(Entries.ENTRY1) == 'Entries(a=1)'
History
Date User Action Args
2021-12-17 13:15:01ethan.furmansetrecipients: + ethan.furman, eric.smith
2021-12-17 13:15:01ethan.furmansetmessageid: <1639746901.1.0.94698491529.issue46108@roundup.psfhosted.org>
2021-12-17 13:15:01ethan.furmanlinkissue46108 messages
2021-12-17 13:15:01ethan.furmancreate