|
|
|
|
|
by bb88
1030 days ago
|
|
Yeah, python 2->3 transition was painful. But, I would argue that was self inflicted. Guido and company chose not to develop a 2.8/2.9/etc series where people could move their code base over incrementally. I mean, I love python, but that sucked! Yes it would have been more work for the devs, but the amount of work it meant for the users were worse. In fact they pretty much just threw away anything before python 3.6 anyway now. Many things introduced in the 3.x series before 3.6 just don't work anymore (asyncio syntax being the notable one). |
|
That is literally what 2.7 was, as well as reimplementing some features in later p3 (up to 3.4).
The core team definitely had the wrong transition model at the start, and it took some time for the community to convince them then decide on which items were the most important, but let’s not act like they did not get it in the end.
> In fact they pretty much just threw away anything before python 3.6 anyway now. Many things introduced in the 3.x series before 3.6 just don't work anymore (asyncio syntax being the notable one).
What?