The ecosystem is full of examples like this - orjson is much faster than the json module, structlog can be configured to be much faster than logging, etc. Not everything needs to be in the standard library, where it incurs a maintenance burden on the core devs.
Python is designed with extensibility in mind! If you’re aiming for better performance, consider using uvloop, an ultra-fast event loop for asyncio. For additional performance-focused tools, explore libraries like simdjson and similar options.
I agree with the responses here. I guess I’m hoping for more confirmation regarding uvloop specifically.
I guess I thought that switching the event loop implementation to uvloop wouldn’t be a breaking change (since it’s a “drop in replacement”). I hadn’t considered that, just because it’s API is identical doesn’t mean it is not a maintenance burden