[issue38366] dataclasses: generate the _hash_action table from the if-else tree

2019-10-03 Thread Io Mintz
New submission from Io Mintz : The dataclasses._hash_action table is currently a bit hard to read. It could be generated once from the if-else tree written in https://bugs.python.org/issue32929#msg312829 instead, which would both be easier to read and easier to maintain, while still

[issue38958] asyncio REPL swallows KeyboardInterrupt while editing

2019-12-02 Thread Io Mintz
New submission from Io Mintz : "python3 -m asyncio" swallows KeyboardInterrupt while editing a line. Problem steps: == - run python -m asyncio - press ^C Expected behavior (normal CPython REPL, as well as pyth