Moreover, Guido is in favour of ongoing addition of major new features (like pattern matching), worrying that without them Python would become a “legacy language”:
https://discuss.python.org/t/pep-8012-frequently-asked-quest...
I don't follow python closely so it may 100% be stuff that GvR endorsed too, or I'm mixing up the timelines. It just feels to me that python is changing much faster than it did in the 2.x days.
If you look at the feature in detail, and especially how it clashes with the rest of the language, it's awful. For example:
Given that one of the fundamental rules of programming is "don't use magic numbers, prefer named constants", that's terrible language design.
At least in my case I use it all the time, to avoid duplicated operations inside comprehensions.
I think part of the reason Guido stepped down was that the BDFL structure created too much load on him dealing with actual and potential change, so its unsurprising that the rate of change increased when the governance structure changed to one that managed change without imposing the same load on a particular individual.