Differences between revisions 15 and 16
Revision 15 as of 2019-10-19 19:58:31
Size: 6829
Editor: JennyRyan
Comment: updated to reflect python2 EOL timeline
Revision 16 as of 2019-10-26 22:39:26
Size: 6841
Comment: Specify 3.x not 3.0 where more accurate, fix typos
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= What's Python 3.0? = = What's Python 3? =
Line 3: Line 3:
Python 3.0 is a new version of the language that is incompatible with the 2.x line of releases. The language is mostly the same, but many details, especially how built-in objects like dictionaries and strings work, have changed considerably, and a lot of deprecated features have finally been removed. The standard library has also been reorganized in a few prominent places. Python 3 is a new version of the language that is incompatible with the 2.x line of releases. The language is mostly the same, but many details, especially how built-in objects like dictionaries and strings work, have changed considerably, and a lot of deprecated features have finally been removed. The standard library has also been reorganized in a few prominent places.
Line 5: Line 5:
The aim of Python 3.0 is to clean up the language by removing little-used
features and changing the language's semantics; many such changes
cannot be made without breaking compatibility with Python code written for older versions. 
The aim of Python 3 is to clean up the language by removing little-used
features and changing the language's semantics. Many such changes
cannot be made without breaking compatibility with Python code written for older versions.
Line 12: Line 12:
as a mythical future version of Python that wouldn't have to be compatible 
with existing code. As the developers began to actually 
work on designing and implementing this redesigned version, it slowly 
was renamed into the more concrete "version 3.0".
as a mythical future version of Python that wouldn't have to be compatible
with existing code. As the developers began to actually
work on designing and implementing this redesigned version, it slowly
was renamed into the more concrete "version 3.0", and from there to other 3.x versions.
Line 22: Line 22:
Read [[http://docs.python.org/3.0/whatsnew/3.0.html|What's New in Python 3.0]],  Read [[http://docs.python.org/3.0/whatsnew/3.0.html|What's New in Python 3.0]],
Line 29: Line 29:
If you rely on Python 2.x and don’t plan to have completed the switch to Python 3 by the sunset deadline, you have until the end of 2019 to file any issues you would like to see fixed in the final release, 2.7.18, in April of 2020.  If you rely on Python 2.x and don’t plan to have completed the switch to Python 3 by the sunset deadline, you have until the end of 2019 to file any issues you would like to see fixed in the final release, 2.7.18, in April of 2020.
Line 35: Line 35:
= How should I port existing Python code to Python 3.0? = = How should I port existing Python 2.x code to Python 3.x? =
Line 37: Line 37:
Python 2.6+ and 3.0 include a tool called 2to3
that parses Python 2.x code and rewrites it to work in Python 3.0.
Python 2.6+ and 3.x include a tool called 2to3
that parses Python 2.x code and rewrites it to work in Python 3.x.
Line 41: Line 41:
We suggest the following steps for porting a package to 3.0: We suggest the following steps for porting a package to 3.x:
Line 43: Line 43:
* Have a test suite that exercises significant portions of  * Have a test suite that exercises significant portions of
Line 46: Line 46:
* Run the test suite using Python 2.6+ and specifying the `-3` switch, which enables warnings about code that's incompatible with Python 3.0. Modify the code to avoid triggering the warnings. * Run the test suite using Python 2.6+ and specifying the `-3` switch, which enables warnings about code that's incompatible with Python 3. Modify the code to avoid triggering the warnings.
Line 48: Line 48:
* Run the `2to3` script over the code. If `2to3` can't perform the conversion due to code constructs that can't be automatically translated, modify your 2.x code to use 3.0-compatible
features.
* Run the `2to3` script over the code. If `2to3` can't perform the conversion due to code constructs that can't be automatically translated, modify your 2.x code to use 3.x-compatible features.
Line 51: Line 50:
* Once `2to3` can convert your code without complaint, try running the test suite using the 3.0-transformed version. Examine any test failures and modify the 2.x code responsible to be 3.0-compatible until the test suite succeeds using the transformed version. * Once `2to3` can convert your code without complaint, try running the test suite using the 3.x-transformed version. Examine any test failures and modify the 2.x code responsible to be 3.x-compatible until the test suite succeeds using the transformed version.
Line 54: Line 53:
Consult [[http://docs.python.org/3.0/library/2to3.html|the 2to3 documentation]] for more information about the conversion tool, Consult [[http://docs.python.org/3/library/2to3.html|the 2to3 documentation]] for more information about the conversion tool,
Line 57: Line 56:
One approach to distributing your 3.0 package is to use 3.0's build_py_2to3 implementation of One approach to distributing your 3.x package is to use 3.x's build_py_2to3 implementation of
Line 61: Line 60:
in 3.0, lib2to3 will convert it to 3.x in the build area, and
then install the 3.0 version.
in 3.x, lib2to3 will convert it to 3.x in the build area, and
then install the 3.x version.
Line 65: Line 64:
2to3 will successfully and completely convert it.  2to3 will successfully and completely convert it.
Line 67: Line 66:
ported Django and Mark Hammond ported PythonWin to 3.0,  ported Django and Mark Hammond ported PythonWin to 3.0,
Line 73: Line 72:
* 2to3 leaves these changes in place
* they either have no effect or still work correctly when run in 2.x.
 * 2to3 leaves these changes in place
 * they either have no effect or still work correctly when run in 2.x.
Line 77: Line 76:
Guido van Rossum strongly suggests not changing 
your APIs when porting to 3.0, because API changes will 
make it difficult for users to tell whether test suite failures 
Guido van Rossum strongly suggests not changing
your APIs when porting to 3.0, because API changes will
make it difficult for users to tell whether test suite failures
Line 84: Line 83:
= How should I port existing C extensions to Python 3.0? = = How should I port existing C extensions to Python 3.x? =
Line 88: Line 87:
code that will compile with both 2.x and 3.0.   code that will compile with both 2.x and 3.0.
Line 91: Line 90:
  = How do I find out what packages have been ported to 3.0? =
Line 94: Line 91:
Packages listed in the [[http://pypi.python.org|Python Package Index]] can indicate whether they support Python 3.x.   = How do I find out what packages have been ported to 3.x? =

Packages listed in the [[http://pypi.python.org|Python Package Index]] can indicate whether they support Python 3.x.
Line 99: Line 98:
= My new release supports Python 3.0. How do I indicate that? = = My new release supports Python 3.x. How do I indicate that? =

What's Python 3?

Python 3 is a new version of the language that is incompatible with the 2.x line of releases. The language is mostly the same, but many details, especially how built-in objects like dictionaries and strings work, have changed considerably, and a lot of deprecated features have finally been removed. The standard library has also been reorganized in a few prominent places.

The aim of Python 3 is to clean up the language by removing little-used features and changing the language's semantics. Many such changes cannot be made without breaking compatibility with Python code written for older versions.

What's Python 3000?

Around 2000, the Python developers began to refer to "Python 3000" (or Py3K) as a mythical future version of Python that wouldn't have to be compatible with existing code. As the developers began to actually work on designing and implementing this redesigned version, it slowly was renamed into the more concrete "version 3.0", and from there to other 3.x versions.

The Python 3000 name lives on in a few places; for example, the Python 3.0 branch in Subversion is at the path "/branches/py3k/".

What changed in Python 3.0?

Read What's New in Python 3.0, which lists the changes between Python 2.6+ and Python 3.0.

What will happen to the Python 2.x versions?

Being the last of the 2.x series, 2.7 will receive bugfix support until 2020. Support officially stops 1 January 2020, but the final release will occur in April of 2020. No further releases, nor bug fixes, are planned after this date.

If you rely on Python 2.x and don’t plan to have completed the switch to Python 3 by the sunset deadline, you have until the end of 2019 to file any issues you would like to see fixed in the final release, 2.7.18, in April of 2020.

The penultimate Python 2.x release, 2.7.17, is slated to be released in October of 2019. Release Candidate 1 was made available on 9 October 2019. There will be some flexibility to fix any bugs or issues specifically introduced by the 2.7.17 release in January and February of 2020.

As users attempt to port packages to 3.x, they will surely report bugs in the compatibility and conversion tools, and Python 2.7 will incorporate the results of this feedback. As a result, new warnings will be added to the 3.0-compatibility mode, and new fixers will be added to the 2to3 conversion tool.

How should I port existing Python 2.x code to Python 3.x?

Python 2.6+ and 3.x include a tool called 2to3 that parses Python 2.x code and rewrites it to work in Python 3.x. 2to3 includes a large set of fixers, each one updating a particular language feature.

We suggest the following steps for porting a package to 3.x:

* Have a test suite that exercises significant portions of your library or application's functionality, the more the better.

* Run the test suite using Python 2.6+ and specifying the -3 switch, which enables warnings about code that's incompatible with Python 3. Modify the code to avoid triggering the warnings.

* Run the 2to3 script over the code. If 2to3 can't perform the conversion due to code constructs that can't be automatically translated, modify your 2.x code to use 3.x-compatible features.

* Once 2to3 can convert your code without complaint, try running the test suite using the 3.x-transformed version. Examine any test failures and modify the 2.x code responsible to be 3.x-compatible until the test suite succeeds using the transformed version.

Consult the 2to3 documentation for more information about the conversion tool, and PortingPythonToPy3k for more general suggestions.

One approach to distributing your 3.x package is to use 3.x's build_py_2to3 implementation of the build_py command. See Demo/distutils/test2to3 for an example.

You will have a single lib.py, written in 2.x. When you install in 3.x, lib2to3 will convert it to 3.x in the build area, and then install the 3.x version.

That, of course, requires you to adjust lib.py in such a way that 2to3 will successfully and completely convert it. In two experiments, Martin von Loewis ported Django and Mark Hammond ported PythonWin to 3.0, and found that these adjustments were quite feasible. You look at what 2to3 does, find out what additional modifications need to be done, and apply them to the input of 2to3 so that

  • 2to3 leaves these changes in place
  • they either have no effect or still work correctly when run in 2.x.

In this weblog posting, Guido van Rossum strongly suggests not changing your APIs when porting to 3.0, because API changes will make it difficult for users to tell whether test suite failures are due to the 2.6+->3.0 transition or to the API changes.

Early2to3Migrations has links to some early attempts at porting packages to 3.x.

How should I port existing C extensions to Python 3.x?

Benjamin Peterson's Porting Extension Modules to 3.0 describes some of the changes to Python's C API, and gives some tips for writing code that will compile with both 2.x and 3.0. The draft in this wiki may be more complete.

How do I find out what packages have been ported to 3.x?

Packages listed in the Python Package Index can indicate whether they support Python 3.x. You can view a list of 3.x-compatible packages by searching for the "Programming Language :: Python :: 3" classifier in the package index.

My new release supports Python 3.x. How do I indicate that?

If you're using your setup.py file to upload a package to the Python Package Index, include "Programming Language :: Python :: 3" as one of the classifiers.

I want to start learning/teaching Python. What version should I use?

Support for Python 2.x will officially end on 1 January 2020. After that date, there will be no further updates nor bugfixes. Since this end-of-life date has been planned for nearly a decade (the first end-of-life date was slated to happen in 2014, and was pushed back to 2020), and nearly all popular libraries have already ported their code, Python 2.x is well on its way to obsolescence. As such, we can only recommend learning and teaching Python 3 - which is simpler and will remain relevant well into the future.

See the BeginnersGuide for more information on getting started with Python.

Python3FAQ (last edited 2019-11-09 22:42:59 by FrancesHocutt)

Unable to edit the page? See the FrontPage for instructions.