Hi Steve, I completely agree with all you said ;-)
I will not debate here if incompatible changes are worth it or not, this topic was discussed recently in another thread. On Fri, Dec 3, 2021 at 2:56 PM Steve Dower <steve.do...@python.org> wrote: > FTR, I don't consider the top projects on PyPI to be representative of > our user base, and *especially* not representative of people compiling > native modules. > > This is not a good way to evaluate the impact of breaking changes. I do not pretend that a code search on PyPI top 5000 projects is only way and is an exhaustive way to measure the impact of incompatible changes. I'm only trying to advertize that *there is one practical tool* which is better than nothing. Last years, I saw many incompatible changes introduced in Python without: * estimating how many projects: "release Python and pray" in the hope that only a minority is impacted * don't document the change at all, or just say that it's now broken, but it was rare that practical instructions were provided to explain how to port code and how to keep support for old Python versions. I saw a net enhancement recently. Better documentation, core devs proactive to fix impacted projects, better communication to announce incompatible changes in advance, and practical instructions to port code without losing support for old Python versions. > It would be far safer to assume that every change is going to break > someone and evaluate: > * how will they find out that upgrading Python will cause them to break > * how will they find out where that break occurs > * how will they find out how to fix it > * how will they manage that fix across multiple releases > * how will we explain that upgrading and fixing breaks is better for > *them* than staying on the older version In the PEP 674, I wrote an explicit section "Port C extensions to Python 3.11": https://www.python.org/dev/peps/pep-0674/#port-c-extensions-to-python-3-11 It doesn't cover all your questions, but it tries to reply to most of them. I'm open to suggestions to enhance this section ;-) IMO it's a good practice that a PEP introducing incompatible changes explains how to port existing code and this practice should become more common ;-) > * how will we explain that upgrading and fixing breaks is better for > *them* than staying on the older version This part is always the hardest :-( Staying at an old Python version is usually cheaper: no further developments needed. There are still companies using Python 2 nowadays. Don't underestimate the technical debt and the cost to upgrade ;-) For the PEP 674, the promise is that updated C extensions should work better with HPy and GraalPython. Not sure if it's enough to motivate developers to port their code. IMO one important thing is the cost of upgrading a C extension. For the PEP 674, all you need to do is to run a single command once! => ./upgrade_pythoncapi.py path/to/project/ Done! It reminds me the Python 2 to Python 3 migration before 2to3 and six were usable and popular. The migration was super painful and so nobody wanted to do it because everybody wanted to still keep support for Python 2. Only adding Python 3 support didn't bring any benefit in the short term (Python 3 only features couldn't be used). People didn't migrate because migrating code was dangerous, painful and complicated. I'm now in favor of limiting the number of incompatible changes per Python release and never again do a Python 4 "break the world" release. I prefer to have a bunch of incompatible changes in each Python release :-) > This last one is particularly important, as many large organisations > (anecdotally) seem to have settled on Python 3.7 for a while now. > Inevitably, this means they're all going to be faced with a painful time > when it comes to an upgrade, and every little change we add on is going > to hurt more. Every extra thing that needs fixing is motivation to just > rewrite in a new language with more hype (and the promise of better > compatibility... which I won't comment specifically on, but I suspect > they won't manage it any better than us ;) ). IMO we need to invest more time on developing tools to ease the migration to newer Python versions, like: * Python: https://github.com/asottile/pyupgrade * C code: https://github.com/pythoncapi/pythoncapi_compat Victor -- Night gathers, and now my watch begins. It shall not end until my death. _______________________________________________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/RWJQM5AQGQLM46TJSQZN7CBXVYS5BFPD/ Code of Conduct: http://python.org/psf/codeofconduct/