How did it actually get to this?

Looking at you enum module.

Seriously, I don't see how "import this" and "import enum" can coexist. One of them needs to go.
I should have recorded a reaction video for my looking at the enum docs for the first time in like 5 years yesterday.

@dabeaz for the longest while in Python whenever i've needed an enum I've used:

class Hearts: ...
class Spades: ...

it's actually quite rare that i need to _enumerate_ my enums.

@dabeaz I guess your problem is with `import enum` not with `import this`, right? ;) Care to elaborate, what problem you see there?
@dabeaz honestly, at the way most people write python today, I think `import this` went a long time ago.