Notice: While JavaScript is not essential for this website, your interaction with the content will be limited. Please turn JavaScript on for the full experience.
...modules is now greatly automated. Rather than having to edit the Modules/Setup file to indicate which modules should be built and where their include files and libraries are, a distutils-based setup.py script now takes care of building most extension modules. All extension modules built this way are built as shared libraries. Only a few modules that must be linked statically are still listed in the Setup file; you won't need to edit their configuration. Python should now build out of the box ...
...modules, the "Extension Building Considered Painful" Developer's Day Session also came up with a proposed user interface. The core idea of the interface is that the module developer would provide a small Python script, called setup.py for purposes of illustration (although it is hoped that this convention catches on!). This script would have two components: meta-data about the module distribution (name, version number, description, etc.), written as Python co...
...module. Non-matching ranges are indicated by -1, not None. (The documentation said None, but the PRE implementation used -1; changing to None would break existing code.) The winreg module has been renamed to _winreg. (There are plans for a higher-level API called winreg, but this has not yet materialized in a form that is acceptable to the experts.) The _locale module is enabled by default. Fixed the configuration line for the _curses module. A few crashes have been fixed, notably <file>...
...module__ attribute that is bound to the name of the module in which the function was defined. This applies for C functions and methods as well as functions and methods defined in Python. This attribute is used by pickle.whichmodule(), which changes the behavior of whichmodule slightly. In Python 2.2 whichmodule() returns "__main__" for functions that are not defined at the top-level of a module (examples: methods, nested functions). Now whichmodule() will return the proper module na...
Version: None
Released: March 17, 2014
Python 3.4.0 Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.0 was released on March 16th, 2014. Major new features of the 3.4 series, compared to 3.3 Python 3.4 includes a range of improvements of the 3.x series, including hundreds …
View Release Notes
Released: Oct. 4, 2014
This is a security-fix source-only release. The last binary release was 3.3.5. The list of fixed security related issues can be found in the NEWS file. Major new features of the 3.3 series, compared to 3.2 Python 3.3 includes a range of improvements of the 3.x series, as …
Released: Oct. 12, 2014
Python 3.3.x has reached end-of-life. Python 3.3.7, the final security-fix release, is available here. This is a security-fix source-only release. The list of fixed security related issues can be found in the NEWS file. Major new features of the 3.3 series, compared to 3.2 Python 3.3 includes a …
Released: June 27, 2016
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.5 was released on June 26th, 2016. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.4 and Python 3.4.5 are security fixes. Also, …
Released: Jan. 3, 2017
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.6 release candidate 1 was released on January 2nd, 2017. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.4 and Python 3.4.5 are …
Released: Jan. 17, 2017
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.6 was released on January 17th, 2017. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.4 and Python 3.4.5 are security fixes. Also, …
Released: July 25, 2017
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.7rc1 was released on July 25th, 2017. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.6 and Python 3.4.7 are security fixes. Also, …
Released: Aug. 9, 2017
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.7 was released on August 9th, 2017. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.6 and Python 3.4.7 are security fixes. Also, …
Released: Jan. 23, 2018
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.8rc1 was released on January 23rd, 2018. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.7 and Python 3.4.8rc1 are security fixes. Also, …
Released: Feb. 5, 2018
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.8 was released on February 4th, 2018. Python 3.4 has now entered "security fixes only" mode, and as such the only improvements between Python 3.4.7 and Python 3.4.8 are security fixes. Also, …
Released: July 20, 2018
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.9rc1 was released on July 19th, 2018. Python 3.4 has now entered "security fixes only" mode, and as such the only changes since Python 3.4.7 are security fixes. Also, Python 3.4.9rc1 has …
Released: Aug. 2, 2018
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.9 was released on August 2nd, 2018. Python 3.4 has now entered "security fixes only" mode, and as such the only changes since Python 3.4.7 are security fixes. Also, Python 3.4.9 has …
Released: March 4, 2019
Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.10rc1 was released on March 4th, 2019. Python 3.4 has now entered "security fixes only" mode, and as such the only changes since Python 3.4.7 are security fixes. Also, Python 3.4.10rc1 has …
...module(s) document document the module(s) (note that the problem of documenting Python modules in a standard way is outside the purview of the Distutils-SIG; however, if such a standard way does materialize, we should do what we can to support it, such as provide simple interfaces to the standard documentation-processing tools) provide test suite write code that tests (theoretically) every part of the module(s), and reports...
...module PEP 451, standardizing module metadata for Python's module import system PEP 453, a bundled installer for the pip package manager PEP 454, a new "tracemalloc" module for tracing Python memory allocations PEP 456, a new hash algorithm for Python strings and binary data PEP 3154, a new and improved protocol for pickled objects PEP 3156, a new "asyncio" module, a new framework for asynchronous I/O More resources Online Documentation 3.4 Release Schedule Report bugs at...
If you didn't find what you need, try your search in the Python language documentation.