### 導航
- [索引](../genindex.xhtml "總目錄")
- [模塊](../py-modindex.xhtml "Python 模塊索引") |
- [下一頁](3.3.xhtml "What's New In Python 3.3") |
- [上一頁](3.5.xhtml "Python 3.5 有什么新變化") |
- 
- [Python](https://www.python.org/) ?
- zh\_CN 3.7.3 [文檔](../index.xhtml) ?
- [Python 有什么新變化?](index.xhtml) ?
- $('.inline-search').show(0); |
# What's New In Python 3.4
作者R. David Murray <[rdmurray@bitdance.com](mailto:rdmurray%40bitdance.com)> (Editor)
This article explains the new features in Python 3.4, compared to 3.3. Python 3.4 was released on March 16, 2014. For full details, see the [changelog](https://docs.python.org/3.4/whatsnew/changelog.html) \[https://docs.python.org/3.4/whatsnew/changelog.html\].
參見
[**PEP 429**](https://www.python.org/dev/peps/pep-0429) \[https://www.python.org/dev/peps/pep-0429\] -- Python 3.4 Release Schedule
## 摘要 - 發布重點
新的語法特性:
- No new syntax features were added in Python 3.4.
Other new features:
- [pip should always be available](#whatsnew-pep-453) ([**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\]).
- [Newly created file descriptors are non-inheritable](#whatsnew-pep-446)([**PEP 446**](https://www.python.org/dev/peps/pep-0446) \[https://www.python.org/dev/peps/pep-0446\]).
- command line option for [isolated mode](#whatsnew-isolated-mode)([bpo-16499](https://bugs.python.org/issue16499) \[https://bugs.python.org/issue16499\]).
- [improvements in the handling of codecs](#codec-handling-improvements)that are not text encodings (multiple issues).
- [A ModuleSpec Type](#whatsnew-pep-451) for the Import System ([**PEP 451**](https://www.python.org/dev/peps/pep-0451) \[https://www.python.org/dev/peps/pep-0451\]). (Affects importer authors.)
- The [`marshal`](../library/marshal.xhtml#module-marshal "marshal: Convert Python objects to streams of bytes and back (with different constraints).") format has been made [more compact and efficient](#whatsnew-marshal-3) ([bpo-16475](https://bugs.python.org/issue16475) \[https://bugs.python.org/issue16475\]).
新的庫模塊:
- [`asyncio`](../library/asyncio.xhtml#module-asyncio "asyncio: Asynchronous I/O."): [New provisional API for asynchronous IO](#whatsnew-asyncio) ([**PEP 3156**](https://www.python.org/dev/peps/pep-3156) \[https://www.python.org/dev/peps/pep-3156\]).
- [`ensurepip`](../library/ensurepip.xhtml#module-ensurepip "ensurepip: Bootstrapping the "pip" installer into an existing Python installation or virtual environment."): [Bootstrapping the pip installer](#whatsnew-ensurepip)([**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\]).
- [`enum`](../library/enum.xhtml#module-enum "enum: Implementation of an enumeration class."): [Support for enumeration types](#whatsnew-enum)([**PEP 435**](https://www.python.org/dev/peps/pep-0435) \[https://www.python.org/dev/peps/pep-0435\]).
- [`pathlib`](../library/pathlib.xhtml#module-pathlib "pathlib: Object-oriented filesystem paths"): [Object-oriented filesystem paths](#whatsnew-pathlib)([**PEP 428**](https://www.python.org/dev/peps/pep-0428) \[https://www.python.org/dev/peps/pep-0428\]).
- [`selectors`](../library/selectors.xhtml#module-selectors "selectors: High-level I/O multiplexing."): [High-level and efficient I/O multiplexing](#whatsnew-selectors), built upon the [`select`](../library/select.xhtml#module-select "select: Wait for I/O completion on multiple streams.") module primitives (part of [**PEP 3156**](https://www.python.org/dev/peps/pep-3156) \[https://www.python.org/dev/peps/pep-3156\]).
- [`statistics`](../library/statistics.xhtml#module-statistics "statistics: mathematical statistics functions"): A basic [numerically stable statistics library](#whatsnew-statistics) ([**PEP 450**](https://www.python.org/dev/peps/pep-0450) \[https://www.python.org/dev/peps/pep-0450\]).
- [`tracemalloc`](../library/tracemalloc.xhtml#module-tracemalloc "tracemalloc: Trace memory allocations."): [Trace Python memory allocations](#whatsnew-tracemalloc) ([**PEP 454**](https://www.python.org/dev/peps/pep-0454) \[https://www.python.org/dev/peps/pep-0454\]).
Significantly improved library modules:
- [Single-dispatch generic functions](#whatsnew-singledispatch) in [`functools`](../library/functools.xhtml#module-functools "functools: Higher-order functions and operations on callable objects.") ([**PEP 443**](https://www.python.org/dev/peps/pep-0443) \[https://www.python.org/dev/peps/pep-0443\]).
- New [`pickle`](../library/pickle.xhtml#module-pickle "pickle: Convert Python objects to streams of bytes and back.") [protocol 4](#whatsnew-protocol-4) ([**PEP 3154**](https://www.python.org/dev/peps/pep-3154) \[https://www.python.org/dev/peps/pep-3154\]).
- [`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism.") now has [an option to avoid using os.fork on Unix](#whatsnew-multiprocessing-no-fork) ([bpo-8713](https://bugs.python.org/issue8713) \[https://bugs.python.org/issue8713\]).
- [`email`](../library/email.xhtml#module-email "email: Package supporting the parsing, manipulating, and generating email messages.") has a new submodule, [`contentmanager`](../library/email.contentmanager.xhtml#module-email.contentmanager "email.contentmanager: Storing and Retrieving Content from MIME Parts"), and a new [`Message`](../library/email.compat32-message.xhtml#email.message.Message "email.message.Message") subclass (`EmailMessage`) that [simplify MIME handling](#whatsnew-email-contentmanager) ([bpo-18891](https://bugs.python.org/issue18891) \[https://bugs.python.org/issue18891\]).
- The [`inspect`](../library/inspect.xhtml#module-inspect "inspect: Extract information and source code from live objects.") and [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") modules are now capable of correct introspection of a much wider variety of callable objects, which improves the output of the Python [`help()`](../library/functions.xhtml#help "help") system.
- The [`ipaddress`](../library/ipaddress.xhtml#module-ipaddress "ipaddress: IPv4/IPv6 manipulation library.") module API has been declared stable
安全改進:
- [Secure and interchangeable hash algorithm](#whatsnew-pep-456)([**PEP 456**](https://www.python.org/dev/peps/pep-0456) \[https://www.python.org/dev/peps/pep-0456\]).
- [Make newly created file descriptors non-inheritable](#whatsnew-pep-446)([**PEP 446**](https://www.python.org/dev/peps/pep-0446) \[https://www.python.org/dev/peps/pep-0446\]) to avoid leaking file descriptors to child processes.
- New command line option for [isolated mode](#whatsnew-isolated-mode), ([bpo-16499](https://bugs.python.org/issue16499) \[https://bugs.python.org/issue16499\]).
- [`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism.") now has [an option to avoid using os.fork on Unix](#whatsnew-multiprocessing-no-fork). *spawn* and *forkserver* are more secure because they avoid sharing data with child processes.
- [`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism.") child processes on Windows no longer inherit all of the parent's inheritable handles, only the necessary ones.
- A new [`hashlib.pbkdf2_hmac()`](../library/hashlib.xhtml#hashlib.pbkdf2_hmac "hashlib.pbkdf2_hmac") function provides the [PKCS#5 password-based key derivation function 2](https://en.wikipedia.org/wiki/PBKDF2) \[https://en.wikipedia.org/wiki/PBKDF2\].
- [TLSv1.1 and TLSv1.2 support](#whatsnew-tls-11-12) for [`ssl`](../library/ssl.xhtml#module-ssl "ssl: TLS/SSL wrapper for socket objects").
- [Retrieving certificates from the Windows system cert store support](#whatsnew34-win-cert-store) for [`ssl`](../library/ssl.xhtml#module-ssl "ssl: TLS/SSL wrapper for socket objects").
- [Server-side SNI (Server Name Indication) support](#whatsnew34-sni) for [`ssl`](../library/ssl.xhtml#module-ssl "ssl: TLS/SSL wrapper for socket objects").
- The [`ssl.SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext") class has a [lot of improvements](#whatsnew34-sslcontext).
- All modules in the standard library that support SSL now support server certificate verification, including hostname matching ([`ssl.match_hostname()`](../library/ssl.xhtml#ssl.match_hostname "ssl.match_hostname")) and CRLs (Certificate Revocation lists, see [`ssl.SSLContext.load_verify_locations()`](../library/ssl.xhtml#ssl.SSLContext.load_verify_locations "ssl.SSLContext.load_verify_locations")).
CPython 實現的改進:
- [Safe object finalization](#whatsnew-pep-442) ([**PEP 442**](https://www.python.org/dev/peps/pep-0442) \[https://www.python.org/dev/peps/pep-0442\]).
- Leveraging [**PEP 442**](https://www.python.org/dev/peps/pep-0442) \[https://www.python.org/dev/peps/pep-0442\], in most cases [module globals are no longer set to None during finalization](#whatsnew-pep-442) ([bpo-18214](https://bugs.python.org/issue18214) \[https://bugs.python.org/issue18214\]).
- [Configurable memory allocators](#whatsnew-pep-445) ([**PEP 445**](https://www.python.org/dev/peps/pep-0445) \[https://www.python.org/dev/peps/pep-0445\]).
- [Argument Clinic](#whatsnew-pep-436) ([**PEP 436**](https://www.python.org/dev/peps/pep-0436) \[https://www.python.org/dev/peps/pep-0436\]).
Please read on for a comprehensive list of user-facing changes, including many other smaller improvements, CPython optimizations, deprecations, and potential porting issues.
## 新的特性
### PEP 453: Explicit Bootstrapping of PIP in Python Installations
#### Bootstrapping pip By Default
The new [`ensurepip`](../library/ensurepip.xhtml#module-ensurepip "ensurepip: Bootstrapping the "pip" installer into an existing Python installation or virtual environment.") module (defined in [**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\]) provides a standard cross-platform mechanism to bootstrap the pip installer into Python installations and virtual environments. The version of `pip` included with Python 3.4.0 is `pip` 1.5.4, and future 3.4.x maintenance releases will update the bundled version to the latest version of `pip` that is available at the time of creating the release candidate.
By default, the commands `pipX` and `pipX.Y` will be installed on all platforms (where X.Y stands for the version of the Python installation), along with the `pip` Python package and its dependencies. On Windows and in virtual environments on all platforms, the unversioned `pip` command will also be installed. On other platforms, the system wide unversioned `pip` command typically refers to the separately installed Python 2 version.
The `pyvenv` command line utility and the [`venv`](../library/venv.xhtml#module-venv "venv: Creation of virtual environments.")module make use of the [`ensurepip`](../library/ensurepip.xhtml#module-ensurepip "ensurepip: Bootstrapping the "pip" installer into an existing Python installation or virtual environment.") module to make `pip` readily available in virtual environments. When using the command line utility, `pip` is installed by default, while when using the [`venv`](../library/venv.xhtml#module-venv "venv: Creation of virtual environments.") module [API](../library/venv.xhtml#venv-api) installation of `pip` must be requested explicitly.
For CPython [source builds on POSIX systems](../using/unix.xhtml#building-python-on-unix), the `make install` and `make altinstall` commands bootstrap `pip` by default. This behaviour can be controlled through configure options, and overridden through Makefile options.
On Windows and Mac OS X, the CPython installers now default to installing `pip` along with CPython itself (users may opt out of installing it during the installation process). Window users will need to opt in to the automatic `PATH` modifications to have `pip` available from the command line by default, otherwise it can still be accessed through the Python launcher for Windows as `py -m pip`.
As [discussed in the PEP](https://www.python.org/dev/peps/pep-0453/#recommendations-for-downstream-distributors) \[https://www.python.org/dev/peps/pep-0453/#recommendations-for-downstream-distributors\], platform packagers may choose not to install these commands by default, as long as, when invoked, they provide clear and simple directions on how to install them on that platform (usually using the system package manager).
注解
To avoid conflicts between parallel Python 2 and Python 3 installations, only the versioned `pip3` and `pip3.4` commands are bootstrapped by default when `ensurepip` is invoked directly - the `--default-pip`option is needed to also request the unversioned `pip` command. `pyvenv` and the Windows installer ensure that the unqualified `pip`command is made available in those environments, and `pip` can always be invoked via the `-m` switch rather than directly to avoid ambiguity on systems with multiple Python installations.
#### Documentation Changes
As part of this change, the [安裝 Python 模塊](../installing/index.xhtml#installing-index) and [分發 Python 模塊](../distributing/index.xhtml#distributing-index) sections of the documentation have been completely redesigned as short getting started and FAQ documents. Most packaging documentation has now been moved out to the Python Packaging Authority maintained [Python Packaging User Guide](https://packaging.python.org) \[https://packaging.python.org\] and the documentation of the individual projects.
However, as this migration is currently still incomplete, the legacy versions of those guides remaining available as [安裝Python模塊(舊版)](../install/index.xhtml#install-index)and [分發 Python 模塊(遺留版本)](../distutils/index.xhtml#distutils-index).
參見
[**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\] -- Explicit bootstrapping of pip in Python installationsPEP written by Donald Stufft and Nick Coghlan, implemented by Donald Stufft, Nick Coghlan, Martin von L?wis and Ned Deily.
### PEP 446: Newly Created File Descriptors Are Non-Inheritable
[**PEP 446**](https://www.python.org/dev/peps/pep-0446) \[https://www.python.org/dev/peps/pep-0446\] makes newly created file descriptors [non-inheritable](../library/os.xhtml#fd-inheritance). In general, this is the behavior an application will want: when launching a new process, having currently open files also open in the new process can lead to all sorts of hard to find bugs, and potentially to security issues.
However, there are occasions when inheritance is desired. To support these cases, the following new functions and methods are available:
- [`os.get_inheritable()`](../library/os.xhtml#os.get_inheritable "os.get_inheritable"), [`os.set_inheritable()`](../library/os.xhtml#os.set_inheritable "os.set_inheritable")
- [`os.get_handle_inheritable()`](../library/os.xhtml#os.get_handle_inheritable "os.get_handle_inheritable"), [`os.set_handle_inheritable()`](../library/os.xhtml#os.set_handle_inheritable "os.set_handle_inheritable")
- [`socket.socket.get_inheritable()`](../library/socket.xhtml#socket.socket.get_inheritable "socket.socket.get_inheritable"), [`socket.socket.set_inheritable()`](../library/socket.xhtml#socket.socket.set_inheritable "socket.socket.set_inheritable")
參見
[**PEP 446**](https://www.python.org/dev/peps/pep-0446) \[https://www.python.org/dev/peps/pep-0446\] -- Make newly created file descriptors non-inheritablePEP written and implemented by Victor Stinner.
### Improvements to Codec Handling
Since it was first introduced, the [`codecs`](../library/codecs.xhtml#module-codecs "codecs: Encode and decode data and streams.") module has always been intended to operate as a type-neutral dynamic encoding and decoding system. However, its close coupling with the Python text model, especially the type restricted convenience methods on the builtin [`str`](../library/stdtypes.xhtml#str "str"), [`bytes`](../library/stdtypes.xhtml#bytes "bytes") and [`bytearray`](../library/stdtypes.xhtml#bytearray "bytearray") types, has historically obscured that fact.
As a key step in clarifying the situation, the [`codecs.encode()`](../library/codecs.xhtml#codecs.encode "codecs.encode") and [`codecs.decode()`](../library/codecs.xhtml#codecs.decode "codecs.decode") convenience functions are now properly documented in Python 2.7, 3.3 and 3.4. These functions have existed in the [`codecs`](../library/codecs.xhtml#module-codecs "codecs: Encode and decode data and streams.")module (and have been covered by the regression test suite) since Python 2.4, but were previously only discoverable through runtime introspection.
Unlike the convenience methods on [`str`](../library/stdtypes.xhtml#str "str"), [`bytes`](../library/stdtypes.xhtml#bytes "bytes") and [`bytearray`](../library/stdtypes.xhtml#bytearray "bytearray"), the [`codecs`](../library/codecs.xhtml#module-codecs "codecs: Encode and decode data and streams.") convenience functions support arbitrary codecs in both Python 2 and Python 3, rather than being limited to Unicode text encodings (in Python 3) or `basestring` <-> `basestring` conversions (in Python 2).
In Python 3.4, the interpreter is able to identify the known non-text encodings provided in the standard library and direct users towards these general purpose convenience functions when appropriate:
```
>>> b"abcdef".decode("hex")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
LookupError: 'hex' is not a text encoding; use codecs.decode() to handle arbitrary codecs
>>> "hello".encode("rot13")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
LookupError: 'rot13' is not a text encoding; use codecs.encode() to handle arbitrary codecs
>>> open("foo.txt", encoding="hex")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
LookupError: 'hex' is not a text encoding; use codecs.open() to handle arbitrary codecs
```
In a related change, whenever it is feasible without breaking backwards compatibility, exceptions raised during encoding and decoding operations are wrapped in a chained exception of the same type that mentions the name of the codec responsible for producing the error:
```
>>> import codecs
>>> codecs.decode(b"abcdefgh", "hex")
Traceback (most recent call last):
File "/usr/lib/python3.4/encodings/hex_codec.py", line 20, in hex_decode
return (binascii.a2b_hex(input), len(input))
binascii.Error: Non-hexadecimal digit found
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
binascii.Error: decoding with 'hex' codec failed (Error: Non-hexadecimal digit found)
>>> codecs.encode("hello", "bz2")
Traceback (most recent call last):
File "/usr/lib/python3.4/encodings/bz2_codec.py", line 17, in bz2_encode
return (bz2.compress(input), len(input))
File "/usr/lib/python3.4/bz2.py", line 498, in compress
return comp.compress(data) + comp.flush()
TypeError: 'str' does not support the buffer interface
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: encoding with 'bz2' codec failed (TypeError: 'str' does not support the buffer interface)
```
Finally, as the examples above show, these improvements have permitted the restoration of the convenience aliases for the non-Unicode codecs that were themselves restored in Python 3.2. This means that encoding binary data to and from its hexadecimal representation (for example) can now be written as:
```
>>> from codecs import encode, decode
>>> encode(b"hello", "hex")
b'68656c6c6f'
>>> decode(b"68656c6c6f", "hex")
b'hello'
```
The binary and text transforms provided in the standard library are detailed in [二進制轉換](../library/codecs.xhtml#binary-transforms) and [文字轉換](../library/codecs.xhtml#text-transforms).
(Contributed by Nick Coghlan in [bpo-7475](https://bugs.python.org/issue7475) \[https://bugs.python.org/issue7475\], [bpo-17827](https://bugs.python.org/issue17827) \[https://bugs.python.org/issue17827\], [bpo-17828](https://bugs.python.org/issue17828) \[https://bugs.python.org/issue17828\] and [bpo-19619](https://bugs.python.org/issue19619) \[https://bugs.python.org/issue19619\].)
### PEP 451: A ModuleSpec Type for the Import System
[**PEP 451**](https://www.python.org/dev/peps/pep-0451) \[https://www.python.org/dev/peps/pep-0451\] provides an encapsulation of the information about a module that the import machinery will use to load it (that is, a module specification). This helps simplify both the import implementation and several import-related APIs. The change is also a stepping stone for [several future import-related improvements](https://mail.python.org/pipermail/python-dev/2013-November/130111.html) \[https://mail.python.org/pipermail/python-dev/2013-November/130111.html\].
The public-facing changes from the PEP are entirely backward-compatible. Furthermore, they should be transparent to everyone but importer authors. Key finder and loader methods have been deprecated, but they will continue working. New importers should use the new methods described in the PEP. Existing importers should be updated to implement the new methods. See the [棄用](#deprecated-3-4) section for a list of methods that should be replaced and their replacements.
### 其他語言特性修改
Some smaller changes made to the core Python language are:
- Unicode database updated to UCD version 6.3.
- [`min()`](../library/functions.xhtml#min "min") and [`max()`](../library/functions.xhtml#max "max") now accept a *default* keyword-only argument that can be used to specify the value they return if the iterable they are evaluating has no elements. (Contributed by Julian Berman in [bpo-18111](https://bugs.python.org/issue18111) \[https://bugs.python.org/issue18111\].)
- Module objects are now [`weakref`](../library/weakref.xhtml#module-weakref "weakref: Support for weak references and weak dictionaries.")'able.
- Module `__file__` attributes (and related values) should now always contain absolute paths by default, with the sole exception of `__main__.__file__` when a script has been executed directly using a relative path. (Contributed by Brett Cannon in [bpo-18416](https://bugs.python.org/issue18416) \[https://bugs.python.org/issue18416\].)
- All the UTF-\* codecs (except UTF-7) now reject surrogates during both encoding and decoding unless the `surrogatepass` error handler is used, with the exception of the UTF-16 decoder (which accepts valid surrogate pairs) and the UTF-16 encoder (which produces them while encoding non-BMP characters). (Contributed by Victor Stinner, Kang-Hao (Kenny) Lu and Serhiy Storchaka in [bpo-12892](https://bugs.python.org/issue12892) \[https://bugs.python.org/issue12892\].)
- New German EBCDIC [codec](../library/codecs.xhtml#standard-encodings)`cp273`. (Contributed by Michael Bierenfeld and Andrew Kuchling in [bpo-1097797](https://bugs.python.org/issue1097797) \[https://bugs.python.org/issue1097797\].)
- New Ukrainian [codec](../library/codecs.xhtml#standard-encodings)`cp1125`. (Contributed by Serhiy Storchaka in [bpo-19668](https://bugs.python.org/issue19668) \[https://bugs.python.org/issue19668\].)
- [`bytes`](../library/stdtypes.xhtml#bytes "bytes").join() and [`bytearray`](../library/stdtypes.xhtml#bytearray "bytearray").join() now accept arbitrary buffer objects as arguments. (Contributed by Antoine Pitrou in [bpo-15958](https://bugs.python.org/issue15958) \[https://bugs.python.org/issue15958\].)
- The [`int`](../library/functions.xhtml#int "int") constructor now accepts any object that has an `__index__`method for its *base* argument. (Contributed by Mark Dickinson in [bpo-16772](https://bugs.python.org/issue16772) \[https://bugs.python.org/issue16772\].)
- Frame objects now have a [`clear()`](../reference/datamodel.xhtml#frame.clear "frame.clear") method that clears all references to local variables from the frame. (Contributed by Antoine Pitrou in [bpo-17934](https://bugs.python.org/issue17934) \[https://bugs.python.org/issue17934\].)
- [`memoryview`](../library/stdtypes.xhtml#memoryview "memoryview") is now registered as a [`Sequence`](../library/collections.abc.xhtml#module-collections.abc "collections.abc: Abstract base classes for containers"), and supports the [`reversed()`](../library/functions.xhtml#reversed "reversed") builtin. (Contributed by Nick Coghlan and Claudiu Popa in [bpo-18690](https://bugs.python.org/issue18690) \[https://bugs.python.org/issue18690\] and [bpo-19078](https://bugs.python.org/issue19078) \[https://bugs.python.org/issue19078\].)
- Signatures reported by [`help()`](../library/functions.xhtml#help "help") have been modified and improved in several cases as a result of the introduction of Argument Clinic and other changes to the [`inspect`](../library/inspect.xhtml#module-inspect "inspect: Extract information and source code from live objects.") and [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") modules.
- [`__length_hint__()`](../reference/datamodel.xhtml#object.__length_hint__ "object.__length_hint__") is now part of the formal language specification (see [**PEP 424**](https://www.python.org/dev/peps/pep-0424) \[https://www.python.org/dev/peps/pep-0424\]). (Contributed by Armin Ronacher in [bpo-16148](https://bugs.python.org/issue16148) \[https://bugs.python.org/issue16148\].)
## 新增模塊
### asyncio
The new [`asyncio`](../library/asyncio.xhtml#module-asyncio "asyncio: Asynchronous I/O.") module (defined in [**PEP 3156**](https://www.python.org/dev/peps/pep-3156) \[https://www.python.org/dev/peps/pep-3156\]) provides a standard pluggable event loop model for Python, providing solid asynchronous IO support in the standard library, and making it easier for other event loop implementations to interoperate with the standard library and each other.
For Python 3.4, this module is considered a [provisional API](../glossary.xhtml#term-provisional-api).
參見
[**PEP 3156**](https://www.python.org/dev/peps/pep-3156) \[https://www.python.org/dev/peps/pep-3156\] -- Asynchronous IO Support Rebooted: the "asyncio" ModulePEP written and implementation led by Guido van Rossum.
### ensurepip
The new [`ensurepip`](../library/ensurepip.xhtml#module-ensurepip "ensurepip: Bootstrapping the "pip" installer into an existing Python installation or virtual environment.") module is the primary infrastructure for the [**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\] implementation. In the normal course of events end users will not need to interact with this module, but it can be used to manually bootstrap `pip` if the automated bootstrapping into an installation or virtual environment was declined.
[`ensurepip`](../library/ensurepip.xhtml#module-ensurepip "ensurepip: Bootstrapping the "pip" installer into an existing Python installation or virtual environment.") includes a bundled copy of `pip`, up-to-date as of the first release candidate of the release of CPython with which it ships (this applies to both maintenance releases and feature releases). `ensurepip` does not access the internet. If the installation has Internet access, after `ensurepip` is run the bundled `pip` can be used to upgrade `pip` to a more recent release than the bundled one. (Note that such an upgraded version of `pip` is considered to be a separately installed package and will not be removed if Python is uninstalled.)
The module is named *ensure*pip because if called when `pip` is already installed, it does nothing. It also has an `--upgrade` option that will cause it to install the bundled copy of `pip` if the existing installed version of `pip` is older than the bundled copy.
### enum
The new [`enum`](../library/enum.xhtml#module-enum "enum: Implementation of an enumeration class.") module (defined in [**PEP 435**](https://www.python.org/dev/peps/pep-0435) \[https://www.python.org/dev/peps/pep-0435\]) provides a standard implementation of enumeration types, allowing other modules (such as [`socket`](../library/socket.xhtml#module-socket "socket: Low-level networking interface.")) to provide more informative error messages and better debugging support by replacing opaque integer constants with backwards compatible enumeration values.
參見
[**PEP 435**](https://www.python.org/dev/peps/pep-0435) \[https://www.python.org/dev/peps/pep-0435\] -- Adding an Enum type to the Python standard libraryPEP written by Barry Warsaw, Eli Bendersky and Ethan Furman, implemented by Ethan Furman.
### pathlib
The new [`pathlib`](../library/pathlib.xhtml#module-pathlib "pathlib: Object-oriented filesystem paths") module offers classes representing filesystem paths with semantics appropriate for different operating systems. Path classes are divided between *pure paths*, which provide purely computational operations without I/O, and *concrete paths*, which inherit from pure paths but also provide I/O operations.
For Python 3.4, this module is considered a [provisional API](../glossary.xhtml#term-provisional-api).
參見
[**PEP 428**](https://www.python.org/dev/peps/pep-0428) \[https://www.python.org/dev/peps/pep-0428\] -- The pathlib module -- object-oriented filesystem pathsPEP written and implemented by Antoine Pitrou.
### selectors
The new [`selectors`](../library/selectors.xhtml#module-selectors "selectors: High-level I/O multiplexing.") module (created as part of implementing [**PEP 3156**](https://www.python.org/dev/peps/pep-3156) \[https://www.python.org/dev/peps/pep-3156\]) allows high-level and efficient I/O multiplexing, built upon the [`select`](../library/select.xhtml#module-select "select: Wait for I/O completion on multiple streams.") module primitives.
### statistics
The new [`statistics`](../library/statistics.xhtml#module-statistics "statistics: mathematical statistics functions") module (defined in [**PEP 450**](https://www.python.org/dev/peps/pep-0450) \[https://www.python.org/dev/peps/pep-0450\]) offers some core statistics functionality directly in the standard library. This module supports calculation of the mean, median, mode, variance and standard deviation of a data series.
參見
[**PEP 450**](https://www.python.org/dev/peps/pep-0450) \[https://www.python.org/dev/peps/pep-0450\] -- Adding A Statistics Module To The Standard LibraryPEP written and implemented by Steven D'Aprano
### tracemalloc
The new [`tracemalloc`](../library/tracemalloc.xhtml#module-tracemalloc "tracemalloc: Trace memory allocations.") module (defined in [**PEP 454**](https://www.python.org/dev/peps/pep-0454) \[https://www.python.org/dev/peps/pep-0454\]) is a debug tool to trace memory blocks allocated by Python. It provides the following information:
- Trace where an object was allocated
- Statistics on allocated memory blocks per filename and per line number: total size, number and average size of allocated memory blocks
- Compute the differences between two snapshots to detect memory leaks
參見
[**PEP 454**](https://www.python.org/dev/peps/pep-0454) \[https://www.python.org/dev/peps/pep-0454\] -- Add a new tracemalloc module to trace Python memory allocationsPEP 由 Victor Stinner 撰寫并實現
## 改進的模塊
### abc
New function [`abc.get_cache_token()`](../library/abc.xhtml#abc.get_cache_token "abc.get_cache_token") can be used to know when to invalidate caches that are affected by changes in the object graph. (Contributed by ?ukasz Langa in [bpo-16832](https://bugs.python.org/issue16832) \[https://bugs.python.org/issue16832\].)
New class [`ABC`](../library/abc.xhtml#abc.ABC "abc.ABC") has [`ABCMeta`](../library/abc.xhtml#abc.ABCMeta "abc.ABCMeta") as its meta class. Using `ABC` as a base class has essentially the same effect as specifying `metaclass=abc.ABCMeta`, but is simpler to type and easier to read. (Contributed by Bruno Dupuis in [bpo-16049](https://bugs.python.org/issue16049) \[https://bugs.python.org/issue16049\].)
### aifc
The [`getparams()`](../library/aifc.xhtml#aifc.aifc.getparams "aifc.aifc.getparams") method now returns a namedtuple rather than a plain tuple. (Contributed by Claudiu Popa in [bpo-17818](https://bugs.python.org/issue17818) \[https://bugs.python.org/issue17818\].)
[`aifc.open()`](../library/aifc.xhtml#aifc.open "aifc.open") now supports the context management protocol: when used in a [`with`](../reference/compound_stmts.xhtml#with) block, the [`close()`](../library/aifc.xhtml#aifc.aifc.close "aifc.aifc.close") method of the returned object will be called automatically at the end of the block. (Contributed by Serhiy Storchacha in [bpo-16486](https://bugs.python.org/issue16486) \[https://bugs.python.org/issue16486\].)
The [`writeframesraw()`](../library/aifc.xhtml#aifc.aifc.writeframesraw "aifc.aifc.writeframesraw") and [`writeframes()`](../library/aifc.xhtml#aifc.aifc.writeframes "aifc.aifc.writeframes")methods now accept any [bytes-like object](../glossary.xhtml#term-bytes-like-object). (Contributed by Serhiy Storchaka in [bpo-8311](https://bugs.python.org/issue8311) \[https://bugs.python.org/issue8311\].)
### argparse
The [`FileType`](../library/argparse.xhtml#argparse.FileType "argparse.FileType") class now accepts *encoding* and *errors* arguments, which are passed through to [`open()`](../library/functions.xhtml#open "open"). (Contributed by Lucas Maystre in [bpo-11175](https://bugs.python.org/issue11175) \[https://bugs.python.org/issue11175\].)
### audioop
[`audioop`](../library/audioop.xhtml#module-audioop "audioop: Manipulate raw audio data.") now supports 24-bit samples. (Contributed by Serhiy Storchaka in [bpo-12866](https://bugs.python.org/issue12866) \[https://bugs.python.org/issue12866\].)
New [`byteswap()`](../library/audioop.xhtml#audioop.byteswap "audioop.byteswap") function converts big-endian samples to little-endian and vice versa. (Contributed by Serhiy Storchaka in [bpo-19641](https://bugs.python.org/issue19641) \[https://bugs.python.org/issue19641\].)
All [`audioop`](../library/audioop.xhtml#module-audioop "audioop: Manipulate raw audio data.") functions now accept any [bytes-like object](../glossary.xhtml#term-bytes-like-object). Strings are not accepted: they didn't work before, now they raise an error right away. (Contributed by Serhiy Storchaka in [bpo-16685](https://bugs.python.org/issue16685) \[https://bugs.python.org/issue16685\].)
### base64
The encoding and decoding functions in [`base64`](../library/base64.xhtml#module-base64 "base64: RFC 3548: Base16, Base32, Base64 Data Encodings; Base85 and Ascii85") now accept any [bytes-like object](../glossary.xhtml#term-bytes-like-object) in cases where it previously required a [`bytes`](../library/stdtypes.xhtml#bytes "bytes") or [`bytearray`](../library/stdtypes.xhtml#bytearray "bytearray") instance. (Contributed by Nick Coghlan in [bpo-17839](https://bugs.python.org/issue17839) \[https://bugs.python.org/issue17839\].)
New functions [`a85encode()`](../library/base64.xhtml#base64.a85encode "base64.a85encode"), [`a85decode()`](../library/base64.xhtml#base64.a85decode "base64.a85decode"), [`b85encode()`](../library/base64.xhtml#base64.b85encode "base64.b85encode"), and [`b85decode()`](../library/base64.xhtml#base64.b85decode "base64.b85decode") provide the ability to encode and decode binary data from and to `Ascii85` and the git/mercurial `Base85` formats, respectively. The `a85` functions have options that can be used to make them compatible with the variants of the `Ascii85` encoding, including the Adobe variant. (Contributed by Martin Morrison, the Mercurial project, Serhiy Storchaka, and Antoine Pitrou in [bpo-17618](https://bugs.python.org/issue17618) \[https://bugs.python.org/issue17618\].)
### collections
The [`ChainMap.new_child()`](../library/collections.xhtml#collections.ChainMap.new_child "collections.ChainMap.new_child") method now accepts an *m* argument specifying the child map to add to the chain. This allows an existing mapping and/or a custom mapping type to be used for the child. (Contributed by Vinay Sajip in [bpo-16613](https://bugs.python.org/issue16613) \[https://bugs.python.org/issue16613\].)
### colorsys
The number of digits in the coefficients for the RGB --- YIQ conversions have been expanded so that they match the FCC NTSC versions. The change in results should be less than 1% and may better match results found elsewhere. (Contributed by Brian Landers and Serhiy Storchaka in [bpo-14323](https://bugs.python.org/issue14323) \[https://bugs.python.org/issue14323\].)
### contextlib
The new [`contextlib.suppress`](../library/contextlib.xhtml#contextlib.suppress "contextlib.suppress") context manager helps to clarify the intent of code that deliberately suppresses exceptions from a single statement. (Contributed by Raymond Hettinger in [bpo-15806](https://bugs.python.org/issue15806) \[https://bugs.python.org/issue15806\] and Zero Piraeus in [bpo-19266](https://bugs.python.org/issue19266) \[https://bugs.python.org/issue19266\].)
The new [`contextlib.redirect_stdout()`](../library/contextlib.xhtml#contextlib.redirect_stdout "contextlib.redirect_stdout") context manager makes it easier for utility scripts to handle inflexible APIs that write their output to [`sys.stdout`](../library/sys.xhtml#sys.stdout "sys.stdout") and don't provide any options to redirect it. Using the context manager, the [`sys.stdout`](../library/sys.xhtml#sys.stdout "sys.stdout") output can be redirected to any other stream or, in conjunction with [`io.StringIO`](../library/io.xhtml#io.StringIO "io.StringIO"), to a string. The latter can be especially useful, for example, to capture output from a function that was written to implement a command line interface. It is recommended only for utility scripts because it affects the global state of [`sys.stdout`](../library/sys.xhtml#sys.stdout "sys.stdout"). (Contributed by Raymond Hettinger in [bpo-15805](https://bugs.python.org/issue15805) \[https://bugs.python.org/issue15805\].)
The [`contextlib`](../library/contextlib.xhtml#module-contextlib "contextlib: Utilities for with-statement contexts.") documentation has also been updated to include a [discussion](../library/contextlib.xhtml#single-use-reusable-and-reentrant-cms) of the differences between single use, reusable and reentrant context managers.
### dbm
[`dbm.open()`](../library/dbm.xhtml#dbm.open "dbm.open") objects now support the context management protocol. When used in a [`with`](../reference/compound_stmts.xhtml#with) statement, the `close` method of the database object will be called automatically at the end of the block. (Contributed by Claudiu Popa and Nick Coghlan in [bpo-19282](https://bugs.python.org/issue19282) \[https://bugs.python.org/issue19282\].)
### dis
Functions [`show_code()`](../library/dis.xhtml#dis.show_code "dis.show_code"), [`dis()`](../library/dis.xhtml#dis.dis "dis.dis"), [`distb()`](../library/dis.xhtml#dis.distb "dis.distb"), and [`disassemble()`](../library/dis.xhtml#dis.disassemble "dis.disassemble") now accept a keyword-only *file* argument that controls where they write their output.
The [`dis`](../library/dis.xhtml#module-dis "dis: Disassembler for Python bytecode.") module is now built around an [`Instruction`](../library/dis.xhtml#dis.Instruction "dis.Instruction") class that provides object oriented access to the details of each individual bytecode operation.
A new method, [`get_instructions()`](../library/dis.xhtml#dis.get_instructions "dis.get_instructions"), provides an iterator that emits the Instruction stream for a given piece of Python code. Thus it is now possible to write a program that inspects and manipulates a bytecode object in ways different from those provided by the [`dis`](../library/dis.xhtml#module-dis "dis: Disassembler for Python bytecode.") module itself. For example:
```
>>> import dis
>>> for instr in dis.get_instructions(lambda x: x + 1):
... print(instr.opname)
LOAD_FAST
LOAD_CONST
BINARY_ADD
RETURN_VALUE
```
The various display tools in the [`dis`](../library/dis.xhtml#module-dis "dis: Disassembler for Python bytecode.") module have been rewritten to use these new components.
In addition, a new application-friendly class [`Bytecode`](../library/dis.xhtml#dis.Bytecode "dis.Bytecode") provides an object-oriented API for inspecting bytecode in both in human-readable form and for iterating over instructions. The [`Bytecode`](../library/dis.xhtml#dis.Bytecode "dis.Bytecode") constructor takes the same arguments that `get_instruction()` does (plus an optional *current\_offset*), and the resulting object can be iterated to produce [`Instruction`](../library/dis.xhtml#dis.Instruction "dis.Instruction") objects. But it also has a [`dis`](../library/dis.xhtml#dis.Bytecode.dis "dis.Bytecode.dis")method, equivalent to calling [`dis`](../library/dis.xhtml#dis.dis "dis.dis") on the constructor argument, but returned as a multi-line string:
```
>>> bytecode = dis.Bytecode(lambda x: x + 1, current_offset=3)
>>> for instr in bytecode:
... print('{} ({})'.format(instr.opname, instr.opcode))
LOAD_FAST (124)
LOAD_CONST (100)
BINARY_ADD (23)
RETURN_VALUE (83)
>>> bytecode.dis().splitlines()
[' 1 0 LOAD_FAST 0 (x)',
' --> 3 LOAD_CONST 1 (1)',
' 6 BINARY_ADD',
' 7 RETURN_VALUE']
```
[`Bytecode`](../library/dis.xhtml#dis.Bytecode "dis.Bytecode") also has a class method, [`from_traceback()`](../library/dis.xhtml#dis.Bytecode.from_traceback "dis.Bytecode.from_traceback"), that provides the ability to manipulate a traceback (that is, `print(Bytecode.from_traceback(tb).dis())` is equivalent to `distb(tb)`).
(Contributed by Nick Coghlan, Ryan Kelly and Thomas Kluyver in [bpo-11816](https://bugs.python.org/issue11816) \[https://bugs.python.org/issue11816\]and Claudiu Popa in [bpo-17916](https://bugs.python.org/issue17916) \[https://bugs.python.org/issue17916\].)
New function [`stack_effect()`](../library/dis.xhtml#dis.stack_effect "dis.stack_effect") computes the effect on the Python stack of a given opcode and argument, information that is not otherwise available. (Contributed by Larry Hastings in [bpo-19722](https://bugs.python.org/issue19722) \[https://bugs.python.org/issue19722\].)
### doctest
A new [option flag](../library/doctest.xhtml#doctest-options), [`FAIL_FAST`](../library/doctest.xhtml#doctest.FAIL_FAST "doctest.FAIL_FAST"), halts test running as soon as the first failure is detected. (Contributed by R. David Murray and Daniel Urban in [bpo-16522](https://bugs.python.org/issue16522) \[https://bugs.python.org/issue16522\].)
The [`doctest`](../library/doctest.xhtml#module-doctest "doctest: Test pieces of code within docstrings.") command line interface now uses [`argparse`](../library/argparse.xhtml#module-argparse "argparse: Command-line option and argument parsing library."), and has two new options, `-o` and `-f`. `-o` allows [doctest options](../library/doctest.xhtml#doctest-options) to be specified on the command line, and `-f` is a shorthand for `-o FAIL_FAST` (to parallel the similar option supported by the [`unittest`](../library/unittest.xhtml#module-unittest "unittest: Unit testing framework for Python.") CLI). (Contributed by R. David Murray in [bpo-11390](https://bugs.python.org/issue11390) \[https://bugs.python.org/issue11390\].)
[`doctest`](../library/doctest.xhtml#module-doctest "doctest: Test pieces of code within docstrings.") will now find doctests in extension module `__doc__` strings. (Contributed by Zachary Ware in [bpo-3158](https://bugs.python.org/issue3158) \[https://bugs.python.org/issue3158\].)
### email
[`as_string()`](../library/email.compat32-message.xhtml#email.message.Message.as_string "email.message.Message.as_string") now accepts a *policy* argument to override the default policy of the message when generating a string representation of it. This means that `as_string` can now be used in more circumstances, instead of having to create and use a [`generator`](../library/email.generator.xhtml#module-email.generator "email.generator: Generate flat text email messages from a message structure.") in order to pass formatting parameters to its `flatten` method. (Contributed by R. David Murray in [bpo-18600](https://bugs.python.org/issue18600) \[https://bugs.python.org/issue18600\].)
New method [`as_bytes()`](../library/email.compat32-message.xhtml#email.message.Message.as_bytes "email.message.Message.as_bytes") added to produce a bytes representation of the message in a fashion similar to how `as_string`produces a string representation. It does not accept the *maxheaderlen*argument, but does accept the *unixfrom* and *policy* arguments. The [`Message`](../library/email.compat32-message.xhtml#email.message.Message "email.message.Message") [`__bytes__()`](../library/email.compat32-message.xhtml#email.message.Message.__bytes__ "email.message.Message.__bytes__") method calls it, meaning that `bytes(mymsg)` will now produce the intuitive result: a bytes object containing the fully formatted message. (Contributed by R. David Murray in [bpo-18600](https://bugs.python.org/issue18600) \[https://bugs.python.org/issue18600\].)
The [`Message.set_param()`](../library/email.compat32-message.xhtml#email.message.Message.set_param "email.message.Message.set_param") message now accepts a *replace* keyword argument. When specified, the associated header will be updated without changing its location in the list of headers. For backward compatibility, the default is `False`. (Contributed by R. David Murray in [bpo-18891](https://bugs.python.org/issue18891) \[https://bugs.python.org/issue18891\].)
A pair of new subclasses of [`Message`](../library/email.compat32-message.xhtml#email.message.Message "email.message.Message") have been added ([`EmailMessage`](../library/email.message.xhtml#email.message.EmailMessage "email.message.EmailMessage") and [`MIMEPart`](../library/email.message.xhtml#email.message.MIMEPart "email.message.MIMEPart")), along with a new sub-module, [`contentmanager`](../library/email.contentmanager.xhtml#module-email.contentmanager "email.contentmanager: Storing and Retrieving Content from MIME Parts") and a new [`policy`](../library/email.policy.xhtml#module-email.policy "email.policy: Controlling the parsing and generating of messages") attribute [`content_manager`](../library/email.policy.xhtml#email.policy.EmailPolicy.content_manager "email.policy.EmailPolicy.content_manager"). All documentation is currently in the new module, which is being added as part of email's new [provisional API](../glossary.xhtml#term-provisional-api). These classes provide a number of new methods that make extracting content from and inserting content into email messages much easier. For details, see the [`contentmanager`](../library/email.contentmanager.xhtml#module-email.contentmanager "email.contentmanager: Storing and Retrieving Content from MIME Parts") documentation and the [email: 示例](../library/email.examples.xhtml#email-examples). These API additions complete the bulk of the work that was planned as part of the email6 project. The currently provisional API is scheduled to become final in Python 3.5 (possibly with a few minor additions in the area of error handling). (Contributed by R. David Murray in [bpo-18891](https://bugs.python.org/issue18891) \[https://bugs.python.org/issue18891\].)
### filecmp
A new [`clear_cache()`](../library/filecmp.xhtml#filecmp.clear_cache "filecmp.clear_cache") function provides the ability to clear the [`filecmp`](../library/filecmp.xhtml#module-filecmp "filecmp: Compare files efficiently.") comparison cache, which uses [`os.stat()`](../library/os.xhtml#os.stat "os.stat") information to determine if the file has changed since the last compare. This can be used, for example, if the file might have been changed and re-checked in less time than the resolution of a particular filesystem's file modification time field. (Contributed by Mark Levitt in [bpo-18149](https://bugs.python.org/issue18149) \[https://bugs.python.org/issue18149\].)
New module attribute [`DEFAULT_IGNORES`](../library/filecmp.xhtml#filecmp.DEFAULT_IGNORES "filecmp.DEFAULT_IGNORES") provides the list of directories that are used as the default value for the *ignore* parameter of the [`dircmp()`](../library/filecmp.xhtml#filecmp.dircmp "filecmp.dircmp") function. (Contributed by Eli Bendersky in [bpo-15442](https://bugs.python.org/issue15442) \[https://bugs.python.org/issue15442\].)
### functools
The new [`partialmethod()`](../library/functools.xhtml#functools.partialmethod "functools.partialmethod") descriptor brings partial argument application to descriptors, just as [`partial()`](../library/functools.xhtml#functools.partial "functools.partial") provides for normal callables. The new descriptor also makes it easier to get arbitrary callables (including [`partial()`](../library/functools.xhtml#functools.partial "functools.partial") instances) to behave like normal instance methods when included in a class definition. (Contributed by Alon Horev and Nick Coghlan in [bpo-4331](https://bugs.python.org/issue4331) \[https://bugs.python.org/issue4331\].)
The new [`singledispatch()`](../library/functools.xhtml#functools.singledispatch "functools.singledispatch") decorator brings support for single-dispatch generic functions to the Python standard library. Where object oriented programming focuses on grouping multiple operations on a common set of data into a class, a generic function focuses on grouping multiple implementations of an operation that allows it to work with *different* kinds of data.
參見
[**PEP 443**](https://www.python.org/dev/peps/pep-0443) \[https://www.python.org/dev/peps/pep-0443\] -- Single-dispatch generic functionsPEP 由 ?ukasz Langa 撰寫并實現。
[`total_ordering()`](../library/functools.xhtml#functools.total_ordering "functools.total_ordering") now supports a return value of [`NotImplemented`](../library/constants.xhtml#NotImplemented "NotImplemented") from the underlying comparison function. (Contributed by Katie Miller in [bpo-10042](https://bugs.python.org/issue10042) \[https://bugs.python.org/issue10042\].)
A pure-python version of the [`partial()`](../library/functools.xhtml#functools.partial "functools.partial") function is now in the stdlib; in CPython it is overridden by the C accelerated version, but it is available for other implementations to use. (Contributed by Brian Thorne in [bpo-12428](https://bugs.python.org/issue12428) \[https://bugs.python.org/issue12428\].)
### gc
New function [`get_stats()`](../library/gc.xhtml#gc.get_stats "gc.get_stats") returns a list of three per-generation dictionaries containing the collections statistics since interpreter startup. (Contributed by Antoine Pitrou in [bpo-16351](https://bugs.python.org/issue16351) \[https://bugs.python.org/issue16351\].)
### glob
A new function [`escape()`](../library/glob.xhtml#glob.escape "glob.escape") provides a way to escape special characters in a filename so that they do not become part of the globbing expansion but are instead matched literally. (Contributed by Serhiy Storchaka in [bpo-8402](https://bugs.python.org/issue8402) \[https://bugs.python.org/issue8402\].)
### hashlib
A new [`hashlib.pbkdf2_hmac()`](../library/hashlib.xhtml#hashlib.pbkdf2_hmac "hashlib.pbkdf2_hmac") function provides the [PKCS#5 password-based key derivation function 2](https://en.wikipedia.org/wiki/PBKDF2) \[https://en.wikipedia.org/wiki/PBKDF2\]. (Contributed by Christian Heimes in [bpo-18582](https://bugs.python.org/issue18582) \[https://bugs.python.org/issue18582\].)
The [`name`](../library/hashlib.xhtml#hashlib.hash.name "hashlib.hash.name") attribute of [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms.") hash objects is now a formally supported interface. It has always existed in CPython's [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms.") (although it did not return lower case names for all supported hashes), but it was not a public interface and so some other Python implementations have not previously supported it. (Contributed by Jason R. Coombs in [bpo-18532](https://bugs.python.org/issue18532) \[https://bugs.python.org/issue18532\].)
### hmac
[`hmac`](../library/hmac.xhtml#module-hmac "hmac: Keyed-Hashing for Message Authentication (HMAC) implementation") now accepts `bytearray` as well as `bytes` for the *key*argument to the [`new()`](../library/hmac.xhtml#hmac.new "hmac.new") function, and the *msg* parameter to both the [`new()`](../library/hmac.xhtml#hmac.new "hmac.new") function and the [`update()`](../library/hmac.xhtml#hmac.HMAC.update "hmac.HMAC.update") method now accepts any type supported by the [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms.") module. (Contributed by Jonas Borgstr?m in [bpo-18240](https://bugs.python.org/issue18240) \[https://bugs.python.org/issue18240\].)
The *digestmod* argument to the [`hmac.new()`](../library/hmac.xhtml#hmac.new "hmac.new") function may now be any hash digest name recognized by [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms."). In addition, the current behavior in which the value of *digestmod* defaults to `MD5` is deprecated: in a future version of Python there will be no default value. (Contributed by Christian Heimes in [bpo-17276](https://bugs.python.org/issue17276) \[https://bugs.python.org/issue17276\].)
With the addition of [`block_size`](../library/hmac.xhtml#hmac.HMAC.block_size "hmac.HMAC.block_size") and [`name`](../library/hmac.xhtml#hmac.HMAC.name "hmac.HMAC.name")attributes (and the formal documentation of the [`digest_size`](../library/hmac.xhtml#hmac.HMAC.digest_size "hmac.HMAC.digest_size")attribute), the [`hmac`](../library/hmac.xhtml#module-hmac "hmac: Keyed-Hashing for Message Authentication (HMAC) implementation") module now conforms fully to the [**PEP 247**](https://www.python.org/dev/peps/pep-0247) \[https://www.python.org/dev/peps/pep-0247\] API. (Contributed by Christian Heimes in [bpo-18775](https://bugs.python.org/issue18775) \[https://bugs.python.org/issue18775\].)
### html
New function [`unescape()`](../library/html.xhtml#html.unescape "html.unescape") function converts HTML5 character references to the corresponding Unicode characters. (Contributed by Ezio Melotti in [bpo-2927](https://bugs.python.org/issue2927) \[https://bugs.python.org/issue2927\].)
[`HTMLParser`](../library/html.parser.xhtml#html.parser.HTMLParser "html.parser.HTMLParser") accepts a new keyword argument *convert\_charrefs* that, when `True`, automatically converts all character references. For backward-compatibility, its value defaults to `False`, but it will change to `True` in a future version of Python, so you are invited to set it explicitly and update your code to use this new feature. (Contributed by Ezio Melotti in [bpo-13633](https://bugs.python.org/issue13633) \[https://bugs.python.org/issue13633\].)
The *strict* argument of [`HTMLParser`](../library/html.parser.xhtml#html.parser.HTMLParser "html.parser.HTMLParser") is now deprecated. (Contributed by Ezio Melotti in [bpo-15114](https://bugs.python.org/issue15114) \[https://bugs.python.org/issue15114\].)
### http
[`send_error()`](../library/http.server.xhtml#http.server.BaseHTTPRequestHandler.send_error "http.server.BaseHTTPRequestHandler.send_error") now accepts an optional additional *explain* parameter which can be used to provide an extended error description, overriding the hardcoded default if there is one. This extended error description will be formatted using the `error_message_format` attribute and sent as the body of the error response. (Contributed by Karl Cow in [bpo-12921](https://bugs.python.org/issue12921) \[https://bugs.python.org/issue12921\].)
The [`http.server`](../library/http.server.xhtml#module-http.server "http.server: HTTP server and request handlers.") [command line interface](../library/http.server.xhtml#http-server-cli) now has a `-b/--bind` option that causes the server to listen on a specific address. (Contributed by Malte Swart in [bpo-17764](https://bugs.python.org/issue17764) \[https://bugs.python.org/issue17764\].)
### idlelib 與 IDLE
Since idlelib implements the IDLE shell and editor and is not intended for import by other programs, it gets improvements with every release. See `Lib/idlelib/NEWS.txt` for a cumulative list of changes since 3.3.0, as well as changes made in future 3.4.x releases. This file is also available from the IDLE Help ? About IDLE dialog.
### importlib
The [`InspectLoader`](../library/importlib.xhtml#importlib.abc.InspectLoader "importlib.abc.InspectLoader") ABC defines a new method, [`source_to_code()`](../library/importlib.xhtml#importlib.abc.InspectLoader.source_to_code "importlib.abc.InspectLoader.source_to_code") that accepts source data and a path and returns a code object. The default implementation is equivalent to `compile(data, path, 'exec', dont_inherit=True)`. (Contributed by Eric Snow and Brett Cannon in [bpo-15627](https://bugs.python.org/issue15627) \[https://bugs.python.org/issue15627\].)
[`InspectLoader`](../library/importlib.xhtml#importlib.abc.InspectLoader "importlib.abc.InspectLoader") also now has a default implementation for the [`get_code()`](../library/importlib.xhtml#importlib.abc.InspectLoader.get_code "importlib.abc.InspectLoader.get_code") method. However, it will normally be desirable to override the default implementation for performance reasons. (Contributed by Brett Cannon in [bpo-18072](https://bugs.python.org/issue18072) \[https://bugs.python.org/issue18072\].)
The [`reload()`](../library/importlib.xhtml#importlib.reload "importlib.reload") function has been moved from [`imp`](../library/imp.xhtml#module-imp "imp: Access the implementation of the import statement. (已移除)") to [`importlib`](../library/importlib.xhtml#module-importlib "importlib: The implementation of the import machinery.") as part of the [`imp`](../library/imp.xhtml#module-imp "imp: Access the implementation of the import statement. (已移除)") module deprecation. (Contributed by Berker Peksag in [bpo-18193](https://bugs.python.org/issue18193) \[https://bugs.python.org/issue18193\].)
[`importlib.util`](../library/importlib.xhtml#module-importlib.util "importlib.util: Utility code for importers") now has a [`MAGIC_NUMBER`](../library/importlib.xhtml#importlib.util.MAGIC_NUMBER "importlib.util.MAGIC_NUMBER") attribute providing access to the bytecode version number. This replaces the [`get_magic()`](../library/imp.xhtml#imp.get_magic "imp.get_magic") function in the deprecated [`imp`](../library/imp.xhtml#module-imp "imp: Access the implementation of the import statement. (已移除)") module. (Contributed by Brett Cannon in [bpo-18192](https://bugs.python.org/issue18192) \[https://bugs.python.org/issue18192\].)
New [`importlib.util`](../library/importlib.xhtml#module-importlib.util "importlib.util: Utility code for importers") functions [`cache_from_source()`](../library/importlib.xhtml#importlib.util.cache_from_source "importlib.util.cache_from_source")and [`source_from_cache()`](../library/importlib.xhtml#importlib.util.source_from_cache "importlib.util.source_from_cache") replace the same-named functions in the deprecated [`imp`](../library/imp.xhtml#module-imp "imp: Access the implementation of the import statement. (已移除)") module. (Contributed by Brett Cannon in [bpo-18194](https://bugs.python.org/issue18194) \[https://bugs.python.org/issue18194\].)
The [`importlib`](../library/importlib.xhtml#module-importlib "importlib: The implementation of the import machinery.") bootstrap `NamespaceLoader` now conforms to the [`InspectLoader`](../library/importlib.xhtml#importlib.abc.InspectLoader "importlib.abc.InspectLoader") ABC, which means that `runpy` and `python -m` can now be used with namespace packages. (Contributed by Brett Cannon in [bpo-18058](https://bugs.python.org/issue18058) \[https://bugs.python.org/issue18058\].)
[`importlib.util`](../library/importlib.xhtml#module-importlib.util "importlib.util: Utility code for importers") has a new function [`decode_source()`](../library/importlib.xhtml#importlib.util.decode_source "importlib.util.decode_source")that decodes source from bytes using universal newline processing. This is useful for implementing [`InspectLoader.get_source()`](../library/importlib.xhtml#importlib.abc.InspectLoader.get_source "importlib.abc.InspectLoader.get_source") methods.
[`importlib.machinery.ExtensionFileLoader`](../library/importlib.xhtml#importlib.machinery.ExtensionFileLoader "importlib.machinery.ExtensionFileLoader") now has a [`get_filename()`](../library/importlib.xhtml#importlib.machinery.ExtensionFileLoader.get_filename "importlib.machinery.ExtensionFileLoader.get_filename") method. This was inadvertently omitted in the original implementation. (Contributed by Eric Snow in [bpo-19152](https://bugs.python.org/issue19152) \[https://bugs.python.org/issue19152\].)
### inspect
The [`inspect`](../library/inspect.xhtml#module-inspect "inspect: Extract information and source code from live objects.") module now offers a basic [command line interface](../library/inspect.xhtml#inspect-module-cli) to quickly display source code and other information for modules, classes and functions. (Contributed by Claudiu Popa and Nick Coghlan in [bpo-18626](https://bugs.python.org/issue18626) \[https://bugs.python.org/issue18626\].)
[`unwrap()`](../library/inspect.xhtml#inspect.unwrap "inspect.unwrap") makes it easy to unravel wrapper function chains created by [`functools.wraps()`](../library/functools.xhtml#functools.wraps "functools.wraps") (and any other API that sets the `__wrapped__` attribute on a wrapper function). (Contributed by Daniel Urban, Aaron Iles and Nick Coghlan in [bpo-13266](https://bugs.python.org/issue13266) \[https://bugs.python.org/issue13266\].)
As part of the implementation of the new [`enum`](../library/enum.xhtml#module-enum "enum: Implementation of an enumeration class.") module, the [`inspect`](../library/inspect.xhtml#module-inspect "inspect: Extract information and source code from live objects.") module now has substantially better support for custom `__dir__` methods and dynamic class attributes provided through metaclasses. (Contributed by Ethan Furman in [bpo-18929](https://bugs.python.org/issue18929) \[https://bugs.python.org/issue18929\] and [bpo-19030](https://bugs.python.org/issue19030) \[https://bugs.python.org/issue19030\].)
[`getfullargspec()`](../library/inspect.xhtml#inspect.getfullargspec "inspect.getfullargspec") and [`getargspec()`](../library/inspect.xhtml#inspect.getargspec "inspect.getargspec")now use the [`signature()`](../library/inspect.xhtml#inspect.signature "inspect.signature") API. This allows them to support a much broader range of callables, including those with `__signature__` attributes, those with metadata provided by argument clinic, [`functools.partial()`](../library/functools.xhtml#functools.partial "functools.partial") objects and more. Note that, unlike [`signature()`](../library/inspect.xhtml#inspect.signature "inspect.signature"), these functions still ignore `__wrapped__`attributes, and report the already bound first argument for bound methods, so it is still necessary to update your code to use [`signature()`](../library/inspect.xhtml#inspect.signature "inspect.signature") directly if those features are desired. (Contributed by Yury Selivanov in [bpo-17481](https://bugs.python.org/issue17481) \[https://bugs.python.org/issue17481\].)
[`signature()`](../library/inspect.xhtml#inspect.signature "inspect.signature") now supports duck types of CPython functions, which adds support for functions compiled with Cython. (Contributed by Stefan Behnel and Yury Selivanov in [bpo-17159](https://bugs.python.org/issue17159) \[https://bugs.python.org/issue17159\].)
### ipaddress
[`ipaddress`](../library/ipaddress.xhtml#module-ipaddress "ipaddress: IPv4/IPv6 manipulation library.") was added to the standard library in Python 3.3 as a [provisional API](../glossary.xhtml#term-provisional-api). With the release of Python 3.4, this qualification has been removed: [`ipaddress`](../library/ipaddress.xhtml#module-ipaddress "ipaddress: IPv4/IPv6 manipulation library.") is now considered a stable API, covered by the normal standard library requirements to maintain backwards compatibility.
A new [`is_global`](../library/ipaddress.xhtml#ipaddress.IPv4Address.is_global "ipaddress.IPv4Address.is_global") property is `True` if an address is globally routeable. (Contributed by Peter Moody in [bpo-17400](https://bugs.python.org/issue17400) \[https://bugs.python.org/issue17400\].)
### logging
The [`TimedRotatingFileHandler`](../library/logging.handlers.xhtml#logging.handlers.TimedRotatingFileHandler "logging.handlers.TimedRotatingFileHandler") has a new *atTime*parameter that can be used to specify the time of day when rollover should happen. (Contributed by Ronald Oussoren in [bpo-9556](https://bugs.python.org/issue9556) \[https://bugs.python.org/issue9556\].)
[`SocketHandler`](../library/logging.handlers.xhtml#logging.handlers.SocketHandler "logging.handlers.SocketHandler") and [`DatagramHandler`](../library/logging.handlers.xhtml#logging.handlers.DatagramHandler "logging.handlers.DatagramHandler") now support Unix domain sockets (by setting *port* to `None`). (Contributed by Vinay Sajip in commit ce46195b56a9.)
[`fileConfig()`](../library/logging.config.xhtml#logging.config.fileConfig "logging.config.fileConfig") now accepts a [`configparser.RawConfigParser`](../library/configparser.xhtml#configparser.RawConfigParser "configparser.RawConfigParser") subclass instance for the *fname*parameter. This facilitates using a configuration file when logging configuration is just a part of the overall application configuration, or where the application modifies the configuration before passing it to [`fileConfig()`](../library/logging.config.xhtml#logging.config.fileConfig "logging.config.fileConfig"). (Contributed by Vinay Sajip in [bpo-16110](https://bugs.python.org/issue16110) \[https://bugs.python.org/issue16110\].)
Logging configuration data received from a socket via the [`logging.config.listen()`](../library/logging.config.xhtml#logging.config.listen "logging.config.listen") function can now be validated before being processed by supplying a verification function as the argument to the new *verify* keyword argument. (Contributed by Vinay Sajip in [bpo-15452](https://bugs.python.org/issue15452) \[https://bugs.python.org/issue15452\].)
### marshal
The default [`marshal`](../library/marshal.xhtml#module-marshal "marshal: Convert Python objects to streams of bytes and back (with different constraints).") version has been bumped to 3. The code implementing the new version restores the Python2 behavior of recording only one copy of interned strings and preserving the interning on deserialization, and extends this "one copy" ability to any object type (including handling recursive references). This reduces both the size of `.pyc` files and the amount of memory a module occupies in memory when it is loaded from a `.pyc` (or `.pyo`) file. (Contributed by Kristján Valur Jónsson in [bpo-16475](https://bugs.python.org/issue16475) \[https://bugs.python.org/issue16475\], with additional speedups by Antoine Pitrou in [bpo-19219](https://bugs.python.org/issue19219) \[https://bugs.python.org/issue19219\].)
### mmap
mmap objects can now be [`weakref`](../library/weakref.xhtml#module-weakref "weakref: Support for weak references and weak dictionaries.")ed. (Contributed by Valerie Lambert in [bpo-4885](https://bugs.python.org/issue4885) \[https://bugs.python.org/issue4885\].)
### multiprocessing
On Unix two new [start methods](../library/multiprocessing.xhtml#multiprocessing-start-methods), `spawn` and `forkserver`, have been added for starting processes using [`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism."). These make the mixing of processes with threads more robust, and the `spawn` method matches the semantics that multiprocessing has always used on Windows. New function [`get_all_start_methods()`](../library/multiprocessing.xhtml#multiprocessing.get_all_start_methods "multiprocessing.get_all_start_methods") reports all start methods available on the platform, [`get_start_method()`](../library/multiprocessing.xhtml#multiprocessing.get_start_method "multiprocessing.get_start_method") reports the current start method, and [`set_start_method()`](../library/multiprocessing.xhtml#multiprocessing.set_start_method "multiprocessing.set_start_method") sets the start method. (Contributed by Richard Oudkerk in [bpo-8713](https://bugs.python.org/issue8713) \[https://bugs.python.org/issue8713\].)
[`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism.") also now has the concept of a `context`, which determines how child processes are created. New function [`get_context()`](../library/multiprocessing.xhtml#multiprocessing.get_context "multiprocessing.get_context") returns a context that uses a specified start method. It has the same API as the [`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism.") module itself, so you can use it to create [`Pool`](../library/multiprocessing.xhtml#multiprocessing.pool.Pool "multiprocessing.pool.Pool")s and other objects that will operate within that context. This allows a framework and an application or different parts of the same application to use multiprocessing without interfering with each other. (Contributed by Richard Oudkerk in [bpo-18999](https://bugs.python.org/issue18999) \[https://bugs.python.org/issue18999\].)
Except when using the old *fork* start method, child processes no longer inherit unneeded handles/file descriptors from their parents (part of [bpo-8713](https://bugs.python.org/issue8713) \[https://bugs.python.org/issue8713\]).
[`multiprocessing`](../library/multiprocessing.xhtml#module-multiprocessing "multiprocessing: Process-based parallelism.") now relies on [`runpy`](../library/runpy.xhtml#module-runpy "runpy: Locate and run Python modules without importing them first.") (which implements the `-m` switch) to initialise `__main__` appropriately in child processes when using the `spawn` or `forkserver` start methods. This resolves some edge cases where combining multiprocessing, the `-m` command line switch, and explicit relative imports could cause obscure failures in child processes. (Contributed by Nick Coghlan in [bpo-19946](https://bugs.python.org/issue19946) \[https://bugs.python.org/issue19946\].)
### operator
New function [`length_hint()`](../library/operator.xhtml#operator.length_hint "operator.length_hint") provides an implementation of the specification for how the [`__length_hint__()`](../reference/datamodel.xhtml#object.__length_hint__ "object.__length_hint__") special method should be used, as part of the [**PEP 424**](https://www.python.org/dev/peps/pep-0424) \[https://www.python.org/dev/peps/pep-0424\] formal specification of this language feature. (Contributed by Armin Ronacher in [bpo-16148](https://bugs.python.org/issue16148) \[https://bugs.python.org/issue16148\].)
There is now a pure-python version of the [`operator`](../library/operator.xhtml#module-operator "operator: Functions corresponding to the standard operators.") module available for reference and for use by alternate implementations of Python. (Contributed by Zachary Ware in [bpo-16694](https://bugs.python.org/issue16694) \[https://bugs.python.org/issue16694\].)
### os
There are new functions to get and set the [inheritable flag](../library/os.xhtml#fd-inheritance) of a file descriptor ([`os.get_inheritable()`](../library/os.xhtml#os.get_inheritable "os.get_inheritable"), [`os.set_inheritable()`](../library/os.xhtml#os.set_inheritable "os.set_inheritable")) or a Windows handle ([`os.get_handle_inheritable()`](../library/os.xhtml#os.get_handle_inheritable "os.get_handle_inheritable"), [`os.set_handle_inheritable()`](../library/os.xhtml#os.set_handle_inheritable "os.set_handle_inheritable")).
New function [`cpu_count()`](../library/os.xhtml#os.cpu_count "os.cpu_count") reports the number of CPUs available on the platform on which Python is running (or `None` if the count can't be determined). The [`multiprocessing.cpu_count()`](../library/multiprocessing.xhtml#multiprocessing.cpu_count "multiprocessing.cpu_count") function is now implemented in terms of this function). (Contributed by Trent Nelson, Yogesh Chaudhari, Victor Stinner, and Charles-Fran?ois Natali in [bpo-17914](https://bugs.python.org/issue17914) \[https://bugs.python.org/issue17914\].)
[`os.path.samestat()`](../library/os.path.xhtml#os.path.samestat "os.path.samestat") is now available on the Windows platform (and the [`os.path.samefile()`](../library/os.path.xhtml#os.path.samefile "os.path.samefile") implementation is now shared between Unix and Windows). (Contributed by Brian Curtin in [bpo-11939](https://bugs.python.org/issue11939) \[https://bugs.python.org/issue11939\].)
[`os.path.ismount()`](../library/os.path.xhtml#os.path.ismount "os.path.ismount") now recognizes volumes mounted below a drive root on Windows. (Contributed by Tim Golden in [bpo-9035](https://bugs.python.org/issue9035) \[https://bugs.python.org/issue9035\].)
[`os.open()`](../library/os.xhtml#os.open "os.open") supports two new flags on platforms that provide them, [`O_PATH`](../library/os.xhtml#os.O_PATH "os.O_PATH") (un-opened file descriptor), and [`O_TMPFILE`](../library/os.xhtml#os.O_TMPFILE "os.O_TMPFILE")(unnamed temporary file; as of 3.4.0 release available only on Linux systems with a kernel version of 3.11 or newer that have uapi headers). (Contributed by Christian Heimes in [bpo-18673](https://bugs.python.org/issue18673) \[https://bugs.python.org/issue18673\] and Benjamin Peterson, respectively.)
### pdb
[`pdb`](../library/pdb.xhtml#module-pdb "pdb: The Python debugger for interactive interpreters.") has been enhanced to handle generators, [`yield`](../reference/simple_stmts.xhtml#yield), and `yield from` in a more useful fashion. This is especially helpful when debugging [`asyncio`](../library/asyncio.xhtml#module-asyncio "asyncio: Asynchronous I/O.") based programs. (Contributed by Andrew Svetlov and Xavier de Gaye in [bpo-16596](https://bugs.python.org/issue16596) \[https://bugs.python.org/issue16596\].)
The `print` command has been removed from [`pdb`](../library/pdb.xhtml#module-pdb "pdb: The Python debugger for interactive interpreters."), restoring access to the Python [`print()`](../library/functions.xhtml#print "print") function from the pdb command line. Python2's `pdb` did not have a `print` command; instead, entering `print` executed the `print` statement. In Python3 `print` was mistakenly made an alias for the pdb [`p`](../library/pdb.xhtml#pdbcommand-p) command. `p`, however, prints the `repr` of its argument, not the `str` like the Python2 `print` command did. Worse, the Python3 `pdb print` command shadowed the Python3 `print` function, making it inaccessible at the `pdb` prompt. (Contributed by Connor Osborn in [bpo-18764](https://bugs.python.org/issue18764) \[https://bugs.python.org/issue18764\].)
### pickle
[`pickle`](../library/pickle.xhtml#module-pickle "pickle: Convert Python objects to streams of bytes and back.") now supports (but does not use by default) a new pickle protocol, protocol 4. This new protocol addresses a number of issues that were present in previous protocols, such as the serialization of nested classes, very large strings and containers, and classes whose [`__new__()`](../reference/datamodel.xhtml#object.__new__ "object.__new__") method takes keyword-only arguments. It also provides some efficiency improvements.
參見
[**PEP 3154**](https://www.python.org/dev/peps/pep-3154) \[https://www.python.org/dev/peps/pep-3154\] -- Pickle protocol 4PEP written by Antoine Pitrou and implemented by Alexandre Vassalotti.
### plistlib
[`plistlib`](../library/plistlib.xhtml#module-plistlib "plistlib: Generate and parse Mac OS X plist files.") now has an API that is similar to the standard pattern for stdlib serialization protocols, with new [`load()`](../library/plistlib.xhtml#plistlib.load "plistlib.load"), [`dump()`](../library/plistlib.xhtml#plistlib.dump "plistlib.dump"), [`loads()`](../library/plistlib.xhtml#plistlib.loads "plistlib.loads"), and [`dumps()`](../library/plistlib.xhtml#plistlib.dumps "plistlib.dumps")functions. (The older API is now deprecated.) In addition to the already supported XML plist format ([`FMT_XML`](../library/plistlib.xhtml#plistlib.FMT_XML "plistlib.FMT_XML")), it also now supports the binary plist format ([`FMT_BINARY`](../library/plistlib.xhtml#plistlib.FMT_BINARY "plistlib.FMT_BINARY")). (Contributed by Ronald Oussoren and others in [bpo-14455](https://bugs.python.org/issue14455) \[https://bugs.python.org/issue14455\].)
### poplib
Two new methods have been added to [`poplib`](../library/poplib.xhtml#module-poplib "poplib: POP3 protocol client (requires sockets)."): [`capa()`](../library/poplib.xhtml#poplib.POP3.capa "poplib.POP3.capa"), which returns the list of capabilities advertised by the POP server, and [`stls()`](../library/poplib.xhtml#poplib.POP3.stls "poplib.POP3.stls"), which switches a clear-text POP3 session into an encrypted POP3 session if the POP server supports it. (Contributed by Lorenzo Catucci in [bpo-4473](https://bugs.python.org/issue4473) \[https://bugs.python.org/issue4473\].)
### pprint
The [`pprint`](../library/pprint.xhtml#module-pprint "pprint: Data pretty printer.") module's [`PrettyPrinter`](../library/pprint.xhtml#pprint.PrettyPrinter "pprint.PrettyPrinter") class and its [`pformat()`](../library/pprint.xhtml#pprint.pformat "pprint.pformat"), and [`pprint()`](../library/pprint.xhtml#pprint.pprint "pprint.pprint") functions have a new option, *compact*, that controls how the output is formatted. Currently setting *compact* to `True` means that sequences will be printed with as many sequence elements as will fit within *width* on each (indented) line. (Contributed by Serhiy Storchaka in [bpo-19132](https://bugs.python.org/issue19132) \[https://bugs.python.org/issue19132\].)
Long strings are now wrapped using Python's normal line continuation syntax. (Contributed by Antoine Pitrou in [bpo-17150](https://bugs.python.org/issue17150) \[https://bugs.python.org/issue17150\].)
### pty
[`pty.spawn()`](../library/pty.xhtml#pty.spawn "pty.spawn") now returns the status value from [`os.waitpid()`](../library/os.xhtml#os.waitpid "os.waitpid") on the child process, instead of `None`. (Contributed by Gregory P. Smith.)
### pydoc
The [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") module is now based directly on the [`inspect.signature()`](../library/inspect.xhtml#inspect.signature "inspect.signature")introspection API, allowing it to provide signature information for a wider variety of callable objects. This change also means that `__wrapped__`attributes are now taken into account when displaying help information. (Contributed by Larry Hastings in [bpo-19674](https://bugs.python.org/issue19674) \[https://bugs.python.org/issue19674\].)
The [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") module no longer displays the `self` parameter for already bound methods. Instead, it aims to always display the exact current signature of the supplied callable. (Contributed by Larry Hastings in [bpo-20710](https://bugs.python.org/issue20710) \[https://bugs.python.org/issue20710\].)
In addition to the changes that have been made to [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") directly, its handling of custom `__dir__` methods and various descriptor behaviours has also been improved substantially by the underlying changes in the [`inspect`](../library/inspect.xhtml#module-inspect "inspect: Extract information and source code from live objects.") module.
As the [`help()`](../library/functions.xhtml#help "help") builtin is based on [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system."), the above changes also affect the behaviour of [`help()`](../library/functions.xhtml#help "help").
### re
New [`fullmatch()`](../library/re.xhtml#re.fullmatch "re.fullmatch") function and `regex.fullmatch()` method anchor the pattern at both ends of the string to match. This provides a way to be explicit about the goal of the match, which avoids a class of subtle bugs where `$` characters get lost during code changes or the addition of alternatives to an existing regular expression. (Contributed by Matthew Barnett in [bpo-16203](https://bugs.python.org/issue16203) \[https://bugs.python.org/issue16203\].)
The repr of [regex objects](../library/re.xhtml#re-objects) now includes the pattern and the flags; the repr of [match objects](../library/re.xhtml#match-objects) now includes the start, end, and the part of the string that matched. (Contributed by Hugo Lopes Tavares and Serhiy Storchaka in [bpo-13592](https://bugs.python.org/issue13592) \[https://bugs.python.org/issue13592\] and [bpo-17087](https://bugs.python.org/issue17087) \[https://bugs.python.org/issue17087\].)
### resource
New [`prlimit()`](../library/resource.xhtml#resource.prlimit "resource.prlimit") function, available on Linux platforms with a kernel version of 2.6.36 or later and glibc of 2.13 or later, provides the ability to query or set the resource limits for processes other than the one making the call. (Contributed by Christian Heimes in [bpo-16595](https://bugs.python.org/issue16595) \[https://bugs.python.org/issue16595\].)
On Linux kernel version 2.6.36 or later, there are also some new Linux specific constants: [`RLIMIT_MSGQUEUE`](../library/resource.xhtml#resource.RLIMIT_MSGQUEUE "resource.RLIMIT_MSGQUEUE"), [`RLIMIT_NICE`](../library/resource.xhtml#resource.RLIMIT_NICE "resource.RLIMIT_NICE"), [`RLIMIT_RTPRIO`](../library/resource.xhtml#resource.RLIMIT_RTPRIO "resource.RLIMIT_RTPRIO"), [`RLIMIT_RTTIME`](../library/resource.xhtml#resource.RLIMIT_RTTIME "resource.RLIMIT_RTTIME"), and [`RLIMIT_SIGPENDING`](../library/resource.xhtml#resource.RLIMIT_SIGPENDING "resource.RLIMIT_SIGPENDING"). (Contributed by Christian Heimes in [bpo-19324](https://bugs.python.org/issue19324) \[https://bugs.python.org/issue19324\].)
On FreeBSD version 9 and later, there some new FreeBSD specific constants: [`RLIMIT_SBSIZE`](../library/resource.xhtml#resource.RLIMIT_SBSIZE "resource.RLIMIT_SBSIZE"), [`RLIMIT_SWAP`](../library/resource.xhtml#resource.RLIMIT_SWAP "resource.RLIMIT_SWAP"), and [`RLIMIT_NPTS`](../library/resource.xhtml#resource.RLIMIT_NPTS "resource.RLIMIT_NPTS"). (Contributed by Claudiu Popa in [bpo-19343](https://bugs.python.org/issue19343) \[https://bugs.python.org/issue19343\].)
### select
[`epoll`](../library/select.xhtml#select.epoll "select.epoll") objects now support the context management protocol. When used in a [`with`](../reference/compound_stmts.xhtml#with) statement, the [`close()`](../library/select.xhtml#select.epoll.close "select.epoll.close")method will be called automatically at the end of the block. (Contributed by Serhiy Storchaka in [bpo-16488](https://bugs.python.org/issue16488) \[https://bugs.python.org/issue16488\].)
[`devpoll`](../library/select.xhtml#select.devpoll "select.devpoll") objects now have [`fileno()`](../library/select.xhtml#select.devpoll.fileno "select.devpoll.fileno") and [`close()`](../library/select.xhtml#select.devpoll.close "select.devpoll.close") methods, as well as a new attribute [`closed`](../library/select.xhtml#select.devpoll.closed "select.devpoll.closed"). (Contributed by Victor Stinner in [bpo-18794](https://bugs.python.org/issue18794) \[https://bugs.python.org/issue18794\].)
### shelve
[`Shelf`](../library/shelve.xhtml#shelve.Shelf "shelve.Shelf") instances may now be used in [`with`](../reference/compound_stmts.xhtml#with) statements, and will be automatically closed at the end of the `with` block. (Contributed by Filip Gruszczyński in [bpo-13896](https://bugs.python.org/issue13896) \[https://bugs.python.org/issue13896\].)
### shutil
[`copyfile()`](../library/shutil.xhtml#shutil.copyfile "shutil.copyfile") now raises a specific [`Error`](../library/shutil.xhtml#shutil.Error "shutil.Error") subclass, [`SameFileError`](../library/shutil.xhtml#shutil.SameFileError "shutil.SameFileError"), when the source and destination are the same file, which allows an application to take appropriate action on this specific error. (Contributed by Atsuo Ishimoto and Hynek Schlawack in [bpo-1492704](https://bugs.python.org/issue1492704) \[https://bugs.python.org/issue1492704\].)
### smtpd
The [`SMTPServer`](../library/smtpd.xhtml#smtpd.SMTPServer "smtpd.SMTPServer") and [`SMTPChannel`](../library/smtpd.xhtml#smtpd.SMTPChannel "smtpd.SMTPChannel") classes now accept a *map* keyword argument which, if specified, is passed in to [`asynchat.async_chat`](../library/asynchat.xhtml#asynchat.async_chat "asynchat.async_chat") as its *map* argument. This allows an application to avoid affecting the global socket map. (Contributed by Vinay Sajip in [bpo-11959](https://bugs.python.org/issue11959) \[https://bugs.python.org/issue11959\].)
### smtplib
[`SMTPException`](../library/smtplib.xhtml#smtplib.SMTPException "smtplib.SMTPException") is now a subclass of [`OSError`](../library/exceptions.xhtml#OSError "OSError"), which allows both socket level errors and SMTP protocol level errors to be caught in one try/except statement by code that only cares whether or not an error occurred. (Contributed by Ned Jackson Lovely in [bpo-2118](https://bugs.python.org/issue2118) \[https://bugs.python.org/issue2118\].)
### socket
The socket module now supports the [`CAN_BCM`](../library/socket.xhtml#socket.CAN_BCM "socket.CAN_BCM") protocol on platforms that support it. (Contributed by Brian Thorne in [bpo-15359](https://bugs.python.org/issue15359) \[https://bugs.python.org/issue15359\].)
Socket objects have new methods to get or set their [inheritable flag](../library/os.xhtml#fd-inheritance), [`get_inheritable()`](../library/socket.xhtml#socket.socket.get_inheritable "socket.socket.get_inheritable") and [`set_inheritable()`](../library/socket.xhtml#socket.socket.set_inheritable "socket.socket.set_inheritable").
The `socket.AF_*` and `socket.SOCK_*` constants are now enumeration values using the new [`enum`](../library/enum.xhtml#module-enum "enum: Implementation of an enumeration class.") module. This allows meaningful names to be printed during debugging, instead of integer "magic numbers".
The [`AF_LINK`](../library/socket.xhtml#socket.AF_LINK "socket.AF_LINK") constant is now available on BSD and OSX.
[`inet_pton()`](../library/socket.xhtml#socket.inet_pton "socket.inet_pton") and [`inet_ntop()`](../library/socket.xhtml#socket.inet_ntop "socket.inet_ntop") are now supported on Windows. (Contributed by Atsuo Ishimoto in [bpo-7171](https://bugs.python.org/issue7171) \[https://bugs.python.org/issue7171\].)
### sqlite3
A new boolean parameter to the [`connect()`](../library/sqlite3.xhtml#sqlite3.connect "sqlite3.connect") function, *uri*, can be used to indicate that the *database* parameter is a `uri` (see the [SQLite URI documentation](https://www.sqlite.org/uri.html) \[https://www.sqlite.org/uri.html\]). (Contributed by poq in [bpo-13773](https://bugs.python.org/issue13773) \[https://bugs.python.org/issue13773\].)
### ssl
[`PROTOCOL_TLSv1_1`](../library/ssl.xhtml#ssl.PROTOCOL_TLSv1_1 "ssl.PROTOCOL_TLSv1_1") and [`PROTOCOL_TLSv1_2`](../library/ssl.xhtml#ssl.PROTOCOL_TLSv1_2 "ssl.PROTOCOL_TLSv1_2") (TLSv1.1 and TLSv1.2 support) have been added; support for these protocols is only available if Python is linked with OpenSSL 1.0.1 or later. (Contributed by Michele Orrù and Antoine Pitrou in [bpo-16692](https://bugs.python.org/issue16692) \[https://bugs.python.org/issue16692\].)
New function [`create_default_context()`](../library/ssl.xhtml#ssl.create_default_context "ssl.create_default_context") provides a standard way to obtain an [`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext") whose settings are intended to be a reasonable balance between compatibility and security. These settings are more stringent than the defaults provided by the [`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext")constructor, and may be adjusted in the future, without prior deprecation, if best-practice security requirements change. The new recommended best practice for using stdlib libraries that support SSL is to use [`create_default_context()`](../library/ssl.xhtml#ssl.create_default_context "ssl.create_default_context") to obtain an [`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext")object, modify it if needed, and then pass it as the *context* argument of the appropriate stdlib API. (Contributed by Christian Heimes in [bpo-19689](https://bugs.python.org/issue19689) \[https://bugs.python.org/issue19689\].)
[`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext") method [`load_verify_locations()`](../library/ssl.xhtml#ssl.SSLContext.load_verify_locations "ssl.SSLContext.load_verify_locations")accepts a new optional argument *cadata*, which can be used to provide PEM or DER encoded certificates directly via strings or bytes, respectively. (Contributed by Christian Heimes in [bpo-18138](https://bugs.python.org/issue18138) \[https://bugs.python.org/issue18138\].)
New function [`get_default_verify_paths()`](../library/ssl.xhtml#ssl.get_default_verify_paths "ssl.get_default_verify_paths") returns a named tuple of the paths and environment variables that the [`set_default_verify_paths()`](../library/ssl.xhtml#ssl.SSLContext.set_default_verify_paths "ssl.SSLContext.set_default_verify_paths") method uses to set OpenSSL's default `cafile` and `capath`. This can be an aid in debugging default verification issues. (Contributed by Christian Heimes in [bpo-18143](https://bugs.python.org/issue18143) \[https://bugs.python.org/issue18143\].)
[`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext") has a new method, [`cert_store_stats()`](../library/ssl.xhtml#ssl.SSLContext.cert_store_stats "ssl.SSLContext.cert_store_stats"), that reports the number of loaded `X.509` certs, `X.509 CA` certs, and certificate revocation lists (`crl`s), as well as a [`get_ca_certs()`](../library/ssl.xhtml#ssl.SSLContext.get_ca_certs "ssl.SSLContext.get_ca_certs") method that returns a list of the loaded `CA` certificates. (Contributed by Christian Heimes in [bpo-18147](https://bugs.python.org/issue18147) \[https://bugs.python.org/issue18147\].)
If OpenSSL 0.9.8 or later is available, [`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext") has a new attribute [`verify_flags`](../library/ssl.xhtml#ssl.SSLContext.verify_flags "ssl.SSLContext.verify_flags") that can be used to control the certificate verification process by setting it to some combination of the new constants [`VERIFY_DEFAULT`](../library/ssl.xhtml#ssl.VERIFY_DEFAULT "ssl.VERIFY_DEFAULT"), [`VERIFY_CRL_CHECK_LEAF`](../library/ssl.xhtml#ssl.VERIFY_CRL_CHECK_LEAF "ssl.VERIFY_CRL_CHECK_LEAF"), [`VERIFY_CRL_CHECK_CHAIN`](../library/ssl.xhtml#ssl.VERIFY_CRL_CHECK_CHAIN "ssl.VERIFY_CRL_CHECK_CHAIN"), or [`VERIFY_X509_STRICT`](../library/ssl.xhtml#ssl.VERIFY_X509_STRICT "ssl.VERIFY_X509_STRICT"). OpenSSL does not do any CRL verification by default. (Contributed by Christien Heimes in [bpo-8813](https://bugs.python.org/issue8813) \[https://bugs.python.org/issue8813\].)
New [`SSLContext`](../library/ssl.xhtml#ssl.SSLContext "ssl.SSLContext") method [`load_default_certs()`](../library/ssl.xhtml#ssl.SSLContext.load_default_certs "ssl.SSLContext.load_default_certs")loads a set of default "certificate authority" (CA) certificates from default locations, which vary according to the platform. It can be used to load both TLS web server authentication certificates (`purpose=`[`SERVER_AUTH`](../library/ssl.xhtml#ssl.Purpose.SERVER_AUTH "ssl.Purpose.SERVER_AUTH")) for a client to use to verify a server, and certificates for a server to use in verifying client certificates (`purpose=`[`CLIENT_AUTH`](../library/ssl.xhtml#ssl.Purpose.CLIENT_AUTH "ssl.Purpose.CLIENT_AUTH")). (Contributed by Christian Heimes in [bpo-19292](https://bugs.python.org/issue19292) \[https://bugs.python.org/issue19292\].)
Two new windows-only functions, [`enum_certificates()`](../library/ssl.xhtml#ssl.enum_certificates "ssl.enum_certificates") and [`enum_crls()`](../library/ssl.xhtml#ssl.enum_crls "ssl.enum_crls") provide the ability to retrieve certificates, certificate information, and CRLs from the Windows cert store. (Contributed by Christian Heimes in [bpo-17134](https://bugs.python.org/issue17134) \[https://bugs.python.org/issue17134\].)
Support for server-side SNI (Server Name Indication) using the new [`ssl.SSLContext.set_servername_callback()`](../library/ssl.xhtml#ssl.SSLContext.set_servername_callback "ssl.SSLContext.set_servername_callback") method. (Contributed by Daniel Black in [bpo-8109](https://bugs.python.org/issue8109) \[https://bugs.python.org/issue8109\].)
The dictionary returned by [`SSLSocket.getpeercert()`](../library/ssl.xhtml#ssl.SSLSocket.getpeercert "ssl.SSLSocket.getpeercert") contains additional `X509v3` extension items: `crlDistributionPoints`, `calIssuers`, and `OCSP` URIs. (Contributed by Christian Heimes in [bpo-18379](https://bugs.python.org/issue18379) \[https://bugs.python.org/issue18379\].)
### stat
The [`stat`](../library/stat.xhtml#module-stat "stat: Utilities for interpreting the results of os.stat(), os.lstat() and os.fstat().") module is now backed by a C implementation in `_stat`. A C implementation is required as most of the values aren't standardized and are platform-dependent. (Contributed by Christian Heimes in [bpo-11016](https://bugs.python.org/issue11016) \[https://bugs.python.org/issue11016\].)
The module supports new [`ST_MODE`](../library/stat.xhtml#stat.ST_MODE "stat.ST_MODE") flags, [`S_IFDOOR`](../library/stat.xhtml#stat.S_IFDOOR "stat.S_IFDOOR"), [`S_IFPORT`](../library/stat.xhtml#stat.S_IFPORT "stat.S_IFPORT"), and [`S_IFWHT`](../library/stat.xhtml#stat.S_IFWHT "stat.S_IFWHT"). (Contributed by Christian Hiemes in [bpo-11016](https://bugs.python.org/issue11016) \[https://bugs.python.org/issue11016\].)
### struct
New function [`iter_unpack`](../library/struct.xhtml#struct.iter_unpack "struct.iter_unpack") and a new [`struct.Struct.iter_unpack()`](../library/struct.xhtml#struct.Struct.iter_unpack "struct.Struct.iter_unpack") method on compiled formats provide streamed unpacking of a buffer containing repeated instances of a given format of data. (Contributed by Antoine Pitrou in [bpo-17804](https://bugs.python.org/issue17804) \[https://bugs.python.org/issue17804\].)
### subprocess
[`check_output()`](../library/subprocess.xhtml#subprocess.check_output "subprocess.check_output") now accepts an *input* argument that can be used to provide the contents of `stdin` for the command that is run. (Contributed by Zack Weinberg in [bpo-16624](https://bugs.python.org/issue16624) \[https://bugs.python.org/issue16624\].)
`getstatus()` and [`getstatusoutput()`](../library/subprocess.xhtml#subprocess.getstatusoutput "subprocess.getstatusoutput") now work on Windows. This change was actually inadvertently made in 3.3.4. (Contributed by Tim Golden in [bpo-10197](https://bugs.python.org/issue10197) \[https://bugs.python.org/issue10197\].)
### sunau
The `getparams()` method now returns a namedtuple rather than a plain tuple. (Contributed by Claudiu Popa in [bpo-18901](https://bugs.python.org/issue18901) \[https://bugs.python.org/issue18901\].)
[`sunau.open()`](../library/sunau.xhtml#sunau.open "sunau.open") now supports the context management protocol: when used in a [`with`](../reference/compound_stmts.xhtml#with) block, the `close` method of the returned object will be called automatically at the end of the block. (Contributed by Serhiy Storchaka in [bpo-18878](https://bugs.python.org/issue18878) \[https://bugs.python.org/issue18878\].)
[`AU_write.setsampwidth()`](../library/sunau.xhtml#sunau.AU_write.setsampwidth "sunau.AU_write.setsampwidth") now supports 24 bit samples, thus adding support for writing 24 sample using the module. (Contributed by Serhiy Storchaka in [bpo-19261](https://bugs.python.org/issue19261) \[https://bugs.python.org/issue19261\].)
The [`writeframesraw()`](../library/sunau.xhtml#sunau.AU_write.writeframesraw "sunau.AU_write.writeframesraw") and [`writeframes()`](../library/sunau.xhtml#sunau.AU_write.writeframes "sunau.AU_write.writeframes") methods now accept any [bytes-like object](../glossary.xhtml#term-bytes-like-object). (Contributed by Serhiy Storchaka in [bpo-8311](https://bugs.python.org/issue8311) \[https://bugs.python.org/issue8311\].)
### sys
New function [`sys.getallocatedblocks()`](../library/sys.xhtml#sys.getallocatedblocks "sys.getallocatedblocks") returns the current number of blocks allocated by the interpreter. (In CPython with the default `--with-pymalloc` setting, this is allocations made through the [`PyObject_Malloc()`](../c-api/memory.xhtml#c.PyObject_Malloc "PyObject_Malloc") API.) This can be useful for tracking memory leaks, especially if automated via a test suite. (Contributed by Antoine Pitrou in [bpo-13390](https://bugs.python.org/issue13390) \[https://bugs.python.org/issue13390\].)
When the Python interpreter starts in [interactive mode](../tutorial/interpreter.xhtml#tut-interactive), it checks for an [`__interactivehook__`](../library/sys.xhtml#sys.__interactivehook__ "sys.__interactivehook__") attribute on the [`sys`](../library/sys.xhtml#module-sys "sys: Access system-specific parameters and functions.") module. If the attribute exists, its value is called with no arguments just before interactive mode is started. The check is made after the [`PYTHONSTARTUP`](../using/cmdline.xhtml#envvar-PYTHONSTARTUP) file is read, so it can be set there. The [`site`](../library/site.xhtml#module-site "site: Module responsible for site-specific configuration.")module [sets it](../library/site.xhtml#rlcompleter-config) to a function that enables tab completion and history saving (in `~/.python-history`) if the platform supports [`readline`](../library/readline.xhtml#module-readline "readline: GNU readline support for Python. (Unix)"). If you do not want this (new) behavior, you can override it in [`PYTHONSTARTUP`](../using/cmdline.xhtml#envvar-PYTHONSTARTUP), `sitecustomize`, or `usercustomize` by deleting this attribute from [`sys`](../library/sys.xhtml#module-sys "sys: Access system-specific parameters and functions.") (or setting it to some other callable). (Contributed by éric Araujo and Antoine Pitrou in [bpo-5845](https://bugs.python.org/issue5845) \[https://bugs.python.org/issue5845\].)
### tarfile
The [`tarfile`](../library/tarfile.xhtml#module-tarfile "tarfile: Read and write tar-format archive files.") module now supports a simple [命令行界面](../library/tarfile.xhtml#tarfile-commandline) when called as a script directly or via `-m`. This can be used to create and extract tarfile archives. (Contributed by Berker Peksag in [bpo-13477](https://bugs.python.org/issue13477) \[https://bugs.python.org/issue13477\].)
### textwrap
The [`TextWrapper`](../library/textwrap.xhtml#textwrap.TextWrapper "textwrap.TextWrapper") class has two new attributes/constructor arguments: [`max_lines`](../library/textwrap.xhtml#textwrap.TextWrapper.max_lines "textwrap.TextWrapper.max_lines"), which limits the number of lines in the output, and [`placeholder`](../library/textwrap.xhtml#textwrap.TextWrapper.placeholder "textwrap.TextWrapper.placeholder"), which is a string that will appear at the end of the output if it has been truncated because of *max\_lines*. Building on these capabilities, a new convenience function [`shorten()`](../library/textwrap.xhtml#textwrap.shorten "textwrap.shorten") collapses all of the whitespace in the input to single spaces and produces a single line of a given *width* that ends with the *placeholder* (by default, `[...]`). (Contributed by Antoine Pitrou and Serhiy Storchaka in [bpo-18585](https://bugs.python.org/issue18585) \[https://bugs.python.org/issue18585\] and [bpo-18725](https://bugs.python.org/issue18725) \[https://bugs.python.org/issue18725\].)
### threading
The [`Thread`](../library/threading.xhtml#threading.Thread "threading.Thread") object representing the main thread can be obtained from the new [`main_thread()`](../library/threading.xhtml#threading.main_thread "threading.main_thread") function. In normal conditions this will be the thread from which the Python interpreter was started. (Contributed by Andrew Svetlov in [bpo-18882](https://bugs.python.org/issue18882) \[https://bugs.python.org/issue18882\].)
### traceback
A new [`traceback.clear_frames()`](../library/traceback.xhtml#traceback.clear_frames "traceback.clear_frames") function takes a traceback object and clears the local variables in all of the frames it references, reducing the amount of memory consumed. (Contributed by Andrew Kuchling in [bpo-1565525](https://bugs.python.org/issue1565525) \[https://bugs.python.org/issue1565525\].)
### types
A new [`DynamicClassAttribute()`](../library/types.xhtml#types.DynamicClassAttribute "types.DynamicClassAttribute") descriptor provides a way to define an attribute that acts normally when looked up through an instance object, but which is routed to the *class*`__getattr__` when looked up through the class. This allows one to have properties active on a class, and have virtual attributes on the class with the same name (see `Enum` for an example). (Contributed by Ethan Furman in [bpo-19030](https://bugs.python.org/issue19030) \[https://bugs.python.org/issue19030\].)
### urllib
[`urllib.request`](../library/urllib.request.xhtml#module-urllib.request "urllib.request: Extensible library for opening URLs.") now supports `data:` URLs via the [`DataHandler`](../library/urllib.request.xhtml#urllib.request.DataHandler "urllib.request.DataHandler") class. (Contributed by Mathias Panzenb?ck in [bpo-16423](https://bugs.python.org/issue16423) \[https://bugs.python.org/issue16423\].)
The http method that will be used by a [`Request`](../library/urllib.request.xhtml#urllib.request.Request "urllib.request.Request") class can now be specified by setting a [`method`](../library/urllib.request.xhtml#urllib.request.Request.method "urllib.request.Request.method")class attribute on the subclass. (Contributed by Jason R Coombs in [bpo-18978](https://bugs.python.org/issue18978) \[https://bugs.python.org/issue18978\].)
[`Request`](../library/urllib.request.xhtml#urllib.request.Request "urllib.request.Request") objects are now reusable: if the [`full_url`](../library/urllib.request.xhtml#urllib.request.Request.full_url "urllib.request.Request.full_url") or [`data`](../library/urllib.request.xhtml#urllib.request.Request.data "urllib.request.Request.data")attributes are modified, all relevant internal properties are updated. This means, for example, that it is now possible to use the same [`Request`](../library/urllib.request.xhtml#urllib.request.Request "urllib.request.Request") object in more than one [`OpenerDirector.open()`](../library/urllib.request.xhtml#urllib.request.OpenerDirector.open "urllib.request.OpenerDirector.open") call with different *data* arguments, or to modify a [`Request`](../library/urllib.request.xhtml#urllib.request.Request "urllib.request.Request")'s `url` rather than recomputing it from scratch. There is also a new [`remove_header()`](../library/urllib.request.xhtml#urllib.request.Request.remove_header "urllib.request.Request.remove_header") method that can be used to remove headers from a [`Request`](../library/urllib.request.xhtml#urllib.request.Request "urllib.request.Request"). (Contributed by Alexey Kachayev in [bpo-16464](https://bugs.python.org/issue16464) \[https://bugs.python.org/issue16464\], Daniel Wozniak in [bpo-17485](https://bugs.python.org/issue17485) \[https://bugs.python.org/issue17485\], and Damien Brecht and Senthil Kumaran in [bpo-17272](https://bugs.python.org/issue17272) \[https://bugs.python.org/issue17272\].)
[`HTTPError`](../library/urllib.error.xhtml#urllib.error.HTTPError "urllib.error.HTTPError") objects now have a [`headers`](../library/urllib.error.xhtml#urllib.error.HTTPError.headers "urllib.error.HTTPError.headers") attribute that provides access to the HTTP response headers associated with the error. (Contributed by Berker Peksag in [bpo-15701](https://bugs.python.org/issue15701) \[https://bugs.python.org/issue15701\].)
### unittest
The [`TestCase`](../library/unittest.xhtml#unittest.TestCase "unittest.TestCase") class has a new method, [`subTest()`](../library/unittest.xhtml#unittest.TestCase.subTest "unittest.TestCase.subTest"), that produces a context manager whose [`with`](../reference/compound_stmts.xhtml#with) block becomes a "sub-test". This context manager allows a test method to dynamically generate subtests by, say, calling the `subTest`context manager inside a loop. A single test method can thereby produce an indefinite number of separately-identified and separately-counted tests, all of which will run even if one or more of them fail. For example:
```
class NumbersTest(unittest.TestCase):
def test_even(self):
for i in range(6):
with self.subTest(i=i):
self.assertEqual(i % 2, 0)
```
will result in six subtests, each identified in the unittest verbose output with a label consisting of the variable name `i` and a particular value for that variable (`i=0`, `i=1`, etc). See [Distinguishing test iterations using subtests](../library/unittest.xhtml#subtests) for the full version of this example. (Contributed by Antoine Pitrou in [bpo-16997](https://bugs.python.org/issue16997) \[https://bugs.python.org/issue16997\].)
[`unittest.main()`](../library/unittest.xhtml#unittest.main "unittest.main") now accepts an iterable of test names for *defaultTest*, where previously it only accepted a single test name as a string. (Contributed by Jyrki Pulliainen in [bpo-15132](https://bugs.python.org/issue15132) \[https://bugs.python.org/issue15132\].)
If [`SkipTest`](../library/unittest.xhtml#unittest.SkipTest "unittest.SkipTest") is raised during test discovery (that is, at the module level in the test file), it is now reported as a skip instead of an error. (Contributed by Zach Ware in [bpo-16935](https://bugs.python.org/issue16935) \[https://bugs.python.org/issue16935\].)
[`discover()`](../library/unittest.xhtml#unittest.TestLoader.discover "unittest.TestLoader.discover") now sorts the discovered files to provide consistent test ordering. (Contributed by Martin Melin and Jeff Ramnani in [bpo-16709](https://bugs.python.org/issue16709) \[https://bugs.python.org/issue16709\].)
[`TestSuite`](../library/unittest.xhtml#unittest.TestSuite "unittest.TestSuite") now drops references to tests as soon as the test has been run, if the test is successful. On Python interpreters that do garbage collection, this allows the tests to be garbage collected if nothing else is holding a reference to the test. It is possible to override this behavior by creating a [`TestSuite`](../library/unittest.xhtml#unittest.TestSuite "unittest.TestSuite") subclass that defines a custom `_removeTestAtIndex` method. (Contributed by Tom Wardill, Matt McClure, and Andrew Svetlov in [bpo-11798](https://bugs.python.org/issue11798) \[https://bugs.python.org/issue11798\].)
A new test assertion context-manager, [`assertLogs()`](../library/unittest.xhtml#unittest.TestCase.assertLogs "unittest.TestCase.assertLogs"), will ensure that a given block of code emits a log message using the [`logging`](../library/logging.xhtml#module-logging "logging: Flexible event logging system for applications.") module. By default the message can come from any logger and have a priority of `INFO` or higher, but both the logger name and an alternative minimum logging level may be specified. The object returned by the context manager can be queried for the [`LogRecord`](../library/logging.xhtml#logging.LogRecord "logging.LogRecord")s and/or formatted messages that were logged. (Contributed by Antoine Pitrou in [bpo-18937](https://bugs.python.org/issue18937) \[https://bugs.python.org/issue18937\].)
Test discovery now works with namespace packages (Contributed by Claudiu Popa in [bpo-17457](https://bugs.python.org/issue17457) \[https://bugs.python.org/issue17457\].)
[`unittest.mock`](../library/unittest.mock.xhtml#module-unittest.mock "unittest.mock: Mock object library.") objects now inspect their specification signatures when matching calls, which means an argument can now be matched by either position or name, instead of only by position. (Contributed by Antoine Pitrou in [bpo-17015](https://bugs.python.org/issue17015) \[https://bugs.python.org/issue17015\].)
`mock_open()` objects now have `readline` and `readlines`methods. (Contributed by Toshio Kuratomi in [bpo-17467](https://bugs.python.org/issue17467) \[https://bugs.python.org/issue17467\].)
### venv
[`venv`](../library/venv.xhtml#module-venv "venv: Creation of virtual environments.") now includes activation scripts for the `csh` and `fish`shells. (Contributed by Andrew Svetlov in [bpo-15417](https://bugs.python.org/issue15417) \[https://bugs.python.org/issue15417\].)
[`EnvBuilder`](../library/venv.xhtml#venv.EnvBuilder "venv.EnvBuilder") and the [`create()`](../library/venv.xhtml#venv.create "venv.create") convenience function take a new keyword argument *with\_pip*, which defaults to `False`, that controls whether or not [`EnvBuilder`](../library/venv.xhtml#venv.EnvBuilder "venv.EnvBuilder") ensures that `pip` is installed in the virtual environment. (Contributed by Nick Coghlan in [bpo-19552](https://bugs.python.org/issue19552) \[https://bugs.python.org/issue19552\] as part of the [**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\] implementation.)
### wave
The `getparams()` method now returns a namedtuple rather than a plain tuple. (Contributed by Claudiu Popa in [bpo-17487](https://bugs.python.org/issue17487) \[https://bugs.python.org/issue17487\].)
[`wave.open()`](../library/wave.xhtml#wave.open "wave.open") now supports the context management protocol. (Contributed by Claudiu Popa in [bpo-17616](https://bugs.python.org/issue17616) \[https://bugs.python.org/issue17616\].)
[`wave`](../library/wave.xhtml#module-wave "wave: Provide an interface to the WAV sound format.") can now [write output to unseekable files](../library/wave.xhtml#wave-write-objects). (Contributed by David Jones, Guilherme Polo, and Serhiy Storchaka in [bpo-5202](https://bugs.python.org/issue5202) \[https://bugs.python.org/issue5202\].)
The [`writeframesraw()`](../library/wave.xhtml#wave.Wave_write.writeframesraw "wave.Wave_write.writeframesraw") and [`writeframes()`](../library/wave.xhtml#wave.Wave_write.writeframes "wave.Wave_write.writeframes") methods now accept any [bytes-like object](../glossary.xhtml#term-bytes-like-object). (Contributed by Serhiy Storchaka in [bpo-8311](https://bugs.python.org/issue8311) \[https://bugs.python.org/issue8311\].)
### weakref
New [`WeakMethod`](../library/weakref.xhtml#weakref.WeakMethod "weakref.WeakMethod") class simulates weak references to bound methods. (Contributed by Antoine Pitrou in [bpo-14631](https://bugs.python.org/issue14631) \[https://bugs.python.org/issue14631\].)
New [`finalize`](../library/weakref.xhtml#weakref.finalize "weakref.finalize") class makes it possible to register a callback to be invoked when an object is garbage collected, without needing to carefully manage the lifecycle of the weak reference itself. (Contributed by Richard Oudkerk in [bpo-15528](https://bugs.python.org/issue15528) \[https://bugs.python.org/issue15528\].)
The callback, if any, associated with a [`ref`](../library/weakref.xhtml#weakref.ref "weakref.ref") is now exposed via the [`__callback__`](../library/weakref.xhtml#weakref.ref.__callback__ "weakref.ref.__callback__") attribute. (Contributed by Mark Dickinson in [bpo-17643](https://bugs.python.org/issue17643) \[https://bugs.python.org/issue17643\].)
### xml.etree
A new parser, [`XMLPullParser`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.XMLPullParser "xml.etree.ElementTree.XMLPullParser"), allows a non-blocking applications to parse XML documents. An example can be seen at [Pull API for non-blocking parsing](../library/xml.etree.elementtree.xhtml#elementtree-pull-parsing). (Contributed by Antoine Pitrou in [bpo-17741](https://bugs.python.org/issue17741) \[https://bugs.python.org/issue17741\].)
The [`xml.etree.ElementTree`](../library/xml.etree.elementtree.xhtml#module-xml.etree.ElementTree "xml.etree.ElementTree: Implementation of the ElementTree API.") [`tostring()`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.tostring "xml.etree.ElementTree.tostring") and [`tostringlist()`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.tostringlist "xml.etree.ElementTree.tostringlist") functions, and the [`ElementTree`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.ElementTree "xml.etree.ElementTree.ElementTree")[`write()`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.ElementTree.write "xml.etree.ElementTree.ElementTree.write") method, now have a *short\_empty\_elements* [keyword-only parameter](../glossary.xhtml#keyword-only-parameter)providing control over whether elements with no content are written in abbreviated (`<tag />`) or expanded (`<tag></tag>`) form. (Contributed by Ariel Poliak and Serhiy Storchaka in [bpo-14377](https://bugs.python.org/issue14377) \[https://bugs.python.org/issue14377\].)
### zipfile
The [`writepy()`](../library/zipfile.xhtml#zipfile.PyZipFile.writepy "zipfile.PyZipFile.writepy") method of the [`PyZipFile`](../library/zipfile.xhtml#zipfile.PyZipFile "zipfile.PyZipFile") class has a new *filterfunc* option that can be used to control which directories and files are added to the archive. For example, this could be used to exclude test files from the archive. (Contributed by Christian Tismer in [bpo-19274](https://bugs.python.org/issue19274) \[https://bugs.python.org/issue19274\].)
The *allowZip64* parameter to [`ZipFile`](../library/zipfile.xhtml#zipfile.ZipFile "zipfile.ZipFile") and `PyZipfile` is now `True` by default. (Contributed by William Mallard in [bpo-17201](https://bugs.python.org/issue17201) \[https://bugs.python.org/issue17201\].)
## CPython Implementation Changes
### PEP 445: Customization of CPython Memory Allocators
[**PEP 445**](https://www.python.org/dev/peps/pep-0445) \[https://www.python.org/dev/peps/pep-0445\] adds new C level interfaces to customize memory allocation in the CPython interpreter.
參見
[**PEP 445**](https://www.python.org/dev/peps/pep-0445) \[https://www.python.org/dev/peps/pep-0445\] -- Add new APIs to customize Python memory allocatorsPEP written and implemented by Victor Stinner.
### PEP 442: Safe Object Finalization
[**PEP 442**](https://www.python.org/dev/peps/pep-0442) \[https://www.python.org/dev/peps/pep-0442\] removes the current limitations and quirks of object finalization in CPython. With it, objects with [`__del__()`](../reference/datamodel.xhtml#object.__del__ "object.__del__") methods, as well as generators with [`finally`](../reference/compound_stmts.xhtml#finally) clauses, can be finalized when they are part of a reference cycle.
As part of this change, module globals are no longer forcibly set to [`None`](../library/constants.xhtml#None "None") during interpreter shutdown in most cases, instead relying on the normal operation of the cyclic garbage collector. This avoids a whole class of interpreter-shutdown-time errors, usually involving `__del__` methods, that have plagued Python since the cyclic GC was first introduced.
參見
[**PEP 442**](https://www.python.org/dev/peps/pep-0442) \[https://www.python.org/dev/peps/pep-0442\] -- Safe object finalizationPEP written and implemented by Antoine Pitrou.
### PEP 456: Secure and Interchangeable Hash Algorithm
[**PEP 456**](https://www.python.org/dev/peps/pep-0456) \[https://www.python.org/dev/peps/pep-0456\] follows up on earlier security fix work done on Python's hash algorithm to address certain DOS attacks to which public facing APIs backed by dictionary lookups may be subject. (See [bpo-14621](https://bugs.python.org/issue14621) \[https://bugs.python.org/issue14621\] for the start of the current round of improvements.) The PEP unifies CPython's hash code to make it easier for a packager to substitute a different hash algorithm, and switches Python's default implementation to a SipHash implementation on platforms that have a 64 bit data type. Any performance differences in comparison with the older FNV algorithm are trivial.
The PEP adds additional fields to the [`sys.hash_info`](../library/sys.xhtml#sys.hash_info "sys.hash_info") struct sequence to describe the hash algorithm in use by the currently executing binary. Otherwise, the PEP does not alter any existing CPython APIs.
### PEP 436: Argument Clinic
"Argument Clinic" ([**PEP 436**](https://www.python.org/dev/peps/pep-0436) \[https://www.python.org/dev/peps/pep-0436\]) is now part of the CPython build process and can be used to simplify the process of defining and maintaining accurate signatures for builtins and standard library extension modules implemented in C.
Some standard library extension modules have been converted to use Argument Clinic in Python 3.4, and [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") and [`inspect`](../library/inspect.xhtml#module-inspect "inspect: Extract information and source code from live objects.") have been updated accordingly.
It is expected that signature metadata for programmatic introspection will be added to additional callables implemented in C as part of Python 3.4 maintenance releases.
注解
The Argument Clinic PEP is not fully up to date with the state of the implementation. This has been deemed acceptable by the release manager and core development team in this case, as Argument Clinic will not be made available as a public API for third party use in Python 3.4.
參見
[**PEP 436**](https://www.python.org/dev/peps/pep-0436) \[https://www.python.org/dev/peps/pep-0436\] -- The Argument Clinic DSLPEP written and implemented by Larry Hastings.
### Other Build and C API Changes
- The new [`PyType_GetSlot()`](../c-api/type.xhtml#c.PyType_GetSlot "PyType_GetSlot") function has been added to the stable ABI, allowing retrieval of function pointers from named type slots when using the limited API. (Contributed by Martin von L?wis in [bpo-17162](https://bugs.python.org/issue17162) \[https://bugs.python.org/issue17162\].)
- The new [`Py_SetStandardStreamEncoding()`](../c-api/init.xhtml#c.Py_SetStandardStreamEncoding "Py_SetStandardStreamEncoding") pre-initialization API allows applications embedding the CPython interpreter to reliably force a particular encoding and error handler for the standard streams. (Contributed by Bastien Montagne and Nick Coghlan in [bpo-16129](https://bugs.python.org/issue16129) \[https://bugs.python.org/issue16129\].)
- Most Python C APIs that don't mutate string arguments are now correctly marked as accepting `const char *` rather than `char *`. (Contributed by Serhiy Storchaka in [bpo-1772673](https://bugs.python.org/issue1772673) \[https://bugs.python.org/issue1772673\].)
- A new shell version of `python-config` can be used even when a python interpreter is not available (for example, in cross compilation scenarios).
- [`PyUnicode_FromFormat()`](../c-api/unicode.xhtml#c.PyUnicode_FromFormat "PyUnicode_FromFormat") now supports width and precision specifications for `%s`, `%A`, `%U`, `%V`, `%S`, and `%R`. (Contributed by Ysj Ray and Victor Stinner in [bpo-7330](https://bugs.python.org/issue7330) \[https://bugs.python.org/issue7330\].)
- New function [`PyStructSequence_InitType2()`](../c-api/tuple.xhtml#c.PyStructSequence_InitType2 "PyStructSequence_InitType2") supplements the existing [`PyStructSequence_InitType()`](../c-api/tuple.xhtml#c.PyStructSequence_InitType "PyStructSequence_InitType") function. The difference is that it returns `0` on success and `-1` on failure.
- The CPython source can now be compiled using the address sanity checking features of recent versions of GCC and clang: the false alarms in the small object allocator have been silenced. (Contributed by Dhiru Kholia in [bpo-18596](https://bugs.python.org/issue18596) \[https://bugs.python.org/issue18596\].)
- The Windows build now uses [Address Space Layout Randomization](https://en.wikipedia.org/wiki/Address_space_layout_randomization) \[https://en.wikipedia.org/wiki/Address\_space\_layout\_randomization\] and [Data Execution Prevention](https://en.wikipedia.org/wiki/Data_Execution_Prevention) \[https://en.wikipedia.org/wiki/Data\_Execution\_Prevention\]. (Contributed by Christian Heimes in [bpo-16632](https://bugs.python.org/issue16632) \[https://bugs.python.org/issue16632\].)
- New function [`PyObject_LengthHint()`](../c-api/object.xhtml#c.PyObject_LengthHint "PyObject_LengthHint") is the C API equivalent of [`operator.length_hint()`](../library/operator.xhtml#operator.length_hint "operator.length_hint"). (Contributed by Armin Ronacher in [bpo-16148](https://bugs.python.org/issue16148) \[https://bugs.python.org/issue16148\].)
### 其他改進
- The [python](../using/cmdline.xhtml#using-on-cmdline) command has a new [option](../using/cmdline.xhtml#using-on-misc-options), `-I`, which causes it to run in "isolated mode", which means that [`sys.path`](../library/sys.xhtml#sys.path "sys.path") contains neither the script's directory nor the user's `site-packages` directory, and all `PYTHON*` environment variables are ignored (it implies both `-s` and `-E`). Other restrictions may also be applied in the future, with the goal being to isolate the execution of a script from the user's environment. This is appropriate, for example, when Python is used to run a system script. On most POSIX systems it can and should be used in the `#!` line of system scripts. (Contributed by Christian Heimes in [bpo-16499](https://bugs.python.org/issue16499) \[https://bugs.python.org/issue16499\].)
- Tab-completion is now enabled by default in the interactive interpreter on systems that support [`readline`](../library/readline.xhtml#module-readline "readline: GNU readline support for Python. (Unix)"). History is also enabled by default, and is written to (and read from) the file `~/.python-history`. (Contributed by Antoine Pitrou and éric Araujo in [bpo-5845](https://bugs.python.org/issue5845) \[https://bugs.python.org/issue5845\].)
- Invoking the Python interpreter with `--version` now outputs the version to standard output instead of standard error ([bpo-18338](https://bugs.python.org/issue18338) \[https://bugs.python.org/issue18338\]). Similar changes were made to [`argparse`](../library/argparse.xhtml#module-argparse "argparse: Command-line option and argument parsing library.") ([bpo-18920](https://bugs.python.org/issue18920) \[https://bugs.python.org/issue18920\]) and other modules that have script-like invocation capabilities ([bpo-18922](https://bugs.python.org/issue18922) \[https://bugs.python.org/issue18922\]).
- The CPython Windows installer now adds `.py` to the `PATHEXT`variable when extensions are registered, allowing users to run a python script at the windows command prompt by just typing its name without the `.py` extension. (Contributed by Paul Moore in [bpo-18569](https://bugs.python.org/issue18569) \[https://bugs.python.org/issue18569\].)
- A new `make` target [coverage-report](https://devguide.python.org/coverage/#measuring-coverage-of-c-code-with-gcov-and-lcov) \[https://devguide.python.org/coverage/#measuring-coverage-of-c-code-with-gcov-and-lcov\]will build python, run the test suite, and generate an HTML coverage report for the C codebase using `gcov` and [lcov](http://ltp.sourceforge.net/coverage/lcov.php) \[http://ltp.sourceforge.net/coverage/lcov.php\].
- The `-R` option to the [python regression test suite](../library/test.xhtml#regrtest) now also checks for memory allocation leaks, using [`sys.getallocatedblocks()`](../library/sys.xhtml#sys.getallocatedblocks "sys.getallocatedblocks"). (Contributed by Antoine Pitrou in [bpo-13390](https://bugs.python.org/issue13390) \[https://bugs.python.org/issue13390\].)
- `python -m` now works with namespace packages.
- The [`stat`](../library/stat.xhtml#module-stat "stat: Utilities for interpreting the results of os.stat(), os.lstat() and os.fstat().") module is now implemented in C, which means it gets the values for its constants from the C header files, instead of having the values hard-coded in the python module as was previously the case.
- Loading multiple python modules from a single OS module (`.so`, `.dll`) now works correctly (previously it silently returned the first python module in the file). (Contributed by Václav ?milauer in [bpo-16421](https://bugs.python.org/issue16421) \[https://bugs.python.org/issue16421\].)
- A new opcode, [`LOAD_CLASSDEREF`](../library/dis.xhtml#opcode-LOAD_CLASSDEREF), has been added to fix a bug in the loading of free variables in class bodies that could be triggered by certain uses of [\_\_prepare\_\_](../reference/datamodel.xhtml#prepare). (Contributed by Benjamin Peterson in [bpo-17853](https://bugs.python.org/issue17853) \[https://bugs.python.org/issue17853\].)
- A number of MemoryError-related crashes were identified and fixed by Victor Stinner using his [**PEP 445**](https://www.python.org/dev/peps/pep-0445) \[https://www.python.org/dev/peps/pep-0445\]-based `pyfailmalloc` tool ([bpo-18408](https://bugs.python.org/issue18408) \[https://bugs.python.org/issue18408\], [bpo-18520](https://bugs.python.org/issue18520) \[https://bugs.python.org/issue18520\]).
- The `pyvenv` command now accepts a `--copies` option to use copies rather than symlinks even on systems where symlinks are the default. (Contributed by Vinay Sajip in [bpo-18807](https://bugs.python.org/issue18807) \[https://bugs.python.org/issue18807\].)
- The `pyvenv` command also accepts a `--without-pip`option to suppress the otherwise-automatic bootstrapping of pip into the virtual environment. (Contributed by Nick Coghlan in [bpo-19552](https://bugs.python.org/issue19552) \[https://bugs.python.org/issue19552\]as part of the [**PEP 453**](https://www.python.org/dev/peps/pep-0453) \[https://www.python.org/dev/peps/pep-0453\] implementation.)
- The encoding name is now optional in the value set for the [`PYTHONIOENCODING`](../using/cmdline.xhtml#envvar-PYTHONIOENCODING) environment variable. This makes it possible to set just the error handler, without changing the default encoding. (Contributed by Serhiy Storchaka in [bpo-18818](https://bugs.python.org/issue18818) \[https://bugs.python.org/issue18818\].)
- The [`bz2`](../library/bz2.xhtml#module-bz2 "bz2: Interfaces for bzip2 compression and decompression."), [`lzma`](../library/lzma.xhtml#module-lzma "lzma: A Python wrapper for the liblzma compression library."), and [`gzip`](../library/gzip.xhtml#module-gzip "gzip: Interfaces for gzip compression and decompression using file objects.") module `open` functions now support `x` (exclusive creation) mode. (Contributed by Tim Heaney and Vajrasky Kok in [bpo-19201](https://bugs.python.org/issue19201) \[https://bugs.python.org/issue19201\], [bpo-19222](https://bugs.python.org/issue19222) \[https://bugs.python.org/issue19222\], and [bpo-19223](https://bugs.python.org/issue19223) \[https://bugs.python.org/issue19223\].)
### Significant Optimizations
- The UTF-32 decoder is now 3x to 4x faster. (Contributed by Serhiy Storchaka in [bpo-14625](https://bugs.python.org/issue14625) \[https://bugs.python.org/issue14625\].)
- The cost of hash collisions for sets is now reduced. Each hash table probe now checks a series of consecutive, adjacent key/hash pairs before continuing to make random probes through the hash table. This exploits cache locality to make collision resolution less expensive. The collision resolution scheme can be described as a hybrid of linear probing and open addressing. The number of additional linear probes defaults to nine. This can be changed at compile-time by defining LINEAR\_PROBES to be any value. Set LINEAR\_PROBES=0 to turn-off linear probing entirely. (Contributed by Raymond Hettinger in [bpo-18771](https://bugs.python.org/issue18771) \[https://bugs.python.org/issue18771\].)
- The interpreter starts about 30% faster. A couple of measures lead to the speedup. The interpreter loads fewer modules on startup, e.g. the [`re`](../library/re.xhtml#module-re "re: Regular expression operations."), [`collections`](../library/collections.xhtml#module-collections "collections: Container datatypes") and [`locale`](../library/locale.xhtml#module-locale "locale: Internationalization services.") modules and their dependencies are no longer imported by default. The marshal module has been improved to load compiled Python code faster. (Contributed by Antoine Pitrou, Christian Heimes and Victor Stinner in [bpo-19219](https://bugs.python.org/issue19219) \[https://bugs.python.org/issue19219\], [bpo-19218](https://bugs.python.org/issue19218) \[https://bugs.python.org/issue19218\], [bpo-19209](https://bugs.python.org/issue19209) \[https://bugs.python.org/issue19209\], [bpo-19205](https://bugs.python.org/issue19205) \[https://bugs.python.org/issue19205\] and [bpo-9548](https://bugs.python.org/issue9548) \[https://bugs.python.org/issue9548\].)
- [`bz2.BZ2File`](../library/bz2.xhtml#bz2.BZ2File "bz2.BZ2File") is now as fast or faster than the Python2 version for most cases. [`lzma.LZMAFile`](../library/lzma.xhtml#lzma.LZMAFile "lzma.LZMAFile") has also been optimized. (Contributed by Serhiy Storchaka and Nadeem Vawda in [bpo-16034](https://bugs.python.org/issue16034) \[https://bugs.python.org/issue16034\].)
- [`random.getrandbits()`](../library/random.xhtml#random.getrandbits "random.getrandbits") is 20%-40% faster for small integers (the most common use case). (Contributed by Serhiy Storchaka in [bpo-16674](https://bugs.python.org/issue16674) \[https://bugs.python.org/issue16674\].)
- By taking advantage of the new storage format for strings, pickling of strings is now significantly faster. (Contributed by Victor Stinner and Antoine Pitrou in [bpo-15596](https://bugs.python.org/issue15596) \[https://bugs.python.org/issue15596\].)
- A performance issue in `io.FileIO.readall()` has been solved. This particularly affects Windows, and significantly speeds up the case of piping significant amounts of data through [`subprocess`](../library/subprocess.xhtml#module-subprocess "subprocess: Subprocess management."). (Contributed by Richard Oudkerk in [bpo-15758](https://bugs.python.org/issue15758) \[https://bugs.python.org/issue15758\].)
- [`html.escape()`](../library/html.xhtml#html.escape "html.escape") is now 10x faster. (Contributed by Matt Bryant in [bpo-18020](https://bugs.python.org/issue18020) \[https://bugs.python.org/issue18020\].)
- On Windows, the native `VirtualAlloc` is now used instead of the CRT `malloc` in `obmalloc`. Artificial benchmarks show about a 3% memory savings.
- [`os.urandom()`](../library/os.xhtml#os.urandom "os.urandom") now uses a lazily-opened persistent file descriptor so as to avoid using many file descriptors when run in parallel from multiple threads. (Contributed by Antoine Pitrou in [bpo-18756](https://bugs.python.org/issue18756) \[https://bugs.python.org/issue18756\].)
## 棄用
This section covers various APIs and other features that have been deprecated in Python 3.4, and will be removed in Python 3.5 or later. In most (but not all) cases, using the deprecated APIs will produce a [`DeprecationWarning`](../library/exceptions.xhtml#DeprecationWarning "DeprecationWarning")when the interpreter is run with deprecation warnings enabled (for example, by using `-Wd`).
### Deprecations in the Python API
- As mentioned in [PEP 451: A ModuleSpec Type for the Import System](#whatsnew-pep-451), a number of [`importlib`](../library/importlib.xhtml#module-importlib "importlib: The implementation of the import machinery.")methods and functions are deprecated: [`importlib.find_loader()`](../library/importlib.xhtml#importlib.find_loader "importlib.find_loader") is replaced by [`importlib.util.find_spec()`](../library/importlib.xhtml#importlib.util.find_spec "importlib.util.find_spec"); [`importlib.machinery.PathFinder.find_module()`](../library/importlib.xhtml#importlib.machinery.PathFinder.find_module "importlib.machinery.PathFinder.find_module") is replaced by [`importlib.machinery.PathFinder.find_spec()`](../library/importlib.xhtml#importlib.machinery.PathFinder.find_spec "importlib.machinery.PathFinder.find_spec"); [`importlib.abc.MetaPathFinder.find_module()`](../library/importlib.xhtml#importlib.abc.MetaPathFinder.find_module "importlib.abc.MetaPathFinder.find_module") is replaced by [`importlib.abc.MetaPathFinder.find_spec()`](../library/importlib.xhtml#importlib.abc.MetaPathFinder.find_spec "importlib.abc.MetaPathFinder.find_spec"); [`importlib.abc.PathEntryFinder.find_loader()`](../library/importlib.xhtml#importlib.abc.PathEntryFinder.find_loader "importlib.abc.PathEntryFinder.find_loader") and [`find_module()`](../library/importlib.xhtml#importlib.abc.PathEntryFinder.find_module "importlib.abc.PathEntryFinder.find_module") are replaced by [`importlib.abc.PathEntryFinder.find_spec()`](../library/importlib.xhtml#importlib.abc.PathEntryFinder.find_spec "importlib.abc.PathEntryFinder.find_spec"); all of the `xxxLoader` ABC `load_module` methods ([`importlib.abc.Loader.load_module()`](../library/importlib.xhtml#importlib.abc.Loader.load_module "importlib.abc.Loader.load_module"), [`importlib.abc.InspectLoader.load_module()`](../library/importlib.xhtml#importlib.abc.InspectLoader.load_module "importlib.abc.InspectLoader.load_module"), [`importlib.abc.FileLoader.load_module()`](../library/importlib.xhtml#importlib.abc.FileLoader.load_module "importlib.abc.FileLoader.load_module"), [`importlib.abc.SourceLoader.load_module()`](../library/importlib.xhtml#importlib.abc.SourceLoader.load_module "importlib.abc.SourceLoader.load_module")) should no longer be implemented, instead loaders should implement an `exec_module` method ([`importlib.abc.Loader.exec_module()`](../library/importlib.xhtml#importlib.abc.Loader.exec_module "importlib.abc.Loader.exec_module"), [`importlib.abc.InspectLoader.exec_module()`](../library/importlib.xhtml#importlib.abc.InspectLoader.exec_module "importlib.abc.InspectLoader.exec_module")[`importlib.abc.SourceLoader.exec_module()`](../library/importlib.xhtml#importlib.abc.SourceLoader.exec_module "importlib.abc.SourceLoader.exec_module")) and let the import system take care of the rest; and [`importlib.abc.Loader.module_repr()`](../library/importlib.xhtml#importlib.abc.Loader.module_repr "importlib.abc.Loader.module_repr"), [`importlib.util.module_for_loader()`](../library/importlib.xhtml#importlib.util.module_for_loader "importlib.util.module_for_loader"), [`importlib.util.set_loader()`](../library/importlib.xhtml#importlib.util.set_loader "importlib.util.set_loader"), and [`importlib.util.set_package()`](../library/importlib.xhtml#importlib.util.set_package "importlib.util.set_package") are no longer needed because their functions are now handled automatically by the import system.
- The [`imp`](../library/imp.xhtml#module-imp "imp: Access the implementation of the import statement. (已移除)") module is pending deprecation. To keep compatibility with Python 2/3 code bases, the module's removal is currently not scheduled.
- The [`formatter`](../library/formatter.xhtml#module-formatter "formatter: Generic output formatter and device interface. (已移除)") module is pending deprecation and is slated for removal in Python 3.6.
- `MD5` as the default *digestmod* for the [`hmac.new()`](../library/hmac.xhtml#hmac.new "hmac.new") function is deprecated. Python 3.6 will require an explicit digest name or constructor as *digestmod* argument.
- The internal `Netrc` class in the [`ftplib`](../library/ftplib.xhtml#module-ftplib "ftplib: FTP protocol client (requires sockets).") module has been documented as deprecated in its docstring for quite some time. It now emits a [`DeprecationWarning`](../library/exceptions.xhtml#DeprecationWarning "DeprecationWarning") and will be removed completely in Python 3.5.
- The undocumented *endtime* argument to [`subprocess.Popen.wait()`](../library/subprocess.xhtml#subprocess.Popen.wait "subprocess.Popen.wait") should not have been exposed and is hopefully not in use; it is deprecated and will mostly likely be removed in Python 3.5.
- The *strict* argument of [`HTMLParser`](../library/html.parser.xhtml#html.parser.HTMLParser "html.parser.HTMLParser") is deprecated.
- The [`plistlib`](../library/plistlib.xhtml#module-plistlib "plistlib: Generate and parse Mac OS X plist files.") [`readPlist()`](../library/plistlib.xhtml#plistlib.readPlist "plistlib.readPlist"), [`writePlist()`](../library/plistlib.xhtml#plistlib.writePlist "plistlib.writePlist"), [`readPlistFromBytes()`](../library/plistlib.xhtml#plistlib.readPlistFromBytes "plistlib.readPlistFromBytes"), and [`writePlistToBytes()`](../library/plistlib.xhtml#plistlib.writePlistToBytes "plistlib.writePlistToBytes") functions are deprecated in favor of the corresponding new functions [`load()`](../library/plistlib.xhtml#plistlib.load "plistlib.load"), [`dump()`](../library/plistlib.xhtml#plistlib.dump "plistlib.dump"), [`loads()`](../library/plistlib.xhtml#plistlib.loads "plistlib.loads"), and [`dumps()`](../library/plistlib.xhtml#plistlib.dumps "plistlib.dumps"). [`Data()`](../library/plistlib.xhtml#plistlib.Data "plistlib.Data")is deprecated in favor of just using the [`bytes`](../library/stdtypes.xhtml#bytes "bytes") constructor.
- The [`sysconfig`](../library/sysconfig.xhtml#module-sysconfig "sysconfig: Python's configuration information") key `SO` is deprecated, it has been replaced by `EXT_SUFFIX`.
- The `U` mode accepted by various `open` functions is deprecated. In Python3 it does not do anything useful, and should be replaced by appropriate uses of [`io.TextIOWrapper`](../library/io.xhtml#io.TextIOWrapper "io.TextIOWrapper") (if needed) and its *newline*argument.
- The *parser* argument of [`xml.etree.ElementTree.iterparse()`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.iterparse "xml.etree.ElementTree.iterparse") has been deprecated, as has the *html* argument of [`XMLParser()`](../library/xml.etree.elementtree.xhtml#xml.etree.ElementTree.XMLParser "xml.etree.ElementTree.XMLParser"). To prepare for the removal of the latter, all arguments to `XMLParser` should be passed by keyword.
### Deprecated Features
- Running [IDLE](../library/idle.xhtml#idle) with the `-n` flag (no subprocess) is deprecated. However, the feature will not be removed until [bpo-18823](https://bugs.python.org/issue18823) \[https://bugs.python.org/issue18823\] is resolved.
- The site module adding a "site-python" directory to sys.path, if it exists, is deprecated ([bpo-19375](https://bugs.python.org/issue19375) \[https://bugs.python.org/issue19375\]).
## 移除
### Operating Systems No Longer Supported
Support for the following operating systems has been removed from the source and build tools:
- OS/2 ([bpo-16135](https://bugs.python.org/issue16135) \[https://bugs.python.org/issue16135\]).
- Windows 2000 (changeset e52df05b496a).
- Windows systems where `COMSPEC` points to `command.com` ([bpo-14470](https://bugs.python.org/issue14470) \[https://bugs.python.org/issue14470\]).
- VMS ([bpo-16136](https://bugs.python.org/issue16136) \[https://bugs.python.org/issue16136\]).
### API 與特性的移除
The following obsolete and previously deprecated APIs and features have been removed:
- The unmaintained `Misc/TextMate` and `Misc/vim` directories have been removed (see the [devguide](https://devguide.python.org) \[https://devguide.python.org\]for suggestions on what to use instead).
- The `SO` makefile macro is removed (it was replaced by the `SHLIB_SUFFIX` and `EXT_SUFFIX` macros) ([bpo-16754](https://bugs.python.org/issue16754) \[https://bugs.python.org/issue16754\]).
- The `PyThreadState.tick_counter` field has been removed; its value has been meaningless since Python 3.2, when the "new GIL" was introduced ([bpo-19199](https://bugs.python.org/issue19199) \[https://bugs.python.org/issue19199\]).
- `PyLoader` and `PyPycLoader` have been removed from [`importlib`](../library/importlib.xhtml#module-importlib "importlib: The implementation of the import machinery."). (Contributed by Taras Lyapun in [bpo-15641](https://bugs.python.org/issue15641) \[https://bugs.python.org/issue15641\].)
- The *strict* argument to [`HTTPConnection`](../library/http.client.xhtml#http.client.HTTPConnection "http.client.HTTPConnection") and [`HTTPSConnection`](../library/http.client.xhtml#http.client.HTTPSConnection "http.client.HTTPSConnection") has been removed. HTTP 0.9-style "Simple Responses" are no longer supported.
- The deprecated [`urllib.request.Request`](../library/urllib.request.xhtml#urllib.request.Request "urllib.request.Request") getter and setter methods `add_data`, `has_data`, `get_data`, `get_type`, `get_host`, `get_selector`, `set_proxy`, `get_origin_req_host`, and `is_unverifiable` have been removed (use direct attribute access instead).
- Support for loading the deprecated `TYPE_INT64` has been removed from [`marshal`](../library/marshal.xhtml#module-marshal "marshal: Convert Python objects to streams of bytes and back (with different constraints)."). (Contributed by Dan Riti in [bpo-15480](https://bugs.python.org/issue15480) \[https://bugs.python.org/issue15480\].)
- [`inspect.Signature`](../library/inspect.xhtml#inspect.Signature "inspect.Signature"): positional-only parameters are now required to have a valid name.
- [`object.__format__()`](../reference/datamodel.xhtml#object.__format__ "object.__format__") no longer accepts non-empty format strings, it now raises a [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError") instead. Using a non-empty string has been deprecated since Python 3.2. This change has been made to prevent a situation where previously working (but incorrect) code would start failing if an object gained a \_\_format\_\_ method, which means that your code may now raise a [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError") if you are using an `'s'` format code with objects that do not have a \_\_format\_\_ method that handles it. See [bpo-7994](https://bugs.python.org/issue7994) \[https://bugs.python.org/issue7994\] for background.
- `difflib.SequenceMatcher.isbjunk()` and `difflib.SequenceMatcher.isbpopular()` were deprecated in 3.2, and have now been removed: use `x in sm.bjunk` and `x in sm.bpopular`, where *sm* is a [`SequenceMatcher`](../library/difflib.xhtml#difflib.SequenceMatcher "difflib.SequenceMatcher") object ([bpo-13248](https://bugs.python.org/issue13248) \[https://bugs.python.org/issue13248\]).
### Code Cleanups
- The unused and undocumented internal `Scanner` class has been removed from the [`pydoc`](../library/pydoc.xhtml#module-pydoc "pydoc: Documentation generator and online help system.") module.
- The private and effectively unused `_gestalt` module has been removed, along with the private [`platform`](../library/platform.xhtml#module-platform "platform: Retrieves as much platform identifying data as possible.") functions `_mac_ver_lookup`, `_mac_ver_gstalt`, and `_bcd2str`, which would only have ever been called on badly broken OSX systems (see [bpo-18393](https://bugs.python.org/issue18393) \[https://bugs.python.org/issue18393\]).
- The hardcoded copies of certain [`stat`](../library/stat.xhtml#module-stat "stat: Utilities for interpreting the results of os.stat(), os.lstat() and os.fstat().") constants that were included in the [`tarfile`](../library/tarfile.xhtml#module-tarfile "tarfile: Read and write tar-format archive files.") module namespace have been removed.
## Porting to Python 3.4
本節列出了先前描述的更改以及可能需要更改代碼的其他錯誤修正.
### 'python' 命令行為的變化
- In a posix shell, setting the `PATH` environment variable to an empty value is equivalent to not setting it at all. However, setting [`PYTHONPATH`](../using/cmdline.xhtml#envvar-PYTHONPATH) to an empty value was *not* equivalent to not setting it at all: setting [`PYTHONPATH`](../using/cmdline.xhtml#envvar-PYTHONPATH) to an empty value was equivalent to setting it to `.`, which leads to confusion when reasoning by analogy to how `PATH` works. The behavior now conforms to the posix convention for `PATH`.
- The \[X refs, Y blocks\] output of a debug (`--with-pydebug`) build of the CPython interpreter is now off by default. It can be re-enabled using the `-X showrefcount` option. (Contributed by Ezio Melotti in [bpo-17323](https://bugs.python.org/issue17323) \[https://bugs.python.org/issue17323\].)
- The python command and most stdlib scripts (as well as [`argparse`](../library/argparse.xhtml#module-argparse "argparse: Command-line option and argument parsing library.")) now output `--version` information to `stdout` instead of `stderr` (for issue list see [其他改進](#other-improvements-3-4) above).
### 改變了的Python API
- The ABCs defined in [`importlib.abc`](../library/importlib.xhtml#module-importlib.abc "importlib.abc: Abstract base classes related to import") now either raise the appropriate exception or return a default value instead of raising [`NotImplementedError`](../library/exceptions.xhtml#NotImplementedError "NotImplementedError") blindly. This will only affect code calling [`super()`](../library/functions.xhtml#super "super") and falling through all the way to the ABCs. For compatibility, catch both [`NotImplementedError`](../library/exceptions.xhtml#NotImplementedError "NotImplementedError") or the appropriate exception as needed.
- The module type now initializes the [`__package__`](../reference/import.xhtml#__package__ "__package__") and [`__loader__`](../reference/import.xhtml#__loader__ "__loader__")attributes to `None` by default. To determine if these attributes were set in a backwards-compatible fashion, use e.g. `getattr(module, '__loader__', None) is not None`. ([bpo-17115](https://bugs.python.org/issue17115) \[https://bugs.python.org/issue17115\].)
- [`importlib.util.module_for_loader()`](../library/importlib.xhtml#importlib.util.module_for_loader "importlib.util.module_for_loader") now sets `__loader__` and `__package__` unconditionally to properly support reloading. If this is not desired then you will need to set these attributes manually. You can use `importlib.util.module_to_load()` for module management.
- Import now resets relevant attributes (e.g. `__name__`, `__loader__`, `__package__`, `__file__`, `__cached__`) unconditionally when reloading. Note that this restores a pre-3.3 behavior in that it means a module is re-found when re-loaded ([bpo-19413](https://bugs.python.org/issue19413) \[https://bugs.python.org/issue19413\]).
- Frozen packages no longer set `__path__` to a list containing the package name, they now set it to an empty list. The previous behavior could cause the import system to do the wrong thing on submodule imports if there was also a directory with the same name as the frozen package. The correct way to determine if a module is a package or not is to use
```
hasattr(module,
'__path__')
```
([bpo-18065](https://bugs.python.org/issue18065) \[https://bugs.python.org/issue18065\]).
- Frozen modules no longer define a `__file__` attribute. It's semantically incorrect for frozen modules to set the attribute as they are not loaded from any explicit location. If you must know that a module comes from frozen code then you can see if the module's `__spec__.location` is set to `'frozen'`, check if the loader is a subclass of [`importlib.machinery.FrozenImporter`](../library/importlib.xhtml#importlib.machinery.FrozenImporter "importlib.machinery.FrozenImporter"), or if Python 2 compatibility is necessary you can use `imp.is_frozen()`.
- [`py_compile.compile()`](../library/py_compile.xhtml#py_compile.compile "py_compile.compile") now raises [`FileExistsError`](../library/exceptions.xhtml#FileExistsError "FileExistsError") if the file path it would write to is a symlink or a non-regular file. This is to act as a warning that import will overwrite those files with a regular file regardless of what type of file path they were originally.
- [`importlib.abc.SourceLoader.get_source()`](../library/importlib.xhtml#importlib.abc.SourceLoader.get_source "importlib.abc.SourceLoader.get_source") no longer raises [`ImportError`](../library/exceptions.xhtml#ImportError "ImportError") when the source code being loaded triggers a [`SyntaxError`](../library/exceptions.xhtml#SyntaxError "SyntaxError") or [`UnicodeDecodeError`](../library/exceptions.xhtml#UnicodeDecodeError "UnicodeDecodeError"). As [`ImportError`](../library/exceptions.xhtml#ImportError "ImportError") is meant to be raised only when source code cannot be found but it should, it was felt to be over-reaching/overloading of that meaning when the source code is found but improperly structured. If you were catching ImportError before and wish to continue to ignore syntax or decoding issues, catch all three exceptions now.
- [`functools.update_wrapper()`](../library/functools.xhtml#functools.update_wrapper "functools.update_wrapper") and [`functools.wraps()`](../library/functools.xhtml#functools.wraps "functools.wraps") now correctly set the `__wrapped__` attribute to the function being wrapped, even if that function also had its `__wrapped__` attribute set. This means `__wrapped__` attributes now correctly link a stack of decorated functions rather than every `__wrapped__` attribute in the chain referring to the innermost function. Introspection libraries that assumed the previous behaviour was intentional can use [`inspect.unwrap()`](../library/inspect.xhtml#inspect.unwrap "inspect.unwrap") to access the first function in the chain that has no `__wrapped__` attribute.
- [`inspect.getfullargspec()`](../library/inspect.xhtml#inspect.getfullargspec "inspect.getfullargspec") has been reimplemented on top of [`inspect.signature()`](../library/inspect.xhtml#inspect.signature "inspect.signature") and hence handles a much wider variety of callable objects than it did in the past. It is expected that additional builtin and extension module callables will gain signature metadata over the course of the Python 3.4 series. Code that assumes that [`inspect.getfullargspec()`](../library/inspect.xhtml#inspect.getfullargspec "inspect.getfullargspec") will fail on non-Python callables may need to be adjusted accordingly.
- [`importlib.machinery.PathFinder`](../library/importlib.xhtml#importlib.machinery.PathFinder "importlib.machinery.PathFinder") now passes on the current working directory to objects in [`sys.path_hooks`](../library/sys.xhtml#sys.path_hooks "sys.path_hooks") for the empty string. This results in [`sys.path_importer_cache`](../library/sys.xhtml#sys.path_importer_cache "sys.path_importer_cache") never containing `''`, thus iterating through [`sys.path_importer_cache`](../library/sys.xhtml#sys.path_importer_cache "sys.path_importer_cache") based on [`sys.path`](../library/sys.xhtml#sys.path "sys.path")will not find all keys. A module's `__file__` when imported in the current working directory will also now have an absolute path, including when using `-m` with the interpreter (except for `__main__.__file__` when a script has been executed directly using a relative path) (Contributed by Brett Cannon in [bpo-18416](https://bugs.python.org/issue18416) \[https://bugs.python.org/issue18416\]). is specified on the command-line) ([bpo-18416](https://bugs.python.org/issue18416) \[https://bugs.python.org/issue18416\]).
- The removal of the *strict* argument to [`HTTPConnection`](../library/http.client.xhtml#http.client.HTTPConnection "http.client.HTTPConnection")and [`HTTPSConnection`](../library/http.client.xhtml#http.client.HTTPSConnection "http.client.HTTPSConnection") changes the meaning of the remaining arguments if you are specifying them positionally rather than by keyword. If you've been paying attention to deprecation warnings your code should already be specifying any additional arguments via keywords.
- Strings between `from __future__ import ...` statements now *always* raise a [`SyntaxError`](../library/exceptions.xhtml#SyntaxError "SyntaxError"). Previously if there was no leading docstring, an interstitial string would sometimes be ignored. This brings CPython into compliance with the language spec; Jython and PyPy already were. ([bpo-17434](https://bugs.python.org/issue17434) \[https://bugs.python.org/issue17434\]).
- [`ssl.SSLSocket.getpeercert()`](../library/ssl.xhtml#ssl.SSLSocket.getpeercert "ssl.SSLSocket.getpeercert") and [`ssl.SSLSocket.do_handshake()`](../library/ssl.xhtml#ssl.SSLSocket.do_handshake "ssl.SSLSocket.do_handshake")now raise an [`OSError`](../library/exceptions.xhtml#OSError "OSError") with `ENOTCONN` when the `SSLSocket` is not connected, instead of the previous behavior of raising an [`AttributeError`](../library/exceptions.xhtml#AttributeError "AttributeError"). In addition, [`getpeercert()`](../library/ssl.xhtml#ssl.SSLSocket.getpeercert "ssl.SSLSocket.getpeercert")will raise a [`ValueError`](../library/exceptions.xhtml#ValueError "ValueError") if the handshake has not yet been done.
- [`base64.b32decode()`](../library/base64.xhtml#base64.b32decode "base64.b32decode") now raises a [`binascii.Error`](../library/binascii.xhtml#binascii.Error "binascii.Error") when the input string contains non-b32-alphabet characters, instead of a [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError"). This particular [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError") was missed when the other [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError")s were converted. (Contributed by Serhiy Storchaka in [bpo-18011](https://bugs.python.org/issue18011) \[https://bugs.python.org/issue18011\].) Note: this change was also inadvertently applied in Python 3.3.3.
- The `file` attribute is now automatically closed when the creating `cgi.FieldStorage` instance is garbage collected. If you were pulling the file object out separately from the `cgi.FieldStorage`instance and not keeping the instance alive, then you should either store the entire `cgi.FieldStorage` instance or read the contents of the file before the `cgi.FieldStorage` instance is garbage collected.
- Calling `read` or `write` on a closed SSL socket now raises an informative [`ValueError`](../library/exceptions.xhtml#ValueError "ValueError") rather than the previous more mysterious [`AttributeError`](../library/exceptions.xhtml#AttributeError "AttributeError") ([bpo-9177](https://bugs.python.org/issue9177) \[https://bugs.python.org/issue9177\]).
- [`slice.indices()`](../reference/datamodel.xhtml#slice.indices "slice.indices") no longer produces an [`OverflowError`](../library/exceptions.xhtml#OverflowError "OverflowError") for huge values. As a consequence of this fix, [`slice.indices()`](../reference/datamodel.xhtml#slice.indices "slice.indices") now raises a [`ValueError`](../library/exceptions.xhtml#ValueError "ValueError") if given a negative length; previously it returned nonsense values ([bpo-14794](https://bugs.python.org/issue14794) \[https://bugs.python.org/issue14794\]).
- The [`complex`](../library/functions.xhtml#complex "complex") constructor, unlike the [`cmath`](../library/cmath.xhtml#module-cmath "cmath: Mathematical functions for complex numbers.") functions, was incorrectly accepting [`float`](../library/functions.xhtml#float "float") values if an object's `__complex__`special method returned one. This now raises a [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError"). ([bpo-16290](https://bugs.python.org/issue16290) \[https://bugs.python.org/issue16290\].)
- The [`int`](../library/functions.xhtml#int "int") constructor in 3.2 and 3.3 erroneously accepts [`float`](../library/functions.xhtml#float "float")values for the *base* parameter. It is unlikely anyone was doing this, but if so, it will now raise a [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError") ([bpo-16772](https://bugs.python.org/issue16772) \[https://bugs.python.org/issue16772\]).
- Defaults for keyword-only arguments are now evaluated *after* defaults for regular keyword arguments, instead of before. Hopefully no one wrote any code that depends on the previous buggy behavior ([bpo-16967](https://bugs.python.org/issue16967) \[https://bugs.python.org/issue16967\]).
- Stale thread states are now cleared after [`fork()`](../library/os.xhtml#os.fork "os.fork"). This may cause some system resources to be released that previously were incorrectly kept perpetually alive (for example, database connections kept in thread-local storage). ([bpo-17094](https://bugs.python.org/issue17094) \[https://bugs.python.org/issue17094\].)
- Parameter names in `__annotations__` dicts are now mangled properly, similarly to `__kwdefaults__`. (Contributed by Yury Selivanov in [bpo-20625](https://bugs.python.org/issue20625) \[https://bugs.python.org/issue20625\].)
- [`hashlib.hash.name`](../library/hashlib.xhtml#hashlib.hash.name "hashlib.hash.name") now always returns the identifier in lower case. Previously some builtin hashes had uppercase names, but now that it is a formal public interface the naming has been made consistent ([bpo-18532](https://bugs.python.org/issue18532) \[https://bugs.python.org/issue18532\]).
- Because [`unittest.TestSuite`](../library/unittest.xhtml#unittest.TestSuite "unittest.TestSuite") now drops references to tests after they are run, test harnesses that re-use a [`TestSuite`](../library/unittest.xhtml#unittest.TestSuite "unittest.TestSuite") to re-run a set of tests may fail. Test suites should not be re-used in this fashion since it means state is retained between test runs, breaking the test isolation that [`unittest`](../library/unittest.xhtml#module-unittest "unittest: Unit testing framework for Python.") is designed to provide. However, if the lack of isolation is considered acceptable, the old behavior can be restored by creating a [`TestSuite`](../library/unittest.xhtml#unittest.TestSuite "unittest.TestSuite") subclass that defines a `_removeTestAtIndex` method that does nothing (see [`TestSuite.__iter__()`](../library/unittest.xhtml#unittest.TestSuite.__iter__ "unittest.TestSuite.__iter__")) ([bpo-11798](https://bugs.python.org/issue11798) \[https://bugs.python.org/issue11798\]).
- [`unittest`](../library/unittest.xhtml#module-unittest "unittest: Unit testing framework for Python.") now uses [`argparse`](../library/argparse.xhtml#module-argparse "argparse: Command-line option and argument parsing library.") for command line parsing. There are certain invalid command forms that used to work that are no longer allowed; in theory this should not cause backward compatibility issues since the disallowed command forms didn't make any sense and are unlikely to be in use.
- The [`re.split()`](../library/re.xhtml#re.split "re.split"), [`re.findall()`](../library/re.xhtml#re.findall "re.findall"), and [`re.sub()`](../library/re.xhtml#re.sub "re.sub") functions, and the `group()` and `groups()` methods of `match` objects now always return a *bytes* object when the string to be matched is a [bytes-like object](../glossary.xhtml#term-bytes-like-object). Previously the return type matched the input type, so if your code was depending on the return value being, say, a `bytearray`, you will need to change your code.
- [`audioop`](../library/audioop.xhtml#module-audioop "audioop: Manipulate raw audio data.") functions now raise an error immediately if passed string input, instead of failing randomly later on ([bpo-16685](https://bugs.python.org/issue16685) \[https://bugs.python.org/issue16685\]).
- The new *convert\_charrefs* argument to [`HTMLParser`](../library/html.parser.xhtml#html.parser.HTMLParser "html.parser.HTMLParser")currently defaults to `False` for backward compatibility, but will eventually be changed to default to `True`. It is recommended that you add this keyword, with the appropriate value, to any [`HTMLParser`](../library/html.parser.xhtml#html.parser.HTMLParser "html.parser.HTMLParser") calls in your code ([bpo-13633](https://bugs.python.org/issue13633) \[https://bugs.python.org/issue13633\]).
- Since the *digestmod* argument to the [`hmac.new()`](../library/hmac.xhtml#hmac.new "hmac.new") function will in the future have no default, all calls to [`hmac.new()`](../library/hmac.xhtml#hmac.new "hmac.new") should be changed to explicitly specify a *digestmod* ([bpo-17276](https://bugs.python.org/issue17276) \[https://bugs.python.org/issue17276\]).
- Calling [`sysconfig.get_config_var()`](../library/sysconfig.xhtml#sysconfig.get_config_var "sysconfig.get_config_var") with the `SO` key, or looking `SO` up in the results of a call to [`sysconfig.get_config_vars()`](../library/sysconfig.xhtml#sysconfig.get_config_vars "sysconfig.get_config_vars")is deprecated. This key should be replaced by `EXT_SUFFIX` or `SHLIB_SUFFIX`, depending on the context ([bpo-19555](https://bugs.python.org/issue19555) \[https://bugs.python.org/issue19555\]).
- Any calls to `open` functions that specify `U` should be modified. `U` is ineffective in Python3 and will eventually raise an error if used. Depending on the function, the equivalent of its old Python2 behavior can be achieved using either a *newline* argument, or if necessary by wrapping the stream in [`TextIOWrapper`](../library/io.xhtml#io.TextIOWrapper "io.TextIOWrapper") to use its *newline* argument ([bpo-15204](https://bugs.python.org/issue15204) \[https://bugs.python.org/issue15204\]).
- If you use `pyvenv` in a script and desire that pip *not* be installed, you must add `--without-pip` to your command invocation.
- The default behavior of [`json.dump()`](../library/json.xhtml#json.dump "json.dump") and [`json.dumps()`](../library/json.xhtml#json.dumps "json.dumps") when an indent is specified has changed: it no longer produces trailing spaces after the item separating commas at the ends of lines. This will matter only if you have tests that are doing white-space-sensitive comparisons of such output ([bpo-16333](https://bugs.python.org/issue16333) \[https://bugs.python.org/issue16333\]).
- [`doctest`](../library/doctest.xhtml#module-doctest "doctest: Test pieces of code within docstrings.") now looks for doctests in extension module `__doc__`strings, so if your doctest test discovery includes extension modules that have things that look like doctests in them you may see test failures you've never seen before when running your tests ([bpo-3158](https://bugs.python.org/issue3158) \[https://bugs.python.org/issue3158\]).
- The [`collections.abc`](../library/collections.abc.xhtml#module-collections.abc "collections.abc: Abstract base classes for containers") module has been slightly refactored as part of the Python startup improvements. As a consequence of this, it is no longer the case that importing [`collections`](../library/collections.xhtml#module-collections "collections: Container datatypes") automatically imports [`collections.abc`](../library/collections.abc.xhtml#module-collections.abc "collections.abc: Abstract base classes for containers"). If your program depended on the (undocumented) implicit import, you will need to add an explicit `import collections.abc`([bpo-20784](https://bugs.python.org/issue20784) \[https://bugs.python.org/issue20784\]).
### C API 中的改變
- [`PyEval_EvalFrameEx()`](../c-api/veryhigh.xhtml#c.PyEval_EvalFrameEx "PyEval_EvalFrameEx"), [`PyObject_Repr()`](../c-api/object.xhtml#c.PyObject_Repr "PyObject_Repr"), and [`PyObject_Str()`](../c-api/object.xhtml#c.PyObject_Str "PyObject_Str"), along with some other internal C APIs, now include a debugging assertion that ensures they are not used in situations where they may silently discard a currently active exception. In cases where discarding the active exception is expected and desired (for example, because it has already been saved locally with [`PyErr_Fetch()`](../c-api/exceptions.xhtml#c.PyErr_Fetch "PyErr_Fetch") or is being deliberately replaced with a different exception), an explicit [`PyErr_Clear()`](../c-api/exceptions.xhtml#c.PyErr_Clear "PyErr_Clear") call will be needed to avoid triggering the assertion when invoking these operations (directly or indirectly) and running against a version of Python that is compiled with assertions enabled.
- [`PyErr_SetImportError()`](../c-api/exceptions.xhtml#c.PyErr_SetImportError "PyErr_SetImportError") now sets [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError") when its **msg**argument is not set. Previously only `NULL` was returned with no exception set.
- The result of the [`PyOS_ReadlineFunctionPointer`](../c-api/veryhigh.xhtml#c.PyOS_ReadlineFunctionPointer "PyOS_ReadlineFunctionPointer") callback must now be a string allocated by [`PyMem_RawMalloc()`](../c-api/memory.xhtml#c.PyMem_RawMalloc "PyMem_RawMalloc") or [`PyMem_RawRealloc()`](../c-api/memory.xhtml#c.PyMem_RawRealloc "PyMem_RawRealloc"), or *NULL* if an error occurred, instead of a string allocated by [`PyMem_Malloc()`](../c-api/memory.xhtml#c.PyMem_Malloc "PyMem_Malloc") or [`PyMem_Realloc()`](../c-api/memory.xhtml#c.PyMem_Realloc "PyMem_Realloc")([bpo-16742](https://bugs.python.org/issue16742) \[https://bugs.python.org/issue16742\])
- [`PyThread_set_key_value()`](../c-api/init.xhtml#c.PyThread_set_key_value "PyThread_set_key_value") now always set the value. In Python 3.3, the function did nothing if the key already exists (if the current value is a non-NULL pointer).
- The `f_tstate` (thread state) field of the [`PyFrameObject`](../c-api/veryhigh.xhtml#c.PyFrameObject "PyFrameObject")structure has been removed to fix a bug: see [bpo-14432](https://bugs.python.org/issue14432) \[https://bugs.python.org/issue14432\] for the rationale.
## Changed in 3.4.3
### PEP 476: Enabling certificate verification by default for stdlib http clients
[`http.client`](../library/http.client.xhtml#module-http.client "http.client: HTTP and HTTPS protocol client (requires sockets).") and modules which use it, such as [`urllib.request`](../library/urllib.request.xhtml#module-urllib.request "urllib.request: Extensible library for opening URLs.") and [`xmlrpc.client`](../library/xmlrpc.client.xhtml#module-xmlrpc.client "xmlrpc.client: XML-RPC client access."), will now verify that the server presents a certificate which is signed by a CA in the platform trust store and whose hostname matches the hostname being requested by default, significantly improving security for many applications.
For applications which require the old previous behavior, they can pass an alternate context:
```
import urllib.request
import ssl
# This disables all verification
context = ssl._create_unverified_context()
# This allows using a specific certificate for the host, which doesn't need
# to be in the trust store
context = ssl.create_default_context(cafile="/path/to/file.crt")
urllib.request.urlopen("https://invalid-cert", context=context)
```
### 導航
- [索引](../genindex.xhtml "總目錄")
- [模塊](../py-modindex.xhtml "Python 模塊索引") |
- [下一頁](3.3.xhtml "What's New In Python 3.3") |
- [上一頁](3.5.xhtml "Python 3.5 有什么新變化") |
- 
- [Python](https://www.python.org/) ?
- zh\_CN 3.7.3 [文檔](../index.xhtml) ?
- [Python 有什么新變化?](index.xhtml) ?
- $('.inline-search').show(0); |
? [版權所有](../copyright.xhtml) 2001-2019, Python Software Foundation.
Python 軟件基金會是一個非盈利組織。 [請捐助。](https://www.python.org/psf/donations/)
最后更新于 5月 21, 2019. [發現了問題](../bugs.xhtml)?
使用[Sphinx](http://sphinx.pocoo.org/)1.8.4 創建。
- Python文檔內容
- Python 有什么新變化?
- Python 3.7 有什么新變化
- 摘要 - 發布重點
- 新的特性
- 其他語言特性修改
- 新增模塊
- 改進的模塊
- C API 的改變
- 構建的改變
- 性能優化
- 其他 CPython 實現的改變
- 已棄用的 Python 行為
- 已棄用的 Python 模塊、函數和方法
- 已棄用的 C API 函數和類型
- 平臺支持的移除
- API 與特性的移除
- 移除的模塊
- Windows 專屬的改變
- 移植到 Python 3.7
- Python 3.7.1 中的重要變化
- Python 3.7.2 中的重要變化
- Python 3.6 有什么新變化A
- 摘要 - 發布重點
- 新的特性
- 其他語言特性修改
- 新增模塊
- 改進的模塊
- 性能優化
- Build and C API Changes
- 其他改進
- 棄用
- 移除
- 移植到Python 3.6
- Python 3.6.2 中的重要變化
- Python 3.6.4 中的重要變化
- Python 3.6.5 中的重要變化
- Python 3.6.7 中的重要變化
- Python 3.5 有什么新變化
- 摘要 - 發布重點
- 新的特性
- 其他語言特性修改
- 新增模塊
- 改進的模塊
- Other module-level changes
- 性能優化
- Build and C API Changes
- 棄用
- 移除
- Porting to Python 3.5
- Notable changes in Python 3.5.4
- What's New In Python 3.4
- 摘要 - 發布重點
- 新的特性
- 新增模塊
- 改進的模塊
- CPython Implementation Changes
- 棄用
- 移除
- Porting to Python 3.4
- Changed in 3.4.3
- What's New In Python 3.3
- 摘要 - 發布重點
- PEP 405: Virtual Environments
- PEP 420: Implicit Namespace Packages
- PEP 3118: New memoryview implementation and buffer protocol documentation
- PEP 393: Flexible String Representation
- PEP 397: Python Launcher for Windows
- PEP 3151: Reworking the OS and IO exception hierarchy
- PEP 380: Syntax for Delegating to a Subgenerator
- PEP 409: Suppressing exception context
- PEP 414: Explicit Unicode literals
- PEP 3155: Qualified name for classes and functions
- PEP 412: Key-Sharing Dictionary
- PEP 362: Function Signature Object
- PEP 421: Adding sys.implementation
- Using importlib as the Implementation of Import
- 其他語言特性修改
- A Finer-Grained Import Lock
- Builtin functions and types
- 新增模塊
- 改進的模塊
- 性能優化
- Build and C API Changes
- 棄用
- Porting to Python 3.3
- What's New In Python 3.2
- PEP 384: Defining a Stable ABI
- PEP 389: Argparse Command Line Parsing Module
- PEP 391: Dictionary Based Configuration for Logging
- PEP 3148: The concurrent.futures module
- PEP 3147: PYC Repository Directories
- PEP 3149: ABI Version Tagged .so Files
- PEP 3333: Python Web Server Gateway Interface v1.0.1
- 其他語言特性修改
- New, Improved, and Deprecated Modules
- 多線程
- 性能優化
- Unicode
- Codecs
- 文檔
- IDLE
- Code Repository
- Build and C API Changes
- Porting to Python 3.2
- What's New In Python 3.1
- PEP 372: Ordered Dictionaries
- PEP 378: Format Specifier for Thousands Separator
- 其他語言特性修改
- New, Improved, and Deprecated Modules
- 性能優化
- IDLE
- Build and C API Changes
- Porting to Python 3.1
- What's New In Python 3.0
- Common Stumbling Blocks
- Overview Of Syntax Changes
- Changes Already Present In Python 2.6
- Library Changes
- PEP 3101: A New Approach To String Formatting
- Changes To Exceptions
- Miscellaneous Other Changes
- Build and C API Changes
- 性能
- Porting To Python 3.0
- What's New in Python 2.7
- The Future for Python 2.x
- Changes to the Handling of Deprecation Warnings
- Python 3.1 Features
- PEP 372: Adding an Ordered Dictionary to collections
- PEP 378: Format Specifier for Thousands Separator
- PEP 389: The argparse Module for Parsing Command Lines
- PEP 391: Dictionary-Based Configuration For Logging
- PEP 3106: Dictionary Views
- PEP 3137: The memoryview Object
- 其他語言特性修改
- New and Improved Modules
- Build and C API Changes
- Other Changes and Fixes
- Porting to Python 2.7
- New Features Added to Python 2.7 Maintenance Releases
- Acknowledgements
- Python 2.6 有什么新變化
- Python 3.0
- Changes to the Development Process
- PEP 343: The 'with' statement
- PEP 366: Explicit Relative Imports From a Main Module
- PEP 370: Per-user site-packages Directory
- PEP 371: The multiprocessing Package
- PEP 3101: Advanced String Formatting
- PEP 3105: print As a Function
- PEP 3110: Exception-Handling Changes
- PEP 3112: Byte Literals
- PEP 3116: New I/O Library
- PEP 3118: Revised Buffer Protocol
- PEP 3119: Abstract Base Classes
- PEP 3127: Integer Literal Support and Syntax
- PEP 3129: Class Decorators
- PEP 3141: A Type Hierarchy for Numbers
- 其他語言特性修改
- New and Improved Modules
- Deprecations and Removals
- Build and C API Changes
- Porting to Python 2.6
- Acknowledgements
- What's New in Python 2.5
- PEP 308: Conditional Expressions
- PEP 309: Partial Function Application
- PEP 314: Metadata for Python Software Packages v1.1
- PEP 328: Absolute and Relative Imports
- PEP 338: Executing Modules as Scripts
- PEP 341: Unified try/except/finally
- PEP 342: New Generator Features
- PEP 343: The 'with' statement
- PEP 352: Exceptions as New-Style Classes
- PEP 353: Using ssize_t as the index type
- PEP 357: The 'index' method
- 其他語言特性修改
- New, Improved, and Removed Modules
- Build and C API Changes
- Porting to Python 2.5
- Acknowledgements
- What's New in Python 2.4
- PEP 218: Built-In Set Objects
- PEP 237: Unifying Long Integers and Integers
- PEP 289: Generator Expressions
- PEP 292: Simpler String Substitutions
- PEP 318: Decorators for Functions and Methods
- PEP 322: Reverse Iteration
- PEP 324: New subprocess Module
- PEP 327: Decimal Data Type
- PEP 328: Multi-line Imports
- PEP 331: Locale-Independent Float/String Conversions
- 其他語言特性修改
- New, Improved, and Deprecated Modules
- Build and C API Changes
- Porting to Python 2.4
- Acknowledgements
- What's New in Python 2.3
- PEP 218: A Standard Set Datatype
- PEP 255: Simple Generators
- PEP 263: Source Code Encodings
- PEP 273: Importing Modules from ZIP Archives
- PEP 277: Unicode file name support for Windows NT
- PEP 278: Universal Newline Support
- PEP 279: enumerate()
- PEP 282: The logging Package
- PEP 285: A Boolean Type
- PEP 293: Codec Error Handling Callbacks
- PEP 301: Package Index and Metadata for Distutils
- PEP 302: New Import Hooks
- PEP 305: Comma-separated Files
- PEP 307: Pickle Enhancements
- Extended Slices
- 其他語言特性修改
- New, Improved, and Deprecated Modules
- Pymalloc: A Specialized Object Allocator
- Build and C API Changes
- Other Changes and Fixes
- Porting to Python 2.3
- Acknowledgements
- What's New in Python 2.2
- 概述
- PEPs 252 and 253: Type and Class Changes
- PEP 234: Iterators
- PEP 255: Simple Generators
- PEP 237: Unifying Long Integers and Integers
- PEP 238: Changing the Division Operator
- Unicode Changes
- PEP 227: Nested Scopes
- New and Improved Modules
- Interpreter Changes and Fixes
- Other Changes and Fixes
- Acknowledgements
- What's New in Python 2.1
- 概述
- PEP 227: Nested Scopes
- PEP 236: future Directives
- PEP 207: Rich Comparisons
- PEP 230: Warning Framework
- PEP 229: New Build System
- PEP 205: Weak References
- PEP 232: Function Attributes
- PEP 235: Importing Modules on Case-Insensitive Platforms
- PEP 217: Interactive Display Hook
- PEP 208: New Coercion Model
- PEP 241: Metadata in Python Packages
- New and Improved Modules
- Other Changes and Fixes
- Acknowledgements
- What's New in Python 2.0
- 概述
- What About Python 1.6?
- New Development Process
- Unicode
- 列表推導式
- Augmented Assignment
- 字符串的方法
- Garbage Collection of Cycles
- Other Core Changes
- Porting to 2.0
- Extending/Embedding Changes
- Distutils: Making Modules Easy to Install
- XML Modules
- Module changes
- New modules
- IDLE Improvements
- Deleted and Deprecated Modules
- Acknowledgements
- 更新日志
- Python 下一版
- Python 3.7.3 最終版
- Python 3.7.3 發布候選版 1
- Python 3.7.2 最終版
- Python 3.7.2 發布候選版 1
- Python 3.7.1 最終版
- Python 3.7.1 RC 2版本
- Python 3.7.1 發布候選版 1
- Python 3.7.0 正式版
- Python 3.7.0 release candidate 1
- Python 3.7.0 beta 5
- Python 3.7.0 beta 4
- Python 3.7.0 beta 3
- Python 3.7.0 beta 2
- Python 3.7.0 beta 1
- Python 3.7.0 alpha 4
- Python 3.7.0 alpha 3
- Python 3.7.0 alpha 2
- Python 3.7.0 alpha 1
- Python 3.6.6 final
- Python 3.6.6 RC 1
- Python 3.6.5 final
- Python 3.6.5 release candidate 1
- Python 3.6.4 final
- Python 3.6.4 release candidate 1
- Python 3.6.3 final
- Python 3.6.3 release candidate 1
- Python 3.6.2 final
- Python 3.6.2 release candidate 2
- Python 3.6.2 release candidate 1
- Python 3.6.1 final
- Python 3.6.1 release candidate 1
- Python 3.6.0 final
- Python 3.6.0 release candidate 2
- Python 3.6.0 release candidate 1
- Python 3.6.0 beta 4
- Python 3.6.0 beta 3
- Python 3.6.0 beta 2
- Python 3.6.0 beta 1
- Python 3.6.0 alpha 4
- Python 3.6.0 alpha 3
- Python 3.6.0 alpha 2
- Python 3.6.0 alpha 1
- Python 3.5.5 final
- Python 3.5.5 release candidate 1
- Python 3.5.4 final
- Python 3.5.4 release candidate 1
- Python 3.5.3 final
- Python 3.5.3 release candidate 1
- Python 3.5.2 final
- Python 3.5.2 release candidate 1
- Python 3.5.1 final
- Python 3.5.1 release candidate 1
- Python 3.5.0 final
- Python 3.5.0 release candidate 4
- Python 3.5.0 release candidate 3
- Python 3.5.0 release candidate 2
- Python 3.5.0 release candidate 1
- Python 3.5.0 beta 4
- Python 3.5.0 beta 3
- Python 3.5.0 beta 2
- Python 3.5.0 beta 1
- Python 3.5.0 alpha 4
- Python 3.5.0 alpha 3
- Python 3.5.0 alpha 2
- Python 3.5.0 alpha 1
- Python 教程
- 課前甜點
- 使用 Python 解釋器
- 調用解釋器
- 解釋器的運行環境
- Python 的非正式介紹
- Python 作為計算器使用
- 走向編程的第一步
- 其他流程控制工具
- if 語句
- for 語句
- range() 函數
- break 和 continue 語句,以及循環中的 else 子句
- pass 語句
- 定義函數
- 函數定義的更多形式
- 小插曲:編碼風格
- 數據結構
- 列表的更多特性
- del 語句
- 元組和序列
- 集合
- 字典
- 循環的技巧
- 深入條件控制
- 序列和其它類型的比較
- 模塊
- 有關模塊的更多信息
- 標準模塊
- dir() 函數
- 包
- 輸入輸出
- 更漂亮的輸出格式
- 讀寫文件
- 錯誤和異常
- 語法錯誤
- 異常
- 處理異常
- 拋出異常
- 用戶自定義異常
- 定義清理操作
- 預定義的清理操作
- 類
- 名稱和對象
- Python 作用域和命名空間
- 初探類
- 補充說明
- 繼承
- 私有變量
- 雜項說明
- 迭代器
- 生成器
- 生成器表達式
- 標準庫簡介
- 操作系統接口
- 文件通配符
- 命令行參數
- 錯誤輸出重定向和程序終止
- 字符串模式匹配
- 數學
- 互聯網訪問
- 日期和時間
- 數據壓縮
- 性能測量
- 質量控制
- 自帶電池
- 標準庫簡介 —— 第二部分
- 格式化輸出
- 模板
- 使用二進制數據記錄格式
- 多線程
- 日志
- 弱引用
- 用于操作列表的工具
- 十進制浮點運算
- 虛擬環境和包
- 概述
- 創建虛擬環境
- 使用pip管理包
- 接下來?
- 交互式編輯和編輯歷史
- Tab 補全和編輯歷史
- 默認交互式解釋器的替代品
- 浮點算術:爭議和限制
- 表示性錯誤
- 附錄
- 交互模式
- 安裝和使用 Python
- 命令行與環境
- 命令行
- 環境變量
- 在Unix平臺中使用Python
- 獲取最新版本的Python
- 構建Python
- 與Python相關的路徑和文件
- 雜項
- 編輯器和集成開發環境
- 在Windows上使用 Python
- 完整安裝程序
- Microsoft Store包
- nuget.org 安裝包
- 可嵌入的包
- 替代捆綁包
- 配置Python
- 適用于Windows的Python啟動器
- 查找模塊
- 附加模塊
- 在Windows上編譯Python
- 其他平臺
- 在蘋果系統上使用 Python
- 獲取和安裝 MacPython
- IDE
- 安裝額外的 Python 包
- Mac 上的圖形界面編程
- 在 Mac 上分發 Python 應用程序
- 其他資源
- Python 語言參考
- 概述
- 其他實現
- 標注
- 詞法分析
- 行結構
- 其他形符
- 標識符和關鍵字
- 字面值
- 運算符
- 分隔符
- 數據模型
- 對象、值與類型
- 標準類型層級結構
- 特殊方法名稱
- 協程
- 執行模型
- 程序的結構
- 命名與綁定
- 異常
- 導入系統
- importlib
- 包
- 搜索
- 加載
- 基于路徑的查找器
- 替換標準導入系統
- Package Relative Imports
- 有關 main 的特殊事項
- 開放問題項
- 參考文獻
- 表達式
- 算術轉換
- 原子
- 原型
- await 表達式
- 冪運算符
- 一元算術和位運算
- 二元算術運算符
- 移位運算
- 二元位運算
- 比較運算
- 布爾運算
- 條件表達式
- lambda 表達式
- 表達式列表
- 求值順序
- 運算符優先級
- 簡單語句
- 表達式語句
- 賦值語句
- assert 語句
- pass 語句
- del 語句
- return 語句
- yield 語句
- raise 語句
- break 語句
- continue 語句
- import 語句
- global 語句
- nonlocal 語句
- 復合語句
- if 語句
- while 語句
- for 語句
- try 語句
- with 語句
- 函數定義
- 類定義
- 協程
- 最高層級組件
- 完整的 Python 程序
- 文件輸入
- 交互式輸入
- 表達式輸入
- 完整的語法規范
- Python 標準庫
- 概述
- 可用性注釋
- 內置函數
- 內置常量
- 由 site 模塊添加的常量
- 內置類型
- 邏輯值檢測
- 布爾運算 — and, or, not
- 比較
- 數字類型 — int, float, complex
- 迭代器類型
- 序列類型 — list, tuple, range
- 文本序列類型 — str
- 二進制序列類型 — bytes, bytearray, memoryview
- 集合類型 — set, frozenset
- 映射類型 — dict
- 上下文管理器類型
- 其他內置類型
- 特殊屬性
- 內置異常
- 基類
- 具體異常
- 警告
- 異常層次結構
- 文本處理服務
- string — 常見的字符串操作
- re — 正則表達式操作
- 模塊 difflib 是一個計算差異的助手
- textwrap — Text wrapping and filling
- unicodedata — Unicode 數據庫
- stringprep — Internet String Preparation
- readline — GNU readline interface
- rlcompleter — GNU readline的完成函數
- 二進制數據服務
- struct — Interpret bytes as packed binary data
- codecs — Codec registry and base classes
- 數據類型
- datetime — 基礎日期/時間數據類型
- calendar — General calendar-related functions
- collections — 容器數據類型
- collections.abc — 容器的抽象基類
- heapq — 堆隊列算法
- bisect — Array bisection algorithm
- array — Efficient arrays of numeric values
- weakref — 弱引用
- types — Dynamic type creation and names for built-in types
- copy — 淺層 (shallow) 和深層 (deep) 復制操作
- pprint — 數據美化輸出
- reprlib — Alternate repr() implementation
- enum — Support for enumerations
- 數字和數學模塊
- numbers — 數字的抽象基類
- math — 數學函數
- cmath — Mathematical functions for complex numbers
- decimal — 十進制定點和浮點運算
- fractions — 分數
- random — 生成偽隨機數
- statistics — Mathematical statistics functions
- 函數式編程模塊
- itertools — 為高效循環而創建迭代器的函數
- functools — 高階函數和可調用對象上的操作
- operator — 標準運算符替代函數
- 文件和目錄訪問
- pathlib — 面向對象的文件系統路徑
- os.path — 常見路徑操作
- fileinput — Iterate over lines from multiple input streams
- stat — Interpreting stat() results
- filecmp — File and Directory Comparisons
- tempfile — Generate temporary files and directories
- glob — Unix style pathname pattern expansion
- fnmatch — Unix filename pattern matching
- linecache — Random access to text lines
- shutil — High-level file operations
- macpath — Mac OS 9 路徑操作函數
- 數據持久化
- pickle —— Python 對象序列化
- copyreg — Register pickle support functions
- shelve — Python object persistence
- marshal — Internal Python object serialization
- dbm — Interfaces to Unix “databases”
- sqlite3 — SQLite 數據庫 DB-API 2.0 接口模塊
- 數據壓縮和存檔
- zlib — 與 gzip 兼容的壓縮
- gzip — 對 gzip 格式的支持
- bz2 — 對 bzip2 壓縮算法的支持
- lzma — 用 LZMA 算法壓縮
- zipfile — 在 ZIP 歸檔中工作
- tarfile — Read and write tar archive files
- 文件格式
- csv — CSV 文件讀寫
- configparser — Configuration file parser
- netrc — netrc file processing
- xdrlib — Encode and decode XDR data
- plistlib — Generate and parse Mac OS X .plist files
- 加密服務
- hashlib — 安全哈希與消息摘要
- hmac — 基于密鑰的消息驗證
- secrets — Generate secure random numbers for managing secrets
- 通用操作系統服務
- os — 操作系統接口模塊
- io — 處理流的核心工具
- time — 時間的訪問和轉換
- argparse — 命令行選項、參數和子命令解析器
- getopt — C-style parser for command line options
- 模塊 logging — Python 的日志記錄工具
- logging.config — 日志記錄配置
- logging.handlers — Logging handlers
- getpass — 便攜式密碼輸入工具
- curses — 終端字符單元顯示的處理
- curses.textpad — Text input widget for curses programs
- curses.ascii — Utilities for ASCII characters
- curses.panel — A panel stack extension for curses
- platform — Access to underlying platform's identifying data
- errno — Standard errno system symbols
- ctypes — Python 的外部函數庫
- 并發執行
- threading — 基于線程的并行
- multiprocessing — 基于進程的并行
- concurrent 包
- concurrent.futures — 啟動并行任務
- subprocess — 子進程管理
- sched — 事件調度器
- queue — 一個同步的隊列類
- _thread — 底層多線程 API
- _dummy_thread — _thread 的替代模塊
- dummy_threading — 可直接替代 threading 模塊。
- contextvars — Context Variables
- Context Variables
- Manual Context Management
- asyncio support
- 網絡和進程間通信
- asyncio — 異步 I/O
- socket — 底層網絡接口
- ssl — TLS/SSL wrapper for socket objects
- select — Waiting for I/O completion
- selectors — 高級 I/O 復用庫
- asyncore — 異步socket處理器
- asynchat — 異步 socket 指令/響應 處理器
- signal — Set handlers for asynchronous events
- mmap — Memory-mapped file support
- 互聯網數據處理
- email — 電子郵件與 MIME 處理包
- json — JSON 編碼和解碼器
- mailcap — Mailcap file handling
- mailbox — Manipulate mailboxes in various formats
- mimetypes — Map filenames to MIME types
- base64 — Base16, Base32, Base64, Base85 數據編碼
- binhex — 對binhex4文件進行編碼和解碼
- binascii — 二進制和 ASCII 碼互轉
- quopri — Encode and decode MIME quoted-printable data
- uu — Encode and decode uuencode files
- 結構化標記處理工具
- html — 超文本標記語言支持
- html.parser — 簡單的 HTML 和 XHTML 解析器
- html.entities — HTML 一般實體的定義
- XML處理模塊
- xml.etree.ElementTree — The ElementTree XML API
- xml.dom — The Document Object Model API
- xml.dom.minidom — Minimal DOM implementation
- xml.dom.pulldom — Support for building partial DOM trees
- xml.sax — Support for SAX2 parsers
- xml.sax.handler — Base classes for SAX handlers
- xml.sax.saxutils — SAX Utilities
- xml.sax.xmlreader — Interface for XML parsers
- xml.parsers.expat — Fast XML parsing using Expat
- 互聯網協議和支持
- webbrowser — 方便的Web瀏覽器控制器
- cgi — Common Gateway Interface support
- cgitb — Traceback manager for CGI scripts
- wsgiref — WSGI Utilities and Reference Implementation
- urllib — URL 處理模塊
- urllib.request — 用于打開 URL 的可擴展庫
- urllib.response — Response classes used by urllib
- urllib.parse — Parse URLs into components
- urllib.error — Exception classes raised by urllib.request
- urllib.robotparser — Parser for robots.txt
- http — HTTP 模塊
- http.client — HTTP協議客戶端
- ftplib — FTP protocol client
- poplib — POP3 protocol client
- imaplib — IMAP4 protocol client
- nntplib — NNTP protocol client
- smtplib —SMTP協議客戶端
- smtpd — SMTP Server
- telnetlib — Telnet client
- uuid — UUID objects according to RFC 4122
- socketserver — A framework for network servers
- http.server — HTTP 服務器
- http.cookies — HTTP state management
- http.cookiejar — Cookie handling for HTTP clients
- xmlrpc — XMLRPC 服務端與客戶端模塊
- xmlrpc.client — XML-RPC client access
- xmlrpc.server — Basic XML-RPC servers
- ipaddress — IPv4/IPv6 manipulation library
- 多媒體服務
- audioop — Manipulate raw audio data
- aifc — Read and write AIFF and AIFC files
- sunau — 讀寫 Sun AU 文件
- wave — 讀寫WAV格式文件
- chunk — Read IFF chunked data
- colorsys — Conversions between color systems
- imghdr — 推測圖像類型
- sndhdr — 推測聲音文件的類型
- ossaudiodev — Access to OSS-compatible audio devices
- 國際化
- gettext — 多語種國際化服務
- locale — 國際化服務
- 程序框架
- turtle — 海龜繪圖
- cmd — 支持面向行的命令解釋器
- shlex — Simple lexical analysis
- Tk圖形用戶界面(GUI)
- tkinter — Tcl/Tk的Python接口
- tkinter.ttk — Tk themed widgets
- tkinter.tix — Extension widgets for Tk
- tkinter.scrolledtext — 滾動文字控件
- IDLE
- 其他圖形用戶界面(GUI)包
- 開發工具
- typing — 類型標注支持
- pydoc — Documentation generator and online help system
- doctest — Test interactive Python examples
- unittest — 單元測試框架
- unittest.mock — mock object library
- unittest.mock 上手指南
- 2to3 - 自動將 Python 2 代碼轉為 Python 3 代碼
- test — Regression tests package for Python
- test.support — Utilities for the Python test suite
- test.support.script_helper — Utilities for the Python execution tests
- 調試和分析
- bdb — Debugger framework
- faulthandler — Dump the Python traceback
- pdb — The Python Debugger
- The Python Profilers
- timeit — 測量小代碼片段的執行時間
- trace — Trace or track Python statement execution
- tracemalloc — Trace memory allocations
- 軟件打包和分發
- distutils — 構建和安裝 Python 模塊
- ensurepip — Bootstrapping the pip installer
- venv — 創建虛擬環境
- zipapp — Manage executable Python zip archives
- Python運行時服務
- sys — 系統相關的參數和函數
- sysconfig — Provide access to Python's configuration information
- builtins — 內建對象
- main — 頂層腳本環境
- warnings — Warning control
- dataclasses — 數據類
- contextlib — Utilities for with-statement contexts
- abc — 抽象基類
- atexit — 退出處理器
- traceback — Print or retrieve a stack traceback
- future — Future 語句定義
- gc — 垃圾回收器接口
- inspect — 檢查對象
- site — Site-specific configuration hook
- 自定義 Python 解釋器
- code — Interpreter base classes
- codeop — Compile Python code
- 導入模塊
- zipimport — Import modules from Zip archives
- pkgutil — Package extension utility
- modulefinder — 查找腳本使用的模塊
- runpy — Locating and executing Python modules
- importlib — The implementation of import
- Python 語言服務
- parser — Access Python parse trees
- ast — 抽象語法樹
- symtable — Access to the compiler's symbol tables
- symbol — 與 Python 解析樹一起使用的常量
- token — 與Python解析樹一起使用的常量
- keyword — 檢驗Python關鍵字
- tokenize — Tokenizer for Python source
- tabnanny — 模糊縮進檢測
- pyclbr — Python class browser support
- py_compile — Compile Python source files
- compileall — Byte-compile Python libraries
- dis — Python 字節碼反匯編器
- pickletools — Tools for pickle developers
- 雜項服務
- formatter — Generic output formatting
- Windows系統相關模塊
- msilib — Read and write Microsoft Installer files
- msvcrt — Useful routines from the MS VC++ runtime
- winreg — Windows 注冊表訪問
- winsound — Sound-playing interface for Windows
- Unix 專有服務
- posix — The most common POSIX system calls
- pwd — 用戶密碼數據庫
- spwd — The shadow password database
- grp — The group database
- crypt — Function to check Unix passwords
- termios — POSIX style tty control
- tty — 終端控制功能
- pty — Pseudo-terminal utilities
- fcntl — The fcntl and ioctl system calls
- pipes — Interface to shell pipelines
- resource — Resource usage information
- nis — Interface to Sun's NIS (Yellow Pages)
- Unix syslog 庫例程
- 被取代的模塊
- optparse — Parser for command line options
- imp — Access the import internals
- 未創建文檔的模塊
- 平臺特定模塊
- 擴展和嵌入 Python 解釋器
- 推薦的第三方工具
- 不使用第三方工具創建擴展
- 使用 C 或 C++ 擴展 Python
- 自定義擴展類型:教程
- 定義擴展類型:已分類主題
- 構建C/C++擴展
- 在Windows平臺編譯C和C++擴展
- 在更大的應用程序中嵌入 CPython 運行時
- Embedding Python in Another Application
- Python/C API 參考手冊
- 概述
- 代碼標準
- 包含文件
- 有用的宏
- 對象、類型和引用計數
- 異常
- 嵌入Python
- 調試構建
- 穩定的應用程序二進制接口
- The Very High Level Layer
- Reference Counting
- 異常處理
- Printing and clearing
- 拋出異常
- Issuing warnings
- Querying the error indicator
- Signal Handling
- Exception Classes
- Exception Objects
- Unicode Exception Objects
- Recursion Control
- 標準異常
- 標準警告類別
- 工具
- 操作系統實用程序
- 系統功能
- 過程控制
- 導入模塊
- Data marshalling support
- 語句解釋及變量編譯
- 字符串轉換與格式化
- 反射
- 編解碼器注冊與支持功能
- 抽象對象層
- Object Protocol
- 數字協議
- Sequence Protocol
- Mapping Protocol
- 迭代器協議
- 緩沖協議
- Old Buffer Protocol
- 具體的對象層
- 基本對象
- 數值對象
- 序列對象
- 容器對象
- 函數對象
- 其他對象
- Initialization, Finalization, and Threads
- 在Python初始化之前
- 全局配置變量
- Initializing and finalizing the interpreter
- Process-wide parameters
- Thread State and the Global Interpreter Lock
- Sub-interpreter support
- Asynchronous Notifications
- Profiling and Tracing
- Advanced Debugger Support
- Thread Local Storage Support
- 內存管理
- 概述
- 原始內存接口
- Memory Interface
- 對象分配器
- 默認內存分配器
- Customize Memory Allocators
- The pymalloc allocator
- tracemalloc C API
- 示例
- 對象實現支持
- 在堆中分配對象
- Common Object Structures
- Type 對象
- Number Object Structures
- Mapping Object Structures
- Sequence Object Structures
- Buffer Object Structures
- Async Object Structures
- 使對象類型支持循環垃圾回收
- API 和 ABI 版本管理
- 分發 Python 模塊
- 關鍵術語
- 開源許可與協作
- 安裝工具
- 閱讀指南
- 我該如何...?
- ...為我的項目選擇一個名字?
- ...創建和分發二進制擴展?
- 安裝 Python 模塊
- 關鍵術語
- 基本使用
- 我應如何 ...?
- ... 在 Python 3.4 之前的 Python 版本中安裝 pip ?
- ... 只為當前用戶安裝軟件包?
- ... 安裝科學計算類 Python 軟件包?
- ... 使用并行安裝的多個 Python 版本?
- 常見的安裝問題
- 在 Linux 的系統 Python 版本上安裝
- 未安裝 pip
- 安裝二進制編譯擴展
- Python 常用指引
- 將 Python 2 代碼遷移到 Python 3
- 簡要說明
- 詳情
- 將擴展模塊移植到 Python 3
- 條件編譯
- 對象API的更改
- 模塊初始化和狀態
- CObject 替換為 Capsule
- 其他選項
- Curses Programming with Python
- What is curses?
- Starting and ending a curses application
- Windows and Pads
- Displaying Text
- User Input
- For More Information
- 實現描述器
- 摘要
- 定義和簡介
- 描述器協議
- 發起調用描述符
- 描述符示例
- Properties
- 函數和方法
- Static Methods and Class Methods
- 函數式編程指引
- 概述
- 迭代器
- 生成器表達式和列表推導式
- 生成器
- 內置函數
- itertools 模塊
- The functools module
- Small functions and the lambda expression
- Revision History and Acknowledgements
- 引用文獻
- 日志 HOWTO
- 日志基礎教程
- 進階日志教程
- 日志級別
- 有用的處理程序
- 記錄日志中引發的異常
- 使用任意對象作為消息
- 優化
- 日志操作手冊
- 在多個模塊中使用日志
- 在多線程中使用日志
- 使用多個日志處理器和多種格式化
- 在多個地方記錄日志
- 日志服務器配置示例
- 處理日志處理器的阻塞
- Sending and receiving logging events across a network
- Adding contextual information to your logging output
- Logging to a single file from multiple processes
- Using file rotation
- Use of alternative formatting styles
- Customizing LogRecord
- Subclassing QueueHandler - a ZeroMQ example
- Subclassing QueueListener - a ZeroMQ example
- An example dictionary-based configuration
- Using a rotator and namer to customize log rotation processing
- A more elaborate multiprocessing example
- Inserting a BOM into messages sent to a SysLogHandler
- Implementing structured logging
- Customizing handlers with dictConfig()
- Using particular formatting styles throughout your application
- Configuring filters with dictConfig()
- Customized exception formatting
- Speaking logging messages
- Buffering logging messages and outputting them conditionally
- Formatting times using UTC (GMT) via configuration
- Using a context manager for selective logging
- 正則表達式HOWTO
- 概述
- 簡單模式
- 使用正則表達式
- 更多模式能力
- 修改字符串
- 常見問題
- 反饋
- 套接字編程指南
- 套接字
- 創建套接字
- 使用一個套接字
- 斷開連接
- 非阻塞的套接字
- 排序指南
- 基本排序
- 關鍵函數
- Operator 模塊函數
- 升序和降序
- 排序穩定性和排序復雜度
- 使用裝飾-排序-去裝飾的舊方法
- 使用 cmp 參數的舊方法
- 其它
- Unicode 指南
- Unicode 概述
- Python's Unicode Support
- Reading and Writing Unicode Data
- Acknowledgements
- 如何使用urllib包獲取網絡資源
- 概述
- Fetching URLs
- 處理異常
- info and geturl
- Openers and Handlers
- Basic Authentication
- Proxies
- Sockets and Layers
- 腳注
- Argparse 教程
- 概念
- 基礎
- 位置參數介紹
- Introducing Optional arguments
- Combining Positional and Optional arguments
- Getting a little more advanced
- Conclusion
- ipaddress模塊介紹
- 創建 Address/Network/Interface 對象
- 審查 Address/Network/Interface 對象
- Network 作為 Address 列表
- 比較
- 將IP地址與其他模塊一起使用
- 實例創建失敗時獲取更多詳細信息
- Argument Clinic How-To
- The Goals Of Argument Clinic
- Basic Concepts And Usage
- Converting Your First Function
- Advanced Topics
- 使用 DTrace 和 SystemTap 檢測CPython
- Enabling the static markers
- Static DTrace probes
- Static SystemTap markers
- Available static markers
- SystemTap Tapsets
- 示例
- Python 常見問題
- Python常見問題
- 一般信息
- 現實世界中的 Python
- 編程常見問題
- 一般問題
- 核心語言
- 數字和字符串
- 性能
- 序列(元組/列表)
- 對象
- 模塊
- 設計和歷史常見問題
- 為什么Python使用縮進來分組語句?
- 為什么簡單的算術運算得到奇怪的結果?
- 為什么浮點計算不準確?
- 為什么Python字符串是不可變的?
- 為什么必須在方法定義和調用中顯式使用“self”?
- 為什么不能在表達式中賦值?
- 為什么Python對某些功能(例如list.index())使用方法來實現,而其他功能(例如len(List))使用函數實現?
- 為什么 join()是一個字符串方法而不是列表或元組方法?
- 異常有多快?
- 為什么Python中沒有switch或case語句?
- 難道不能在解釋器中模擬線程,而非得依賴特定于操作系統的線程實現嗎?
- 為什么lambda表達式不能包含語句?
- 可以將Python編譯為機器代碼,C或其他語言嗎?
- Python如何管理內存?
- 為什么CPython不使用更傳統的垃圾回收方案?
- CPython退出時為什么不釋放所有內存?
- 為什么有單獨的元組和列表數據類型?
- 列表是如何在CPython中實現的?
- 字典是如何在CPython中實現的?
- 為什么字典key必須是不可變的?
- 為什么 list.sort() 沒有返回排序列表?
- 如何在Python中指定和實施接口規范?
- 為什么沒有goto?
- 為什么原始字符串(r-strings)不能以反斜杠結尾?
- 為什么Python沒有屬性賦值的“with”語句?
- 為什么 if/while/def/class語句需要冒號?
- 為什么Python在列表和元組的末尾允許使用逗號?
- 代碼庫和插件 FAQ
- 通用的代碼庫問題
- 通用任務
- 線程相關
- 輸入輸出
- 網絡 / Internet 編程
- 數據庫
- 數學和數字
- 擴展/嵌入常見問題
- 可以使用C語言中創建自己的函數嗎?
- 可以使用C++語言中創建自己的函數嗎?
- C很難寫,有沒有其他選擇?
- 如何從C執行任意Python語句?
- 如何從C中評估任意Python表達式?
- 如何從Python對象中提取C的值?
- 如何使用Py_BuildValue()創建任意長度的元組?
- 如何從C調用對象的方法?
- 如何捕獲PyErr_Print()(或打印到stdout / stderr的任何內容)的輸出?
- 如何從C訪問用Python編寫的模塊?
- 如何從Python接口到C ++對象?
- 我使用Setup文件添加了一個模塊,為什么make失敗了?
- 如何調試擴展?
- 我想在Linux系統上編譯一個Python模塊,但是缺少一些文件。為什么?
- 如何區分“輸入不完整”和“輸入無效”?
- 如何找到未定義的g++符號__builtin_new或__pure_virtual?
- 能否創建一個對象類,其中部分方法在C中實現,而其他方法在Python中實現(例如通過繼承)?
- Python在Windows上的常見問題
- 我怎樣在Windows下運行一個Python程序?
- 我怎么讓 Python 腳本可執行?
- 為什么有時候 Python 程序會啟動緩慢?
- 我怎樣使用Python腳本制作可執行文件?
- *.pyd 文件和DLL文件相同嗎?
- 我怎樣將Python嵌入一個Windows程序?
- 如何讓編輯器不要在我的 Python 源代碼中插入 tab ?
- 如何在不阻塞的情況下檢查按鍵?
- 圖形用戶界面(GUI)常見問題
- 圖形界面常見問題
- Python 是否有平臺無關的圖形界面工具包?
- 有哪些Python的GUI工具是某個平臺專用的?
- 有關Tkinter的問題
- “為什么我的電腦上安裝了 Python ?”
- 什么是Python?
- 為什么我的電腦上安裝了 Python ?
- 我能刪除 Python 嗎?
- 術語對照表
- 文檔說明
- Python 文檔貢獻者
- 解決 Bug
- 文檔錯誤
- 使用 Python 的錯誤追蹤系統
- 開始為 Python 貢獻您的知識
- 版權
- 歷史和許可證
- 軟件歷史
- 訪問Python或以其他方式使用Python的條款和條件
- Python 3.7.3 的 PSF 許可協議
- Python 2.0 的 BeOpen.com 許可協議
- Python 1.6.1 的 CNRI 許可協議
- Python 0.9.0 至 1.2 的 CWI 許可協議
- 集成軟件的許可和認可
- Mersenne Twister
- 套接字
- Asynchronous socket services
- Cookie management
- Execution tracing
- UUencode and UUdecode functions
- XML Remote Procedure Calls
- test_epoll
- Select kqueue
- SipHash24
- strtod and dtoa
- OpenSSL
- expat
- libffi
- zlib
- cfuhash
- libmpdec