Revisiting PEP 394
With the uptake of Python 3 (and the imminent end of life for Python 2.7), there is a question of which version of Python a user should get when they type "python" at the command line or have it as part of a shebang ("#!") line in a script. Back in 2011, PEP 394 ("The 'python' Command on Unix-Like Systems") was created as an informational PEP that relayed the recommendations of the Python core developers to Linux distributions and others in a similar position about which version to point python to. Now, Petr Viktorin, one of the authors of the PEP, would like to revisit those recommendations, which is something that is suggested in the PEP itself.
Viktorin is concerned that the recommendations essentially require a distribution to include Python 2 if it wants to install a "python", in addition to explicit "python2" and/or "python3" commands. The current recommendations are that, if there is a python, it should point to the same place as python2, and that scripts which are compatible with both Python 2 and Python 3 may continue to use python on their shebang lines. That effectively means a distribution with shiny new Python 3 scripts (which also support Python 2) needs to ship Python 2, which is not what some distributions want.
The main issue is that some distributions are supported for ten or more years, but Python 2, in the form of Python 2.7, will reach its end of life on January 1, 2020—just ten months away. That leaves those distributions with some tough choices. They can either break with PEP 394 by making the version invoked by python configurable, for example. Or they have to ship scripts that could happily work on Python 2 with shebang lines that will invoke Python 3 (e.g. #!/usr/bin/python3).
As Victor Stinner pointed out, this problem has been discussed before, including at the 2018 Python Language Summit. Both Viktorin and Stinner work for Red Hat, so their perspective is largely focused on Fedora and Red Hat Enterprise Linux (RHEL). Stinner also noted a pull request (PR) that Viktorin filed for PEP 394 that would clarify some of the language in it. In a comment on the PR, Viktorin said that where python points is configurable for the RHEL 8 beta:
The eventual intent, at least according to a comment by
Guido
van Rossum on an earlier PR, is that python won't actually point
anywhere
because it won't exist;
users will need to explicitly choose either python2 or
python3. That is part of what Viktorin's PR is aiming for as
well. He wants to make two changes to the PEP: allow installing a
"python" (or, an
"unversioned Python", as he calls it) to be optional for a distribution and
to recommend that scripts supporting both Python 2 and Python 3 use
python3 in their shebang lines. That last is a bit
counterintuitive, since it means that those scripts will really only run
under Python 3, regardless of their ability to run under either
version. It
is, Viktorin said,
"the least bad option
".
Some would like to see the unversioned Python point to Python 3, either now or soon, however. Antoine Pitrou pointed out that users of the conda package management tool for Python have been using unversioned Python as Python 3 for several years. Stinner said that he advocates unversioned Python be the same as the latest Python version. There is a problem with installing Python without providing an unversioned binary or link, he said: the documentation refers to python in lots of places.
Barry Warsaw agreed that it was desirable to have the unversioned Python be the latest Python 3 version, though it may be too soon for the PEP to recommend that. But both Stinner and Warsaw also brought up another potential solution: the Python Launcher for Unix that Brett Cannon is working on. It is modeled on the "py" launcher for Windows, which was specified in PEP 397 ("Python launcher for Windows"). py finds the "right" Python interpreter to invoke based on its configuration, command-line arguments, and any shebang line.
Cannon's version of the launcher is written in Rust (and is available as a crate). Since there is no legacy of using it on Unix systems, distributions would be able to point it at the version that makes the most sense for them. Users and administrators could still change the default behavior as they wished as well. Cannon said that py is still missing some basic functionality, but he is working on rectifying that. He intends to keep working on it even if others do not find it all that useful:
Unlike nearly everyone else commenting in the thread, Gregory P. Smith did
not think py is a solution to the problem. In his view, any
distributions that are not installing some unversioned Python, when the
language is used for its core functionality (e.g. various administrative
scripts), has "done something undesirable for the world at
large
". That is because that makes it impossible to write a shebang
line that invokes the latest version of Python installed and will work
across all of the distributions. There are "hacks" that can be done to
work around that problem and those should be adopted, he said. As he
forecast, though, that wasn't a wildly popular approach.
As he did at the language summit, Matthias Klose represented the Debian and Ubuntu Python packagers in the thread. He described the plans for unversioned Python; for Debian, python is never planned to point to Python 3, while Ubuntu has not made a final decision, but it currently does not install an unversioned Python. Debian will continue to have python point to Python 2 until it no longer ships Python 2, then remove it entirely. Klose is trying to ensure that, for upcoming distribution releases starting in 2020 or 2021, Python scripts in both Debian and Ubuntu packages use explicit shebang lines.
Klose does
not think there is any way to solve the problem that Smith is
complaining about: "there
is *no* way to have a sane way to have what you want
". Smith more
or less concurred:
Too late now. :)
Nick Coghlan agreed
with Smith
that not having an unversioned Python "does indeed break the world
(search for Fedora 28 and Ubuntu 16.04 Ansible Python issues for
more)
". But he thinks it is time to consider changing the stance of
the PEP. The only thing that is stopping Fedora from doing what it thinks
is the right thing (pointing the unversioned Python at Python 3) is the PEP:
In this case, the advice is outdated: there have been a couple of years of releases with /usr/bin/python missing, so it's time to move to the "/usr/bin/python3" side of source compatibility, and go back to having "just run python" be the way you start a modern Python interpreter, even when you're using the system Python on a Linux distro.
He pointed out that Viktorin is not asking to change the recommendation to
follow Fedora's lead, "just for the PEP to acknowledge
it as a reasonable choice
for distros to make given the looming Python 2 End of Life
". Warsaw
thought
that made sense:
Both Coghlan and Warsaw, along with Cannon, Van Rossum, and Carol Willing, are members of the new steering council, which means they will be participating in determining the outcome of the changes to this PEP. More importantly, perhaps, both are also co-authors of the PEP (with Viktorin and Kerrick Staley), so their opinions clearly matter. So far, Van Rossum has not commented in the thread or on the PR. It has been almost a year since he was opposed to the last effort to change the PEP. A lot of water has gone under the bridge since then, so he might be more inclined to accept these changes (or a subset of them)—or simply to defer to the other members of the council.
Index entries for this article | |
---|---|
Python | Linux distributions |
Revisiting PEP 394
Posted Feb 27, 2019 20:44 UTC (Wed)
by Cyberax (✭ supporter ✭, #52523)
[Link] (14 responses)
Posted Feb 27, 2019 20:44 UTC (Wed) by Cyberax (✭ supporter ✭, #52523) [Link] (14 responses)
Revisiting PEP 394
Posted Feb 27, 2019 22:52 UTC (Wed)
by Kalenx (subscriber, #120295)
[Link] (13 responses)
Posted Feb 27, 2019 22:52 UTC (Wed) by Kalenx (subscriber, #120295) [Link] (13 responses)
Revisiting PEP 394
Posted Feb 27, 2019 22:55 UTC (Wed)
by Cyberax (✭ supporter ✭, #52523)
[Link] (11 responses)
Posted Feb 27, 2019 22:55 UTC (Wed) by Cyberax (✭ supporter ✭, #52523) [Link] (11 responses)
Py2 will be supported at least until 2027 (the EOL for RHEL7) and realistically it'll be around for longer (see: Perl5).
So fuck you Python developers. You're creating needless work for everybody to reassure your sense of self-importance ("See! We did it! Py3 is now mandatory!").
Revisiting PEP 394
Posted Feb 27, 2019 23:55 UTC (Wed)
by Kalenx (subscriber, #120295)
[Link]
Posted Feb 27, 2019 23:55 UTC (Wed) by Kalenx (subscriber, #120295) [Link]
Revisiting PEP 394
Posted Feb 28, 2019 1:15 UTC (Thu)
by NYKevin (subscriber, #129325)
[Link] (4 responses)
Posted Feb 28, 2019 1:15 UTC (Thu) by NYKevin (subscriber, #129325) [Link] (4 responses)
Not if all the libraries jump ship. A ton have already pledged to do so in 2020: https://python3statement.org/
(Moreover, if a given library has *not* published plans to transition to Python 3 in the very near future, I would tend to wonder whether it is actually receiving upstream support in the first place. I'm sure some are, but there's a lot of bit rot out there.)
Revisiting PEP 394
Posted Feb 28, 2019 1:20 UTC (Thu)
by Cyberax (✭ supporter ✭, #52523)
[Link] (3 responses)
Posted Feb 28, 2019 1:20 UTC (Thu) by Cyberax (✭ supporter ✭, #52523) [Link] (3 responses)
Don't care about them. There are many in-house applications that are written in Py2 and that are not migrating any time soon.
Revisiting PEP 394
Posted Feb 28, 2019 1:23 UTC (Thu)
by NYKevin (subscriber, #129325)
[Link] (2 responses)
Posted Feb 28, 2019 1:23 UTC (Thu) by NYKevin (subscriber, #129325) [Link] (2 responses)
Revisiting PEP 394
Posted Feb 28, 2019 2:01 UTC (Thu)
by Cyberax (✭ supporter ✭, #52523)
[Link] (1 responses)
Posted Feb 28, 2019 2:01 UTC (Thu) by Cyberax (✭ supporter ✭, #52523) [Link] (1 responses)
But why? There's no reason whatsoever for this change other than vanity. Just stick with python2 and python3 - easy and unambiguous.
Revisiting PEP 394
Posted Feb 28, 2019 2:52 UTC (Thu)
by JdGordy (subscriber, #70103)
[Link]
Posted Feb 28, 2019 2:52 UTC (Thu) by JdGordy (subscriber, #70103) [Link]
Revisiting PEP 394
Posted Feb 28, 2019 4:41 UTC (Thu)
by johnramsden (guest, #113890)
[Link] (3 responses)
Posted Feb 28, 2019 4:41 UTC (Thu) by johnramsden (guest, #113890) [Link] (3 responses)
Revisiting PEP 394
Posted Feb 28, 2019 7:06 UTC (Thu)
by Cyberax (✭ supporter ✭, #52523)
[Link] (2 responses)
Posted Feb 28, 2019 7:06 UTC (Thu) by Cyberax (✭ supporter ✭, #52523) [Link] (2 responses)
All major distros are going to HAVE to support Py2 way past 2020. Ubuntu Server will support it until 2023 at least, so will SuSE and others.
> The problem is what happens when python2 it's no more and python no longer points anywher
Once this happens (maybe around 2034) then these scripts can just fail.
Revisiting PEP 394
Posted Feb 28, 2019 15:50 UTC (Thu)
by cpitrat (subscriber, #116459)
[Link]
Posted Feb 28, 2019 15:50 UTC (Thu) by cpitrat (subscriber, #116459) [Link]
Revisiting PEP 394
Posted Mar 7, 2019 17:00 UTC (Thu)
by plugwash (subscriber, #29694)
[Link]
Posted Mar 7, 2019 17:00 UTC (Thu) by plugwash (subscriber, #29694) [Link]
If you mean patch critical security issues reported against the python2 packages in existing supported releases of the distro sure. Ubuntu 18.04 has python in it's main archive component and gets regular support until 2025. After that there is another 5 years of "extended security maintinance" but it is not clear what packages will be covered by that (and you have to pay for it).
If you mean support python2 in new releases of their distros going forward that becomes far less likely. The Debian/Ubuntu has stated they intend to remove python2 from main to universe in the next ubuntu LTS release. On the Debian side some lintian tags state that python2 is "likely to be removed after the release of buster", though time will tell how that actually pans out.
Revisiting PEP 394
Posted Mar 1, 2019 1:15 UTC (Fri)
by flussence (guest, #85566)
[Link]
Posted Mar 1, 2019 1:15 UTC (Fri) by flussence (guest, #85566) [Link]
Perl 5 has been markedly improving as of late (since v24) in keeping its EOL promises. The current release removed several things that were marked deprecated back in the 20th century; v30 is getting rid of a bunch of line-noise variables ($*, $[, $#). Simply dumping "use 5.008" into a file is no longer a magic ward against having maintainable software.
Revisiting PEP 394
Posted Feb 28, 2019 15:24 UTC (Thu)
by lkundrak (subscriber, #43452)
[Link]
Posted Feb 28, 2019 15:24 UTC (Thu) by lkundrak (subscriber, #43452) [Link]
...of something else
Revisiting PEP 394
Posted Feb 27, 2019 21:40 UTC (Wed)
by moltonel (guest, #45207)
[Link]
Posted Feb 27, 2019 21:40 UTC (Wed) by moltonel (guest, #45207) [Link]
Revisiting PEP 394
Posted Feb 28, 2019 7:23 UTC (Thu)
by mjthayer (guest, #39183)
[Link] (4 responses)
Posted Feb 28, 2019 7:23 UTC (Thu) by mjthayer (guest, #39183) [Link] (4 responses)
Revisiting PEP 394
Posted Feb 28, 2019 7:34 UTC (Thu)
by Cyberax (✭ supporter ✭, #52523)
[Link] (2 responses)
Posted Feb 28, 2019 7:34 UTC (Thu) by Cyberax (✭ supporter ✭, #52523) [Link] (2 responses)
Revisiting PEP 394
Posted Feb 28, 2019 8:10 UTC (Thu)
by mjthayer (guest, #39183)
[Link] (1 responses)
Posted Feb 28, 2019 8:10 UTC (Thu) by mjthayer (guest, #39183) [Link] (1 responses)
Revisiting PEP 394
Posted Feb 28, 2019 9:43 UTC (Thu)
by Cyberax (✭ supporter ✭, #52523)
[Link]
Posted Feb 28, 2019 9:43 UTC (Thu) by Cyberax (✭ supporter ✭, #52523) [Link]
This is pretty much THE worst possible solution.
Revisiting PEP 394
Posted Mar 1, 2019 0:13 UTC (Fri)
by jccleaver (subscriber, #127418)
[Link]
Posted Mar 1, 2019 0:13 UTC (Fri) by jccleaver (subscriber, #127418) [Link]
As the post indicates, this is an awkward time for the transition. The fact remains that the Python folks handled this whole thing horribly and the blame for the mess resides on them.
IMO, for the time being, "/usr/bin/python" SHOULD be a reference to python v2, and python3 scripts SHOULD reference "/usr/bin/python3" in their shebangs.
While "bleeding edge" distros might want to get ahead of this, that's not a good reason for the upstream recommendations to not reflect reality, which is that large chunks of the userbase don't plan on getting rid of python2 any time soon due to the existing scripts. The perl5->perl advice on shebangs was proffed only after perl4 was LONG dead, though it was helped by the fact that there weren't that many incompatibilities (and there were conversion scripts that could handle most of them). IMO the actual python *userbase* is not there yet.
'python' should be for interactive use
Posted Feb 28, 2019 7:55 UTC (Thu)
by marcel.oliver (subscriber, #5441)
[Link]
I can't wait until my distro (Fedora) points Posted Feb 28, 2019 7:55 UTC (Thu) by marcel.oliver (subscriber, #5441) [Link]
python
to python3
. It's a constant annoyance to get the wrong Python, or wrong ipython
via tab completion in the shell (if only they had named it 3python
), then it would be half a problem. Scripts can be fixed, and presumably one should use explicit versioning anyway.
Yes, I could define my own alias, but I am also teaching various Scientific Computing classes, so changing defaults would seriously confuse students.
Unfortunately, for students on Linux, I must still check which version of Python they are actually running, which is erratic in practice, and if it's 2.7, debug their scripts for floored-division errors. Just happened two days ago, again.
I will probably have 2.7 around for as long as that's just a dnf install
away, due to long-forgotten legacy scripts, but having the default invocation point to a dying version is a very poor user interface. I notice that Matplotlib in its latest version is Python 3 only, which tells me that it's really time to get off Python 2 in my domain.
Revisiting PEP 394
Posted Feb 28, 2019 9:11 UTC (Thu)
by karkhaz (subscriber, #99844)
[Link] (4 responses)
Posted Feb 28, 2019 9:11 UTC (Thu) by karkhaz (subscriber, #99844) [Link] (4 responses)
IMO these are two separate questions, and I don't see that acknowledged in the PEP. This is because the implications of the default behaviour are different in each case. When typing 'python' at the command line, you're immediately greeted with the version number that's running, and you can just <Ctrl-D> if it's not the one you expected. Scripts, on the other hand, can be executed non-interactively in the background and might thus break people's setups in non-obvious ways if they fail.
So it seems to me that the sensible behavior is to make python point to the latest version of python when invoked on the command line, but python in shebang lines should continue to point to python2 forever. And I say this as an Arch Linux user, whose python has pointed to python3 since the beginning, and I'm perfectly happy with this---but acknowledge that it's untenable for the more mainstream distros.
Revisiting PEP 394
Posted Feb 28, 2019 10:31 UTC (Thu)
by moltonel (guest, #45207)
[Link] (3 responses)
Posted Feb 28, 2019 10:31 UTC (Thu) by moltonel (guest, #45207) [Link] (3 responses)
Fixing banglines is trivial, only the diagnostic-to-bugreport-to-new-package bureaucracy takes a bit of time. After so many years, I'd expect that most packaged python2-only scripts have been fixed, and only in-house packages remain. It shouldn't be that hard to write a script to find and report/fix such scripts.
I'm unsympathetic to the "it'll break my setup" argument when the fix is so simple and has been needed for so many years. The python community has been doing extra work to support a legacy version, waiting for people to switch for surprisingly many years. It's time to give them a rest.
Revisiting PEP 394
Posted Mar 4, 2019 18:25 UTC (Mon)
by anton (subscriber, #25547)
[Link] (2 responses)
Decisions by "a few distros" are only relevant to people who use them and who want to be compatible with them. They certainly don't make previously existing scripts buggy. Some will see these distros as being "bleeding edge", others as "buggy" (but that's just two different names for the same attitude).
Posted Mar 4, 2019 18:25 UTC (Mon) by anton (subscriber, #25547) [Link] (2 responses)
Previously existing scripts should continue to work, so the unversioned python should point to the latest compatible installed version, i.e., the latest python2. PEP 394 got that right.
BTW, I am not a Python user, but the cavalier attitude to backwards compatibility that you espouse, and that is rampant in Linux distributions in recent years is really worrying. One of the nice things about Linux (in contrast to Windows) is that Unix scripts that I have started 30 years ago still work. But maybe for not much longer.
Revisiting PEP 394
Posted Mar 4, 2019 22:08 UTC (Mon)
by moltonel (guest, #45207)
[Link] (1 responses)
Posted Mar 4, 2019 22:08 UTC (Mon) by moltonel (guest, #45207) [Link] (1 responses)
PEP 394 took an idealistic stance when it specified that "python" should point to "python2", but the world did not follow that ideal. Some moved sooner than others, and today is the PEP authors's turn to change their mind. The demise of "python is always python2" was inevitable (noone wants to keep version numbers in the name forever just because an older version is incompatible), and the original PEP should have prepared us better. Hindsight is 20/20.
It's whishfull thinking that your script from 30 years ago still run bug-free on a modern system. My ipchains scripts are useless. My php scripts attempt to use insecure APIs. My CLI flags on GNU utils are now no-ops. My C looks for the wrong headers. The sad reallity is that code bitrots and needs to be maintained. If the only maintenance needed is specifying an interpreter version, it's not too bad.
Revisiting PEP 394
Posted Mar 6, 2019 17:40 UTC (Wed)
by anton (subscriber, #25547)
[Link]
Posted Mar 6, 2019 17:40 UTC (Wed) by anton (subscriber, #25547) [Link]
or should we not assume that a program written for a system ought to work on another one ?A program that works on a system ought to work on the next version of that system. If not, it's a regression of the system. That's the rule in Linux, and it's a good rule. PEP 394 also embodies this rule. Portability between different systems is nice to have, but a different issue.
As for not wanting to use "python3" to invoke the new language, there are ways to avoid that: e.g., call it "py", "pyt", or "boa". Or make "python" automagically select between the two languages (although automagic has its own pitfalls). But actually, what's so bad about using "python3" for the new language? You can introduce a shell alias if you don't like it.
My 30-years old script does work, because not everyone breaks backwards compatibility as cavalierly as you are advocating. Yes, there are cases where old stuff is broken by changes, but that's no excuse for more breaking changes.
And if you think that changing the hash-bang lines of the python 2 scripts still in use is not too bad, are you willing to pay the people who have to make these changes for the work this gratuitious change causes? Why should they pay for your dislike of the "python3" name?
Revisiting PEP 394
Posted Feb 28, 2019 9:18 UTC (Thu)
by lobachevsky (subscriber, #121871)
[Link]
Posted Feb 28, 2019 9:18 UTC (Thu) by lobachevsky (subscriber, #121871) [Link]
I agree that it's a disservice to have no unversioned python available and think that the stance to never point the symlink away from python2 quite backwards.
Revisiting PEP 394
Posted Feb 28, 2019 9:57 UTC (Thu)
by mcharsley (subscriber, #112617)
[Link]
Posted Feb 28, 2019 9:57 UTC (Thu) by mcharsley (subscriber, #112617) [Link]
Revisiting PEP 394
Posted Feb 28, 2019 13:51 UTC (Thu)
by NRArnot (subscriber, #3033)
[Link]
Posted Feb 28, 2019 13:51 UTC (Thu) by NRArnot (subscriber, #3033) [Link]
1. Output a warning message to stderr that the un-versioned python command is strongly deprecated.
2. Scan the script to identify any hints as to which python version is required. For example, a print statement without brackets requires python 2, an f-string requires python 3, any type hint strongly implies python 3, ...
3. Output another warning saying what it's going to try next
4. Dispatch the script to python3, unless python2 was clearly required, in which case...
5. Dispatch to python2 if it exists on the system or explain the problem if it does not.
This will work most of the time, and the warning messages (whether or not it does work) ought to nag the script maintainers to fix their shebangs.
If invoked without a script (interactive), tell the user to choose between python2 and python3 and quit.
This isn't something that has to be perfect. A 90% solution is better than a 0% non-solution.
Revisiting PEP 394
Posted Feb 28, 2019 16:57 UTC (Thu)
by JFlorian (guest, #49650)
[Link]
Rule #2 of PEP 20 seems awfully relevant here. For those who don't remember:
Posted Feb 28, 2019 16:57 UTC (Thu) by JFlorian (guest, #49650) [Link]
$ python >>> import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. ...
Revisiting PEP 394
Posted Mar 1, 2019 8:44 UTC (Fri)
by jani (subscriber, #74547)
[Link] (2 responses)
Posted Mar 1, 2019 8:44 UTC (Fri) by jani (subscriber, #74547) [Link] (2 responses)
So here's an idea: Allow scripts to declare the Python versions they're compatible with using a python_requires special comment near the top of the file. The plain python shebang would be a launcher that looks at the comment, and runs the latest compatible Python version that's available, or falls back to a baseline Python version if there's no python_requires. I think the baseline could be Python 2.
PEP263 (https://www.python.org/dev/peps/pep-0263/) defines a special comment for encoding, this would be similar.
PEP440 (https://www.python.org/dev/peps/pep-0440/) defines the version identification and dependency specification.
The Python packaging user guide (https://packaging.python.org/guides/distributing-packages...) defines the python_requires for packaging.
Revisiting PEP 394
Posted Mar 1, 2019 8:49 UTC (Fri)
by jani (subscriber, #74547)
[Link]
Posted Mar 1, 2019 8:49 UTC (Fri) by jani (subscriber, #74547) [Link]
Revisiting PEP 394
Posted Mar 2, 2019 22:35 UTC (Sat)
by intgr (subscriber, #39733)
[Link]
Posted Mar 2, 2019 22:35 UTC (Sat) by intgr (subscriber, #39733) [Link]
Python developers have stated on the record that breaking compatibility so harshly with Python 3 was a huge mistake and will not be repeated. If there will be a Python 4, it won't be the same kind of nightmare that Python 3 was, but will hopefully follow the usual practice of __future__ flags and deprecations announced well in advance.
> Allow scripts to declare the Python versions they're compatible with
That's already somewhat covered by the __future__ module: https://docs.python.org/3.8/library/__future__.html
Revisiting PEP 394
Posted Mar 3, 2019 22:51 UTC (Sun)
by mirabilos (subscriber, #84359)
[Link] (16 responses)
Posted Mar 3, 2019 22:51 UTC (Sun) by mirabilos (subscriber, #84359) [Link] (16 responses)
“python” should NEVER point to Python 3
Instead, scripts as well as books ought to make clear that they target py3k instead of Python (2). This also makes it easier to select a suitable {book,script} when you have multiple, by glancing at the shebang (of an example in the book, or of the script).
I’m glad Debian is going to implement this.
Revisiting PEP 394
Posted Mar 4, 2019 22:26 UTC (Mon)
by moltonel (guest, #45207)
[Link] (15 responses)
Posted Mar 4, 2019 22:26 UTC (Mon) by moltonel (guest, #45207) [Link] (15 responses)
“cc” should NEVER compile using ANSI C, or C89, or C11, or C18.
Instead, source code as well as books ought to make clear that they target C18 instead of C (K&R). This also makes it easier to select a suitable {book,script} when you have multiple, by glancing at the compile command (of an example in the book, or of the Makefile).
Jokes asside (sorry), I'm gad that I can use "C" or "Python" as a generic term, and can usually expect an unversioned executable name to correspond to a recent version of the project.
Revisiting PEP 394
Posted Mar 5, 2019 0:47 UTC (Tue)
by mirabilos (subscriber, #84359)
[Link] (14 responses)
Posted Mar 5, 2019 0:47 UTC (Tue) by mirabilos (subscriber, #84359) [Link] (14 responses)
I’m not buying it, though.
Whatever is installed as cc on modern systems (usually GCC or clang) is normally still able to compile K&R C, or at least the very first ANSI C programs, modulo the newly-informed UB rules. (I literally have the 1970s nroff in the source tree of MirBSD, ugly as hell but compiles.)
On the other hand, py3k is a completely different programming language from Python (2) and *deliberately* incompatible. (Upstream agrees, as they say it was, in hindsight, not a good idea, and that they won’t do that again.)
So, while we have C89, C99, C11 as versions of C, and PHP 4.x, 5.x, 7.x as versions of PHP, we have Python 2.x and Python3 3.x. (I first saw Python when it was at version 2.1, for the BitTorrent official client, back then still OSS, so I don’t know enough to comment on versions before that. But Python 2.1 stuff is still usable, with very small changes, under 2.5, so it does still work.)
Switching from Python to py3k also often means changing your dependencies, at the very least the Debian packages are named differently, but people sometimes took the chance to reorg. C libraries are usually usable from all versions of the compilers on that given platform, and C++ libraries occasionally break ABI but are still source-level compatible.
I hope this explains well enough why I believe these not comparable.
(Funnily enough, Perl has a similar problem…)
Revisiting PEP 394
Posted Mar 5, 2019 15:10 UTC (Tue)
by moltonel (guest, #45207)
[Link] (13 responses)
Posted Mar 5, 2019 15:10 UTC (Tue) by moltonel (guest, #45207) [Link] (13 responses)
Since you mention PHP, it is a "good" example of compatibility breaking between versions. Some language features were security hazards and were rightfully deprecated and removed, breaking older scripts. In Python, the string vs bytes is a good example of something that really needed to change in the language, justifying a compatibility break.
You can certainly argue that the switch should have been more progressive. Having to break one thing shouldn't be seen as an opportunity to break 10 other things. Some things like print function could be imported from future. PHP handled this via a config file, feature by feature. The big question is if that would have made the py2 -> py3 transition faster, but nobody has an answer to that. The python devs were clearly surprised that the transition took so much time.
What I don't agree with is the idea that we should never break compatibility. Of course it's very costly and should be done very rarely and very carefully. Having to port code or to keep an old interpreter/compiler around is no fun. But at some point, it becomes even less fun to be dragging along old cruft, making the language and tools self-defeatingly complex for the sake of backward-compatibility (hello, C and C++ !).
To put things back in perspective with the article, the choice of default python version might cause breakages but those are trivial to fix, and that choice arguably belongs to the system administrator rather than language devs anyway.
Revisiting PEP 394
Posted Mar 5, 2019 19:45 UTC (Tue)
by Cyberax (✭ supporter ✭, #52523)
[Link] (12 responses)
Posted Mar 5, 2019 19:45 UTC (Tue) by Cyberax (✭ supporter ✭, #52523) [Link] (12 responses)
The thing is, Py2->3 porting does not give you any advantages. Py3 code is not safer or more concise, it doesn't provide you any new powerful abstractions. And for a long time it had been quite often slower than Py2 (it's _mostly_ fixed now).
Revisiting PEP 394
Posted Mar 5, 2019 23:52 UTC (Tue)
by anselm (subscriber, #2796)
[Link] (8 responses)
Posted Mar 5, 2019 23:52 UTC (Tue) by anselm (subscriber, #2796) [Link] (8 responses)
The thing is, Py2->3 porting does not give you any advantages.
These days if you want up-to-date third-party library support then Python 3 is pretty much required. For example, you can't use current Django with Python 2 (the last version of Django to support Python 2 is on “extended support” – fixes for security and data-loss bugs only – until April 2020 or so), and many other important projects have similarly committed to supporting Python 3 only going forward.
These projects don't do this just to spite Python 2 users. Not having to support a codebase that must run on both Python 2 and 3 makes life a lot easier for them, and lets them concentrate on producing better Python 3 code.
And for a long time it had been quite often slower than Py2 (it's _mostly_ fixed now).
Not just “fixed”. In various important areas, Python 3 is now considerably faster than Python 2 ever was.
Revisiting PEP 394
Posted Mar 6, 2019 1:00 UTC (Wed)
by Cyberax (✭ supporter ✭, #52523)
[Link] (7 responses)
Posted Mar 6, 2019 1:00 UTC (Wed) by Cyberax (✭ supporter ✭, #52523) [Link] (7 responses)
This is not an "advantage", it's simply an inevitable forced churn.
> Not just “fixed”. In various important areas, Python 3 is now considerably faster than Python 2 ever was.
That had been not so for many years, I'd say until later 2017.
Also in a better world Py3 branch would have been abandoned and improvements ported into Py2, resulting in even more speedup.
PHP (amazingly) did the right thing by abandoning PHP6 and instead focusing on improving existing version.
Revisiting PEP 394
Posted Mar 6, 2019 10:27 UTC (Wed)
by anselm (subscriber, #2796)
[Link] (6 responses)
Posted Mar 6, 2019 10:27 UTC (Wed) by anselm (subscriber, #2796) [Link] (6 responses)
This is not an "advantage", it's simply an inevitable forced churn.
It is an advantage in the real world (as opposed to the fantasy world where Python 3 didn't happen), because Python 3 isn't going away – Python 2 is. Bitching and moaning won't change that.
PHP (amazingly) did the right thing by abandoning PHP6 and instead focusing on improving existing version.
And guess what: PHP is still a terrible language :^)
Revisiting PEP 394
Posted Mar 6, 2019 10:40 UTC (Wed)
by Cyberax (✭ supporter ✭, #52523)
[Link] (5 responses)
Posted Mar 6, 2019 10:40 UTC (Wed) by Cyberax (✭ supporter ✭, #52523) [Link] (5 responses)
I've started a couple of 100k line projects in Py2 during the last 3 years. Mwaahahaha! I hope to do more of that, Py2 must live forever!
> And guess what: PHP is still a terrible language :^)
Yes it is. Not that Python is much better now.
Perl developers also did all the right things:
1) They hard-forked the language. But Perl5 is supported and is being improved all the time. The current Perl5 interpreter is much faster than 10 years ago, for example. In contrast, Python developers abandoned the Py2 code base (only occasionally shitting on it to break existing software).
2) They used a language fork as an excuse to drastically improve the language: Perl6 has no GIL, it has truly well thought out Unicode support and the language itself has been regularized. Initial 4 versions of Python 3 had no real improvements whatsoever compared to Py2.
3) There's no drive to force everyone to forget Perl 5. No self-celebratory sites "Perl5 days to death" or any other such nonsense.
Revisiting PEP 394
Posted Mar 6, 2019 11:55 UTC (Wed)
by excors (subscriber, #95769)
[Link] (3 responses)
Posted Mar 6, 2019 11:55 UTC (Wed) by excors (subscriber, #95769) [Link] (3 responses)
If I remember correctly, for years it existed only as documentation. Then there was the Parrot VM (which was meant to be generic enough to run any dynamic language including Perl 6, which in practice meant the VM developers just wrote a garbage-collected continuation-passing-style assembly language and didn't really care about any high-level language at all; and most of the work was done by two people, but they fell out and one quit). Then someone got fed up with the slow progress of Parrot and wrote Pugs (but that was more of a prototyping tool than a production-quality implementation, and it was written in Haskell so even fewer people would be able to contribute to it).
I stopped paying attention before Rakudo, which appears to be somewhat usable now (though with poor performance)? And apparently the Perl 6 language was declared stable in 2015, twelve years after the first Perl 6 book was published. But it's hard to lose such a long-standing well-deserved reputation as a joke and as a community that doesn't get things done.
In contrast, Python 3 had the misfortune of being successful. By the time people realised it was a terrible idea to break compatibility so heavily for such minor gains, it was too late to stop.
Revisiting PEP 394
Posted Mar 6, 2019 18:45 UTC (Wed)
by Cyberax (✭ supporter ✭, #52523)
[Link]
Posted Mar 6, 2019 18:45 UTC (Wed) by Cyberax (✭ supporter ✭, #52523) [Link]
Had Py2 been supported then Py3 would have been a similar "failure".
It also took almost 10 years for Py3 to gain serious traction.
Revisiting PEP 394
Posted Mar 24, 2019 15:09 UTC (Sun)
by naptastic (guest, #60139)
[Link] (1 responses)
Posted Mar 24, 2019 15:09 UTC (Sun) by naptastic (guest, #60139) [Link] (1 responses)
It's only a failure if you don't learn from it.
Revisiting PEP 394
Posted Mar 25, 2019 14:53 UTC (Mon)
by anselm (subscriber, #2796)
[Link]
Posted Mar 25, 2019 14:53 UTC (Mon) by anselm (subscriber, #2796) [Link]
“If you can't be a great success then at least try to be a horrible warning.”
Revisiting PEP 394
Posted Mar 8, 2019 12:51 UTC (Fri)
by moltonel (guest, #45207)
[Link]
Posted Mar 8, 2019 12:51 UTC (Fri) by moltonel (guest, #45207) [Link]
Cobol is alive too, so python2 should be safe. I guess now's as good a time as any to set up your job security :p
Revisiting PEP 394
Posted Mar 8, 2019 12:39 UTC (Fri)
by moltonel (guest, #45207)
[Link] (2 responses)
Posted Mar 8, 2019 12:39 UTC (Fri) by moltonel (guest, #45207) [Link] (2 responses)
I guess your python2 code never had an issue with text encoding ? Perhaps you were very careful to do all the correct calls where needed, or perhaps you were lucky with your input data. It's much harder to get things wrong with python3. To me that was py3's biggest selling point, but other people will have different favorite features (including some making code more concise or performant).
Also, it's unfair to complain that removal of deprecated stuff doesn't yield improvements on day 1. It takes time to take advantage of the cleaned up code. For example removing support for classic classes doesn't bring anything by itself, but it opens the door to improvements down the road.
Revisiting PEP 394
Posted Mar 8, 2019 17:52 UTC (Fri)
by Cyberax (✭ supporter ✭, #52523)
[Link] (1 responses)
Posted Mar 8, 2019 17:52 UTC (Fri) by Cyberax (✭ supporter ✭, #52523) [Link] (1 responses)
Revisiting PEP 394
Posted Mar 8, 2019 19:51 UTC (Fri)
by mirabilos (subscriber, #84359)
[Link]
Posted Mar 8, 2019 19:51 UTC (Fri) by mirabilos (subscriber, #84359) [Link]
Some of the recent fixes will help, though.
Have your cake and eat it too
Posted Mar 9, 2019 1:07 UTC (Sat)
by ewen (subscriber, #4772)
[Link]
Posted Mar 9, 2019 1:07 UTC (Sat) by ewen (subscriber, #4772) [Link]
* What /usr/bin/python invokes (which is commonly in older #! lines); and
* What gets run when a user types "python" at the command line
For backwards compatibility, "#! /usr/bin/python" pretty much has to invoke a Python 2 compatible interpreter, or fail very obviously ("interpreter not found") for the foreseeable future (5+ years, maybe 10). Because (a) all the older not updated programs have "#! /usr/bin/python" in them, and (b) all the newer, updated, programs have "#! /usr/bin/python3" in them. So by definition anything invoking /usr/bin/python explicitly as its interpreter has not been updated for Some Time (tm).
But the discussion on this thread, and the discussion about PEP 394 updates in general, suggest that a lot of people would understandably like it if the user typing "python" at their command line invoked a recent version of Python, eg, Python 3.6 or Python 3.7 (or even Python 3.8 soon). At this point I'd like that too.
There is solution that achieves both of these problems:
1. /usr/bin/python points at /usr/bin/python2 if it is installed and is missing otherwise; *and*
2. There is a "python" program in *another directory on the default PATH* which points at /usr/bin/python3.
So running /usr/bin/python gets Python 2, and running "python" gets a modern Python 3+.
All this needs is another directory on the PATH earlier (even /usr/local/bin), and a "python" link in there which points at /usr/bin/python3. So, eg:
ln -s /usr/bin/python3 /usr/local/bin/python
installed as part of a "modern-python" type package would be sufficient to flip over what happens when you run "python".
There's a remaining surprise that "python" and "/usr/bin/python" are different, but it seems to me that's the *least* surprise possible in this situation, created over 10 years ago, of releasing a very incompatible successor to Python 2, ie Python 3. For better or worse, that degree of incompatibility permanently forked the language into Python 2 and Python 3; it's just that finally, 10 years later, the Python 3 fork is winning out.
Ewen