"Python 3 will be available in 2008 but we understand that you won't use it for at least 5 years."
There's an entire class of developers who won't upgrade until they absolutely have to. There's also a class of administrator that won't upgrade their current PC browser from IE6-IE8 until they absolutely have to. Developers are basically screwing themselves by not drawing a firm line.
Also, even if I am starting an existing project, what if down the line I must use a library that's only available for Python 2? I am not going to rewrite something like that because it will cost my client money if I spend time on it.
The problem with Python 2 is that it's good enough. Python 3 is a huge improvement, yet until I can be reasonably sure that all libraries I am likely to use are available for both, Python 2 is the winner.
Having said that, any personal projects I have started recently have all used Python 3 and it's been great. I also try to make sure that any libraries I write work in both.
My primary machine runs Arch Linux, a distro that switched the /usr/bin/python link to python3 some months ago, thus generating a sort of "majority Python 3" environment. I myself, having been rather apathetic on the switchover before, have switched completely to Python 3 just because using Python 2.x has become a hassle.
Admittedly, I am in the fortunate position that all my active python projects could be moved over easily, once boost-python and matplotlib were solidly 3-ready. Other libaries are more problematic (looking at you, every Django-plugin out there).
My point is, Python 2 won't be good enough for long and for some of us it already isn't any more.
Citation needed. Even the devs aren't trying to sell it as much more than a clean up. Very little is actually qualitatively better, and there are some regressions also - for one, last time I looked it was still about 10% slower than Python 2 in most benchmarks.
It's an improvement, but it's not huge. It's a better language, but it's still the Python we all know and love without a couple warts.
For instance, I do some utility class software that needs to just work on RedHat/CentOS 6. Having to build Python 3 from source, or use SCL and mess with paths, and virtualenvs is simply not an option for my target user.
I think the part that might be missing from your line of reasoning is context: For professionals and entrepreneurs programming isn't a hobby, it's a business.
The decision to stay with 2.x isn't about not being self-aware. It's about being serious about your business. Business has nothing to do with self-awareness. It would be irresponsible to send your organization down a path that could result in a huge setback.
If you are self-funded this could absolutely kill you. If you are in a competitive environment where time to market is crucial (who isn't) this could kill you. If you have investors who expect you to make responsible decisions, they could kill you.
How are you going to explain the decision to go to 3.x when the fertilizer hits the ventilator and you realize there are three choices in front of you:
1- Redo your entire codebase to migrate down to 2.x.
2- Launch a new project to rewrite the 2.x libraries you need.
This could take one week or one year.
3- Shut it down because you don't have enough cash to deal
with having made the wrong decision.
And, here's the kicker: You won't know until you hit that wall. Sure, you can do an initial dependencies survey. And hope you went deep enough. By definition, you will have no way to check dependencies you don't know about at the start of the project.The bottom line is that in the context of a real business --not a hobby-- sticking with 2.x is probably the only responsible choice for a huge number of organizations. I really think the Python leaders made a mistake in not coming up with a smooth on-ramp onto the various ideas in 3.x. I do understand that some things need to be broken sometimes. In the real world you can only break so much of a codebase before people avoid it like the plague.
Here's the other reality: The customer doesn't give a damn whether you are using 2.x, 3.x, Python, Lisp, PHP or assembler. They buy your product or use your service because of the value they derive from it. For the vast majority of businesses and customers this has nothing whatsoever to do with the technology choices you make behind the scenes. If this fact isn't obvious, study the history of a number of prominent startups and you'll find support for this idea.
It's easy to fall back on engineering think and forget reality. I do it all the time. Over the years I've become better at avoiding thinking like that. Like wanting to build a product without doing market research and, a year later, finding out the hard way nobody wants it.
I'm not criticizing you here. I am simply pointing out something we all do from time to time.
Maybe if van Rossum had produced a compelling reason to switch (like, for example, removing the GIL) I would have gone over by now.
Most academics--from an engineering standpoint, mind!--write really shitty and garbage code, under deadline to submit yet another paper for the mill.
There is no surprise that they would be unable/unwilling to appreciate the long-term damage they inflict on themselves when using what should be deprecated features.
Meanwhile, Rubyists and Node rockstars are laughing all the way to the bank, and the Erlang bros are already there.
EDIT:
Okay, fine, downvote, but at least mention which part of that statement you disagree with.
flask: yes, mysqldb: no, pycassa: no
I guess I can't use python 3 yet still.
From what I have read, a lot of people have had trouble installing pymysql, the proposed python 3 mysql library.
http://flask.pocoo.org/docs/python3/#python3-support
http://lucumr.pocoo.org/2014/1/5/unicode-in-2-and-3/
Which kind of sums up the whole Python 3 situation.
You can then download that, and use something like 2to3 to convert it.
2to3 is bad and the code involved has to be tested using it anyway.
The normal way to install Python packages is not by manually downloading them
Arch has python -> python3, so it's quite rare that you'd have a python2-foobar package but not a python-foobar package, unless there was no python3 version.
Only in some cases. Pretty much anything that handles binary formats on the wire will need some tweaking.
ruby 1.9 transition was actually a pretty big pain (I have no idea whether as big a pain as python2->3 or not, that'd be something to look at).
But the ruby ecosystem/community has successfully moved to 1.9, there is little left on 1.8.
On the other hand, sometimes it's _really_ frustrating how much work I need to spend upgrading my ruby stuff to use the latest and greatest. Ruby community is relatively uncaring about backwards compat (less than python? I am not sure. Is that uncaringness part of the tradeoff that got us to all move to ruby 1.9 somehow? I don't know, but that's what I'm wondering. Many interesting questions.)
But there was a strong push from developers. I don't see that happening when Python developers' attitude is "Meh, Python 2 is all right, I don't need to upgrade anything ever".
I looked at
- PyOpenGL, no windowing.
- PyGlet, Python 2.7.
- PyQt, only OpenGL 2.
- PySide, outdated Qt version and more or less unmaintained.
- wxPython, Python 2.7.
- PyGame, Python 2.7.
So, no dice. This is really terrible. Also, the hoops I had to jump through to get some of these installed was just ridiculous.
The solution I ended up with? Tornado, websockets and WebGL. Because that is the easiest way I could find to write 3D visualizations for scientific Python. Not Python.
Edit: Ah, here we go: https://pypi.python.org/pypi/caniusepython3. This is the command-line version.
Thanks for that though. It will be much more useful with requirements files.
The lesson learned will be, to implement changes more incrementally so people are gradually upgrading instead of having a high step.
The worst problem I ran into was that it didn't know which strings were supposed to be bytes or unicode. And the program would throw a runtime error when it tried to do something like use a byte regex on a unicode string.
Forbidden (403)
CSRF verification failed. Request aborted.
You are seeing this message because this HTTPS site requires a 'Referer header' to be sent by your Web browser, but none was sent. This header is required for security reasons, to ensure that your browser is not being hijacked by third parties.
If you have configured your browser to disable 'Referer' headers, please re-enable them, at least for this site, or for HTTPS connections, or for 'same-origin' requests.You can check it using CLI! http://vpaste.net/UuOFT Source code is available here! https://github.com/jezdez/caniusepython3.com
Disclaimer: I'm NOT the author.
Forbidden (403)
CSRF verification failed. Request aborted.
just because the referrer is missing.Is it sensible?