Will Python 3.0's backwards-incompatibility affect adoption? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:42:57Z http://stackoverflow.com/feeds/question/340530 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption 6 Will Python 3.0's backwards-incompatibility affect adoption? George Stocker 2008-12-04T13:11:28Z 2008-12-05T23:46:58Z <p>I visited <a href="http://slashdot.org" rel="nofollow">Slashdot</a> this morning to find out that <a href="http://developers.slashdot.org/article.pl?sid=08/12/04/0420219" rel="nofollow">Python 3.0</a> has been released. I know C# and Perl, but have wanted to learn Python for some time, especially after I saw its <a href="http://stackoverflow.com/questions/6936/using-what-ive-learned-from-stackoverflow-html-scraper">ease of use</a> to create useful tools, not to mention its use in <a href="http://developers.slashdot.org/article.pl?sid=05/09/17/182207" rel="nofollow">game scripting</a>. </p> <p>My question is, how does the intentionally backwards-incompatible release of Python 3.0 affect adoption, and should I learn Python 2? Or should I take the dive and learn Python 3.0 first, and wait for the libraries to be ported?</p> http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/340540#340540 4 Answer by S.Lott for Will Python 3.0's backwards-incompatibility affect adoption? S.Lott 2008-12-04T13:14:25Z 2008-12-04T14:05:01Z <p>Python 2.6 is the bridge to 3.0.</p> <p>Backward compatibility is a complete non-issue. It's minor, isolated and specialized. There are only a few things that <em>most</em> people will notice are incompatible, primarily the loss of the <code>print</code> statement.</p> <p>There's a specific conversion strategy and tools for checking your code for compatibility and making the necessary changes.</p> <p>It will be painless. Learn with 2.6, using the 3.0 features. It'll all be good.</p> http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/340615#340615 7 Answer by kgiannakakis for Will Python 3.0's backwards-incompatibility affect adoption? kgiannakakis 2008-12-04T13:42:46Z 2008-12-04T13:42:46Z <p>I don't think it will affect adoption in the long run, but it certainly won't be painless. Python's motto and strategic advantage has always been "Batteries Included". This was not only due to the Standard Library, but also due to the many external libraries. Will libraries like NumPy, SciPy, WxPython, PyGame (just to name a few) work from day one? It will take some time foreverything to consolidate. Also, what about older systems that have an old 2.x version of Python. In few years from now I may found out that I need to update a library. Will the library author continue to support the 2.6 version so that I have a choice? For how long will 2.6 distributions be available for legacy systems? A change of this size is never easy.</p> <p>For someone starting to use Python now, I suggest to go with Python 2.6, which is actually a bridge between the two worlds.</p> http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/340667#340667 7 Answer by Ed for Will Python 3.0's backwards-incompatibility affect adoption? Ed 2008-12-04T14:01:36Z 2008-12-04T14:01:36Z <p>I think it will hurt for a time, but not as bad ad PHP4 to PHP5 is. As is mentioned by someone else, the biggest issue is "Are the libraries I use ported?" There will continue to be dual releases of Python 2.X and 3.X for a time for the purpose of slowly transitioning people. is it worth it for a large system that is in maintenance mode? Probably not (until something bad happens).</p> <p>There is a great <a href="http://docs.python.org/dev/3.0/whatsnew/3.0.html#porting-to-python-3-0" rel="nofollow">porting guide</a> though and they have tried to make the transition as easy as possible. The one note I would add to it is "Make sure you are importing all the __ future__ statements possible (like print as a function). I don't know how the 2to3 script handles it but that at least gets you some of the code changed and tested.</p> <p>portingGuide = """ For porting existing Python 2.5 or 2.6 source code to Python 3.0, the best strategy is the following:</p> <ol> <li>(Prerequisite:) Start with excellent test coverage.</li> <li>Port to Python 2.6. This should be no more work than the average port from Python 2.x to Python 2.(x+1). Make sure all your tests pass.</li> <li>(Still using 2.6:) Turn on the -3 command line switch. This enables warnings about features that will be removed (or change) in 3.0. Run your test suite again, and fix code that you get warnings about until there are no warnings left, and all your tests still pass.</li> <li>Run the 2to3 source-to-source translator over your source code tree. (See 2to3 - Automated Python 2 to 3 code translation for more on this tool.) Run the result of the translation under Python 3.0. Manually fix up any remaining issues, fixing problems until all tests pass again.</li> </ol> <p>It is not recommended to try to write source code that runs unchanged under both Python 2.6 and 3.0; you’d have to use a very contorted coding style, e.g. avoiding print statements, metaclasses, and much more. If you are maintaining a library that needs to support both Python 2.6 and Python 3.0, the best approach is to modify step 3 above by editing the 2.6 version of the source code and running the 2to3 translator again, rather than editing the 3.0 version of the source code.</p> <p>For porting C extensions to Python 3.0, please see Porting Extension Modules to 3.0. """</p> http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/340779#340779 1 Answer by J.T. Hurley for Will Python 3.0's backwards-incompatibility affect adoption? J.T. Hurley 2008-12-04T14:35:21Z 2008-12-04T14:35:21Z <p>I don't think anyone expects Python 3 to be instantly adopted. As far as I know, GvR is still planning on supporting the 2.x line for several more years while Python 3 gathers momentum.</p> <p>I think the signal that the transfer is complete will be when the O'Reilly books update to 3.x. Until then, it's transitional. :)</p> http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/341022#341022 1 Answer by Jeremy Michael Cantrell for Will Python 3.0's backwards-incompatibility affect adoption? Jeremy Michael Cantrell 2008-12-04T15:38:45Z 2008-12-04T15:38:45Z <p>For me, personally, the moment I start using it for real work (over 2.5) will be when it becomes ubiquitous among linux distributions (particularly debian/ubuntu). At the very least, it needs to be in an apt repo somewhere.</p>