|
|
Subscribe / Log in / New account

Python finally offloads some batteries

Python finally offloads some batteries

Posted Mar 17, 2022 12:28 UTC (Thu) by nix (subscriber, #2304)
In reply to: Python finally offloads some batteries by pabs
Parent article: Python finally offloads some batteries

I don't know. Doing that has the advantage that moving things in and out of core is uncontroversial and done routinely, and that things that leave core are *still easily accessible* (to the majority of users who can install stuff as needed), because they're still on CPAN. This in turn is easy because the majority of the standard library is maintained using the same build system as CPAN, so moving things from core to CPAN or dual-lifing them in both is literally a matter of running a couple of commands: almost no source changes are usually needed. In Python, my impression is that migrating a module is quite a big job, so there's a temptation to just drop it and leave it nowhere and its few remaining users out in the cold.


to post comments

Python finally offloads some batteries

Posted Mar 17, 2022 13:20 UTC (Thu) by Wol (subscriber, #4433) [Link]

Yup. The Python people need to create some fjords for old batteries to pine for.

Cheers,
Wol

Python finally offloads some batteries

Posted Mar 17, 2022 14:25 UTC (Thu) by anselm (subscriber, #2796) [Link]

In Python, my impression is that migrating a module is quite a big job, so there's a temptation to just drop it and leave it nowhere and its few remaining users out in the cold.

The code is there, and making Python packages for PyPI isn't exactly rocket science. The seven people who actually still use ossaudiodev or nntplib can do their own legwork, or else the modules must not have been all that essential after all.


Copyright © 2025, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds