Hacker News new | ask | show | jobs
by the__alchemist 1269 days ago
Was very surprised to see that in the article! My complaint is the Python std lib is bloated. If I could design a Python 4, it would be a subset of Python. Ie get rid of the various struct-like data structures (eg both types of named tuple) other than dataclass that have accumulated over time.
1 comments

There is an accepted PEP[0] which removed a bunch of modules from the standard library in 3.11

[0] https://peps.python.org/pep-0594/ that