Message 408748 - Python tracker
Message408748
| Author | ethan.furman |
|---|---|
| Recipients | ethan.furman |
| Date | 2021-12-17.01:13:16 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1639703596.51.0.989960862505.issue46108@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
from dataclasses import dataclass
from enum import Enum
@dataclass
class Foo:
a: int = 0
class Entries(Foo, Enum):
ENTRY1 = Foo(1)
repr(Entries.ENTRY1) != '<Entries.ENTRY1: Foo(a=1)>' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2021-12-17 01:13:16 | ethan.furman | set | recipients: + ethan.furman |
| 2021-12-17 01:13:16 | ethan.furman | set | messageid: <1639703596.51.0.989960862505.issue46108@roundup.psfhosted.org> |
| 2021-12-17 01:13:16 | ethan.furman | link | issue46108 messages |
| 2021-12-17 01:13:16 | ethan.furman | create | |