### 導航
- [索引](../genindex.xhtml "總目錄")
- [模塊](../py-modindex.xhtml "Python 模塊索引") |
- [下一頁](2.4.xhtml "What's New in Python 2.4") |
- [上一頁](2.6.xhtml "Python 2.6 有什么新變化") |
- 
- [Python](https://www.python.org/) ?
- zh\_CN 3.7.3 [文檔](../index.xhtml) ?
- [Python 有什么新變化?](index.xhtml) ?
- $('.inline-search').show(0); |
# What's New in Python 2.5
作者A.M. Kuchling
This article explains the new features in Python 2.5. The final release of Python 2.5 is scheduled for August 2006; [**PEP 356**](https://www.python.org/dev/peps/pep-0356) \[https://www.python.org/dev/peps/pep-0356\] describes the planned release schedule.
The changes in Python 2.5 are an interesting mix of language and library improvements. The library enhancements will be more important to Python's user community, I think, because several widely-useful packages were added. New modules include ElementTree for XML processing (`xml.etree`), the SQLite database module (`sqlite`), and the [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.")module for calling C functions.
The language changes are of middling significance. Some pleasant new features were added, but most of them aren't features that you'll use every day. Conditional expressions were finally added to the language using a novel syntax; see section [PEP 308: Conditional Expressions](#pep-308). The new '[`with`](../reference/compound_stmts.xhtml#with)' statement will make writing cleanup code easier (section [PEP 343: The 'with' statement](#pep-343)). Values can now be passed into generators (section [PEP 342: New Generator Features](#pep-342)). Imports are now visible as either absolute or relative (section [PEP 328: Absolute and Relative Imports](#pep-328)). Some corner cases of exception handling are handled better (section [PEP 341: Unified try/except/finally](#pep-341)). All these improvements are worthwhile, but they're improvements to one specific language feature or another; none of them are broad modifications to Python's semantics.
As well as the language and library additions, other improvements and bugfixes were made throughout the source tree. A search through the SVN change logs finds there were 353 patches applied and 458 bugs fixed between Python 2.4 and 2.5. (Both figures are likely to be underestimates.)
This article doesn't try to be a complete specification of the new features; instead changes are briefly introduced using helpful examples. For full details, you should always refer to the documentation for Python 2.5 at <https://docs.python.org>. If you want to understand the complete implementation and design rationale, refer to the PEP for a particular new feature.
Comments, suggestions, and error reports for this document are welcome; please e-mail them to the author or open a bug in the Python bug tracker.
## PEP 308: Conditional Expressions
For a long time, people have been requesting a way to write conditional expressions, which are expressions that return value A or value B depending on whether a Boolean value is true or false. A conditional expression lets you write a single assignment statement that has the same effect as the following:
```
if condition:
x = true_value
else:
x = false_value
```
There have been endless tedious discussions of syntax on both python-dev and comp.lang.python. A vote was even held that found the majority of voters wanted conditional expressions in some form, but there was no syntax that was preferred by a clear majority. Candidates included C's `cond ? true_v : false_v`,
```
if
cond then true_v else false_v
```
, and 16 other variations.
Guido van Rossum eventually chose a surprising syntax:
```
x = true_value if condition else false_value
```
Evaluation is still lazy as in existing Boolean expressions, so the order of evaluation jumps around a bit. The *condition* expression in the middle is evaluated first, and the *true\_value* expression is evaluated only if the condition was true. Similarly, the *false\_value* expression is only evaluated when the condition is false.
This syntax may seem strange and backwards; why does the condition go in the *middle* of the expression, and not in the front as in C's `c ? x : y`? The decision was checked by applying the new syntax to the modules in the standard library and seeing how the resulting code read. In many cases where a conditional expression is used, one value seems to be the 'common case' and one value is an 'exceptional case', used only on rarer occasions when the condition isn't met. The conditional syntax makes this pattern a bit more obvious:
```
contents = ((doc + '\n') if doc else '')
```
I read the above statement as meaning "here *contents* is usually assigned a value of `doc+'\n'`; sometimes *doc* is empty, in which special case an empty string is returned." I doubt I will use conditional expressions very often where there isn't a clear common and uncommon case.
There was some discussion of whether the language should require surrounding conditional expressions with parentheses. The decision was made to *not*require parentheses in the Python language's grammar, but as a matter of style I think you should always use them. Consider these two statements:
```
# First version -- no parens
level = 1 if logging else 0
# Second version -- with parens
level = (1 if logging else 0)
```
In the first version, I think a reader's eye might group the statement into 'level = 1', 'if logging', 'else 0', and think that the condition decides whether the assignment to *level* is performed. The second version reads better, in my opinion, because it makes it clear that the assignment is always performed and the choice is being made between two values.
Another reason for including the brackets: a few odd combinations of list comprehensions and lambdas could look like incorrect conditional expressions. See [**PEP 308**](https://www.python.org/dev/peps/pep-0308) \[https://www.python.org/dev/peps/pep-0308\] for some examples. If you put parentheses around your conditional expressions, you won't run into this case.
參見
[**PEP 308**](https://www.python.org/dev/peps/pep-0308) \[https://www.python.org/dev/peps/pep-0308\] - Conditional ExpressionsPEP written by Guido van Rossum and Raymond D. Hettinger; implemented by Thomas Wouters.
## PEP 309: Partial Function Application
The [`functools`](../library/functools.xhtml#module-functools "functools: Higher-order functions and operations on callable objects.") module is intended to contain tools for functional-style programming.
One useful tool in this module is the `partial()` function. For programs written in a functional style, you'll sometimes want to construct variants of existing functions that have some of the parameters filled in. Consider a Python function `f(a, b, c)`; you could create a new function `g(b, c)` that was equivalent to `f(1, b, c)`. This is called "partial function application".
`partial()` takes the arguments
```
(function, arg1, arg2, ... kwarg1=value1,
kwarg2=value2)
```
. The resulting object is callable, so you can just call it to invoke *function* with the filled-in arguments.
Here's a small but realistic example:
```
import functools
def log (message, subsystem):
"Write the contents of 'message' to the specified subsystem."
print '%s: %s' % (subsystem, message)
...
server_log = functools.partial(log, subsystem='server')
server_log('Unable to open socket')
```
Here's another example, from a program that uses PyGTK. Here a context-sensitive pop-up menu is being constructed dynamically. The callback provided for the menu option is a partially applied version of the `open_item()`method, where the first argument has been provided.
```
...
class Application:
def open_item(self, path):
...
def init (self):
open_func = functools.partial(self.open_item, item_path)
popup_menu.append( ("Open", open_func, 1) )
```
Another function in the [`functools`](../library/functools.xhtml#module-functools "functools: Higher-order functions and operations on callable objects.") module is the `update_wrapper(wrapper, wrapped)` function that helps you write well-behaved decorators. `update_wrapper()` copies the name, module, and docstring attribute to a wrapper function so that tracebacks inside the wrapped function are easier to understand. For example, you might write:
```
def my_decorator(f):
def wrapper(*args, **kwds):
print 'Calling decorated function'
return f(*args, **kwds)
functools.update_wrapper(wrapper, f)
return wrapper
```
`wraps()` is a decorator that can be used inside your own decorators to copy the wrapped function's information. An alternate version of the previous example would be:
```
def my_decorator(f):
@functools.wraps(f)
def wrapper(*args, **kwds):
print 'Calling decorated function'
return f(*args, **kwds)
return wrapper
```
參見
[**PEP 309**](https://www.python.org/dev/peps/pep-0309) \[https://www.python.org/dev/peps/pep-0309\] - Partial Function ApplicationPEP proposed and written by Peter Harris; implemented by Hye-Shik Chang and Nick Coghlan, with adaptations by Raymond Hettinger.
## PEP 314: Metadata for Python Software Packages v1.1
Some simple dependency support was added to Distutils. The `setup()`function now has `requires`, `provides`, and `obsoletes` keyword parameters. When you build a source distribution using the `sdist` command, the dependency information will be recorded in the `PKG-INFO` file.
Another new keyword parameter is `download_url`, which should be set to a URL for the package's source code. This means it's now possible to look up an entry in the package index, determine the dependencies for a package, and download the required packages.
```
VERSION = '1.0'
setup(name='PyPackage',
version=VERSION,
requires=['numarray', 'zlib (>=1.1.4)'],
obsoletes=['OldPackage']
download_url=('http://www.example.com/pypackage/dist/pkg-%s.tar.gz'
% VERSION),
)
```
Another new enhancement to the Python package index at <https://pypi.org> is storing source and binary archives for a package. The new **upload** Distutils command will upload a package to the repository.
Before a package can be uploaded, you must be able to build a distribution using the **sdist** Distutils command. Once that works, you can run
```
python
setup.py upload
```
to add your package to the PyPI archive. Optionally you can GPG-sign the package by supplying the `--sign` and `--identity`options.
Package uploading was implemented by Martin von L?wis and Richard Jones.
參見
[**PEP 314**](https://www.python.org/dev/peps/pep-0314) \[https://www.python.org/dev/peps/pep-0314\] - Metadata for Python Software Packages v1.1PEP proposed and written by A.M. Kuchling, Richard Jones, and Fred Drake; implemented by Richard Jones and Fred Drake.
## PEP 328: Absolute and Relative Imports
The simpler part of PEP 328 was implemented in Python 2.4: parentheses could now be used to enclose the names imported from a module using the
```
from ... import
...
```
statement, making it easier to import many different names.
The more complicated part has been implemented in Python 2.5: importing a module can be specified to use absolute or package-relative imports. The plan is to move toward making absolute imports the default in future versions of Python.
Let's say you have a package directory like this:
```
pkg/
pkg/__init__.py
pkg/main.py
pkg/string.py
```
This defines a package named `pkg` containing the `pkg.main` and `pkg.string` submodules.
Consider the code in the `main.py` module. What happens if it executes the statement `import string`? In Python 2.4 and earlier, it will first look in the package's directory to perform a relative import, finds `pkg/string.py`, imports the contents of that file as the `pkg.string` module, and that module is bound to the name `string` in the `pkg.main` module's namespace.
That's fine if `pkg.string` was what you wanted. But what if you wanted Python's standard [`string`](../library/string.xhtml#module-string "string: Common string operations.") module? There's no clean way to ignore `pkg.string` and look for the standard module; generally you had to look at the contents of `sys.modules`, which is slightly unclean. Holger Krekel's `py.std` package provides a tidier way to perform imports from the standard library, `import py; py.std.string.join()`, but that package isn't available on all Python installations.
Reading code which relies on relative imports is also less clear, because a reader may be confused about which module, [`string`](../library/string.xhtml#module-string "string: Common string operations.") or `pkg.string`, is intended to be used. Python users soon learned not to duplicate the names of standard library modules in the names of their packages' submodules, but you can't protect against having your submodule's name being used for a new module added in a future version of Python.
In Python 2.5, you can switch [`import`](../reference/simple_stmts.xhtml#import)'s behaviour to absolute imports using a `from __future__ import absolute_import` directive. This absolute-import behaviour will become the default in a future version (probably Python 2.7). Once absolute imports are the default, `import string` will always find the standard library's version. It's suggested that users should begin using absolute imports as much as possible, so it's preferable to begin writing `from pkg import string` in your code.
Relative imports are still possible by adding a leading period to the module name when using the `from ... import` form:
```
# Import names from pkg.string
from .string import name1, name2
# Import pkg.string
from . import string
```
This imports the [`string`](../library/string.xhtml#module-string "string: Common string operations.") module relative to the current package, so in `pkg.main` this will import *name1* and *name2* from `pkg.string`. Additional leading periods perform the relative import starting from the parent of the current package. For example, code in the `A.B.C` module can do:
```
from . import D # Imports A.B.D
from .. import E # Imports A.E
from ..F import G # Imports A.F.G
```
Leading periods cannot be used with the `import modname` form of the import statement, only the `from ... import` form.
參見
[**PEP 328**](https://www.python.org/dev/peps/pep-0328) \[https://www.python.org/dev/peps/pep-0328\] - Imports: Multi-Line and Absolute/RelativePEP written by Aahz; implemented by Thomas Wouters.
<https://pylib.readthedocs.io/>The py library by Holger Krekel, which contains the `py.std` package.
## PEP 338: Executing Modules as Scripts
The [`-m`](../using/cmdline.xhtml#cmdoption-m) switch added in Python 2.4 to execute a module as a script gained a few more abilities. Instead of being implemented in C code inside the Python interpreter, the switch now uses an implementation in a new module, [`runpy`](../library/runpy.xhtml#module-runpy "runpy: Locate and run Python modules without importing them first.").
The [`runpy`](../library/runpy.xhtml#module-runpy "runpy: Locate and run Python modules without importing them first.") module implements a more sophisticated import mechanism so that it's now possible to run modules in a package such as `pychecker.checker`. The module also supports alternative import mechanisms such as the [`zipimport`](../library/zipimport.xhtml#module-zipimport "zipimport: support for importing Python modules from ZIP archives.") module. This means you can add a .zip archive's path to `sys.path` and then use the [`-m`](../using/cmdline.xhtml#cmdoption-m) switch to execute code from the archive.
參見
[**PEP 338**](https://www.python.org/dev/peps/pep-0338) \[https://www.python.org/dev/peps/pep-0338\] - Executing modules as scriptsPEP written and implemented by Nick Coghlan.
## PEP 341: Unified try/except/finally
Until Python 2.5, the [`try`](../reference/compound_stmts.xhtml#try) statement came in two flavours. You could use a [`finally`](../reference/compound_stmts.xhtml#finally) block to ensure that code is always executed, or one or more [`except`](../reference/compound_stmts.xhtml#except) blocks to catch specific exceptions. You couldn't combine both `except` blocks and a `finally` block, because generating the right bytecode for the combined version was complicated and it wasn't clear what the semantics of the combined statement should be.
Guido van Rossum spent some time working with Java, which does support the equivalent of combining [`except`](../reference/compound_stmts.xhtml#except) blocks and a [`finally`](../reference/compound_stmts.xhtml#finally) block, and this clarified what the statement should mean. In Python 2.5, you can now write:
```
try:
block-1 ...
except Exception1:
handler-1 ...
except Exception2:
handler-2 ...
else:
else-block
finally:
final-block
```
The code in *block-1* is executed. If the code raises an exception, the various [`except`](../reference/compound_stmts.xhtml#except) blocks are tested: if the exception is of class `Exception1`, *handler-1* is executed; otherwise if it's of class `Exception2`, *handler-2* is executed, and so forth. If no exception is raised, the *else-block* is executed.
No matter what happened previously, the *final-block* is executed once the code block is complete and any raised exceptions handled. Even if there's an error in an exception handler or the *else-block* and a new exception is raised, the code in the *final-block* is still run.
參見
[**PEP 341**](https://www.python.org/dev/peps/pep-0341) \[https://www.python.org/dev/peps/pep-0341\] - Unifying try-except and try-finallyPEP written by Georg Brandl; implementation by Thomas Lee.
## PEP 342: New Generator Features
Python 2.5 adds a simple way to pass values *into* a generator. As introduced in Python 2.3, generators only produce output; once a generator's code was invoked to create an iterator, there was no way to pass any new information into the function when its execution is resumed. Sometimes the ability to pass in some information would be useful. Hackish solutions to this include making the generator's code look at a global variable and then changing the global variable's value, or passing in some mutable object that callers then modify.
To refresh your memory of basic generators, here's a simple example:
```
def counter (maximum):
i = 0
while i < maximum:
yield i
i += 1
```
When you call `counter(10)`, the result is an iterator that returns the values from 0 up to 9. On encountering the [`yield`](../reference/simple_stmts.xhtml#yield) statement, the iterator returns the provided value and suspends the function's execution, preserving the local variables. Execution resumes on the following call to the iterator's [`next()`](../library/functions.xhtml#next "next") method, picking up after the `yield` statement.
In Python 2.3, [`yield`](../reference/simple_stmts.xhtml#yield) was a statement; it didn't return any value. In 2.5, `yield` is now an expression, returning a value that can be assigned to a variable or otherwise operated on:
```
val = (yield i)
```
I recommend that you always put parentheses around a [`yield`](../reference/simple_stmts.xhtml#yield) expression when you're doing something with the returned value, as in the above example. The parentheses aren't always necessary, but it's easier to always add them instead of having to remember when they're needed.
([**PEP 342**](https://www.python.org/dev/peps/pep-0342) \[https://www.python.org/dev/peps/pep-0342\] explains the exact rules, which are that a [`yield`](../reference/simple_stmts.xhtml#yield)-expression must always be parenthesized except when it occurs at the top-level expression on the right-hand side of an assignment. This means you can write `val = yield i` but have to use parentheses when there's an operation, as in `val = (yield i) + 12`.)
Values are sent into a generator by calling its `send(value)` method. The generator's code is then resumed and the [`yield`](../reference/simple_stmts.xhtml#yield) expression returns the specified *value*. If the regular [`next()`](../library/functions.xhtml#next "next") method is called, the `yield` returns [`None`](../library/constants.xhtml#None "None").
Here's the previous example, modified to allow changing the value of the internal counter.
```
def counter (maximum):
i = 0
while i < maximum:
val = (yield i)
# If value provided, change counter
if val is not None:
i = val
else:
i += 1
```
And here's an example of changing the counter:
```
>>> it = counter(10)
>>> print it.next()
0
>>> print it.next()
1
>>> print it.send(8)
8
>>> print it.next()
9
>>> print it.next()
Traceback (most recent call last):
File "t.py", line 15, in ?
print it.next()
StopIteration
```
[`yield`](../reference/simple_stmts.xhtml#yield) will usually return [`None`](../library/constants.xhtml#None "None"), so you should always check for this case. Don't just use its value in expressions unless you're sure that the `send()` method will be the only method used to resume your generator function.
In addition to `send()`, there are two other new methods on generators:
- `throw(type, value=None, traceback=None)` is used to raise an exception inside the generator; the exception is raised by the [`yield`](../reference/simple_stmts.xhtml#yield) expression where the generator's execution is paused.
- `close()` raises a new [`GeneratorExit`](../library/exceptions.xhtml#GeneratorExit "GeneratorExit") exception inside the generator to terminate the iteration. On receiving this exception, the generator's code must either raise [`GeneratorExit`](../library/exceptions.xhtml#GeneratorExit "GeneratorExit") or [`StopIteration`](../library/exceptions.xhtml#StopIteration "StopIteration"). Catching the [`GeneratorExit`](../library/exceptions.xhtml#GeneratorExit "GeneratorExit") exception and returning a value is illegal and will trigger a [`RuntimeError`](../library/exceptions.xhtml#RuntimeError "RuntimeError"); if the function raises some other exception, that exception is propagated to the caller. `close()` will also be called by Python's garbage collector when the generator is garbage-collected.
If you need to run cleanup code when a [`GeneratorExit`](../library/exceptions.xhtml#GeneratorExit "GeneratorExit") occurs, I suggest using a `try: ... finally:` suite instead of catching [`GeneratorExit`](../library/exceptions.xhtml#GeneratorExit "GeneratorExit").
這些改變的累積效應是,讓生成器從單向的信息生產者變成了既是生產者,又是消費者。
Generators also become *coroutines*, a more generalized form of subroutines. Subroutines are entered at one point and exited at another point (the top of the function, and a [`return`](../reference/simple_stmts.xhtml#return) statement), but coroutines can be entered, exited, and resumed at many different points (the [`yield`](../reference/simple_stmts.xhtml#yield) statements). We'll have to figure out patterns for using coroutines effectively in Python.
The addition of the `close()` method has one side effect that isn't obvious. `close()` is called when a generator is garbage-collected, so this means the generator's code gets one last chance to run before the generator is destroyed. This last chance means that `try...finally` statements in generators can now be guaranteed to work; the [`finally`](../reference/compound_stmts.xhtml#finally) clause will now always get a chance to run. The syntactic restriction that you couldn't mix [`yield`](../reference/simple_stmts.xhtml#yield)statements with a `try...finally` suite has therefore been removed. This seems like a minor bit of language trivia, but using generators and `try...finally` is actually necessary in order to implement the [`with`](../reference/compound_stmts.xhtml#with) statement described by PEP 343. I'll look at this new statement in the following section.
Another even more esoteric effect of this change: previously, the `gi_frame` attribute of a generator was always a frame object. It's now possible for `gi_frame` to be `None` once the generator has been exhausted.
參見
[**PEP 342**](https://www.python.org/dev/peps/pep-0342) \[https://www.python.org/dev/peps/pep-0342\] - 通過增強型生成器實現協程PEP written by Guido van Rossum and Phillip J. Eby; implemented by Phillip J. Eby. Includes examples of some fancier uses of generators as coroutines.
Earlier versions of these features were proposed in [**PEP 288**](https://www.python.org/dev/peps/pep-0288) \[https://www.python.org/dev/peps/pep-0288\] by Raymond Hettinger and [**PEP 325**](https://www.python.org/dev/peps/pep-0325) \[https://www.python.org/dev/peps/pep-0325\] by Samuele Pedroni.
<https://en.wikipedia.org/wiki/Coroutine>The Wikipedia entry for coroutines.
<http://www.sidhe.org/~dan/blog/archives/000178.html>An explanation of coroutines from a Perl point of view, written by Dan Sugalski.
## PEP 343: The 'with' statement
The '[`with`](../reference/compound_stmts.xhtml#with)' statement clarifies code that previously would use `try...finally` blocks to ensure that clean-up code is executed. In this section, I'll discuss the statement as it will commonly be used. In the next section, I'll examine the implementation details and show how to write objects for use with this statement.
The '[`with`](../reference/compound_stmts.xhtml#with)' statement is a new control-flow structure whose basic structure is:
```
with expression [as variable]:
with-block
```
The expression is evaluated, and it should result in an object that supports the context management protocol (that is, has [`__enter__()`](../reference/datamodel.xhtml#object.__enter__ "object.__enter__") and [`__exit__()`](../reference/datamodel.xhtml#object.__exit__ "object.__exit__")methods.
The object's [`__enter__()`](../reference/datamodel.xhtml#object.__enter__ "object.__enter__") is called before *with-block* is executed and therefore can run set-up code. It also may return a value that is bound to the name *variable*, if given. (Note carefully that *variable* is *not* assigned the result of *expression*.)
After execution of the *with-block* is finished, the object's [`__exit__()`](../reference/datamodel.xhtml#object.__exit__ "object.__exit__")method is called, even if the block raised an exception, and can therefore run clean-up code.
To enable the statement in Python 2.5, you need to add the following directive to your module:
```
from __future__ import with_statement
```
The statement will always be enabled in Python 2.6.
Some standard Python objects now support the context management protocol and can be used with the '[`with`](../reference/compound_stmts.xhtml#with)' statement. File objects are one example:
```
with open('/etc/passwd', 'r') as f:
for line in f:
print line
... more processing code ...
```
After this statement has executed, the file object in *f* will have been automatically closed, even if the [`for`](../reference/compound_stmts.xhtml#for) loop raised an exception part-way through the block.
注解
In this case, *f* is the same object created by [`open()`](../library/functions.xhtml#open "open"), because `file.__enter__()` returns *self*.
The [`threading`](../library/threading.xhtml#module-threading "threading: Thread-based parallelism.") module's locks and condition variables also support the '[`with`](../reference/compound_stmts.xhtml#with)' statement:
```
lock = threading.Lock()
with lock:
# Critical section of code
...
```
The lock is acquired before the block is executed and always released once the block is complete.
The new `localcontext()` function in the [`decimal`](../library/decimal.xhtml#module-decimal "decimal: Implementation of the General Decimal Arithmetic Specification.") module makes it easy to save and restore the current decimal context, which encapsulates the desired precision and rounding characteristics for computations:
```
from decimal import Decimal, Context, localcontext
# Displays with default precision of 28 digits
v = Decimal('578')
print v.sqrt()
with localcontext(Context(prec=16)):
# All code in this block uses a precision of 16 digits.
# The original context is restored on exiting the block.
print v.sqrt()
```
### Writing Context Managers
Under the hood, the '[`with`](../reference/compound_stmts.xhtml#with)' statement is fairly complicated. Most people will only use '`with`' in company with existing objects and don't need to know these details, so you can skip the rest of this section if you like. Authors of new objects will need to understand the details of the underlying implementation and should keep reading.
A high-level explanation of the context management protocol is:
- The expression is evaluated and should result in an object called a "context manager". The context manager must have [`__enter__()`](../reference/datamodel.xhtml#object.__enter__ "object.__enter__") and [`__exit__()`](../reference/datamodel.xhtml#object.__exit__ "object.__exit__")methods.
- The context manager's [`__enter__()`](../reference/datamodel.xhtml#object.__enter__ "object.__enter__") method is called. The value returned is assigned to *VAR*. If no `'as VAR'` clause is present, the value is simply discarded.
- The code in *BLOCK* is executed.
- If *BLOCK* raises an exception, the `__exit__(type, value, traceback)`is called with the exception details, the same values returned by [`sys.exc_info()`](../library/sys.xhtml#sys.exc_info "sys.exc_info"). The method's return value controls whether the exception is re-raised: any false value re-raises the exception, and `True` will result in suppressing it. You'll only rarely want to suppress the exception, because if you do the author of the code containing the '[`with`](../reference/compound_stmts.xhtml#with)' statement will never realize anything went wrong.
- If *BLOCK* didn't raise an exception, the [`__exit__()`](../reference/datamodel.xhtml#object.__exit__ "object.__exit__") method is still called, but *type*, *value*, and *traceback* are all `None`.
Let's think through an example. I won't present detailed code but will only sketch the methods necessary for a database that supports transactions.
(For people unfamiliar with database terminology: a set of changes to the database are grouped into a transaction. Transactions can be either committed, meaning that all the changes are written into the database, or rolled back, meaning that the changes are all discarded and the database is unchanged. See any database textbook for more information.)
Let's assume there's an object representing a database connection. Our goal will be to let the user write code like this:
```
db_connection = DatabaseConnection()
with db_connection as cursor:
cursor.execute('insert into ...')
cursor.execute('delete from ...')
# ... more operations ...
```
The transaction should be committed if the code in the block runs flawlessly or rolled back if there's an exception. Here's the basic interface for `DatabaseConnection` that I'll assume:
```
class DatabaseConnection:
# Database interface
def cursor (self):
"Returns a cursor object and starts a new transaction"
def commit (self):
"Commits current transaction"
def rollback (self):
"Rolls back current transaction"
```
The [`__enter__()`](../reference/datamodel.xhtml#object.__enter__ "object.__enter__") method is pretty easy, having only to start a new transaction. For this application the resulting cursor object would be a useful result, so the method will return it. The user can then add `as cursor` to their '[`with`](../reference/compound_stmts.xhtml#with)' statement to bind the cursor to a variable name.
```
class DatabaseConnection:
...
def __enter__ (self):
# Code to start a new transaction
cursor = self.cursor()
return cursor
```
The [`__exit__()`](../reference/datamodel.xhtml#object.__exit__ "object.__exit__") method is the most complicated because it's where most of the work has to be done. The method has to check if an exception occurred. If there was no exception, the transaction is committed. The transaction is rolled back if there was an exception.
In the code below, execution will just fall off the end of the function, returning the default value of `None`. `None` is false, so the exception will be re-raised automatically. If you wished, you could be more explicit and add a [`return`](../reference/simple_stmts.xhtml#return) statement at the marked location.
```
class DatabaseConnection:
...
def __exit__ (self, type, value, tb):
if tb is None:
# No exception, so commit
self.commit()
else:
# Exception occurred, so rollback.
self.rollback()
# return False
```
### The contextlib module
The new [`contextlib`](../library/contextlib.xhtml#module-contextlib "contextlib: Utilities for with-statement contexts.") module provides some functions and a decorator that are useful for writing objects for use with the '[`with`](../reference/compound_stmts.xhtml#with)' statement.
The decorator is called `contextmanager()`, and lets you write a single generator function instead of defining a new class. The generator should yield exactly one value. The code up to the [`yield`](../reference/simple_stmts.xhtml#yield) will be executed as the [`__enter__()`](../reference/datamodel.xhtml#object.__enter__ "object.__enter__") method, and the value yielded will be the method's return value that will get bound to the variable in the '[`with`](../reference/compound_stmts.xhtml#with)' statement's `as` clause, if any. The code after the [`yield`](../reference/simple_stmts.xhtml#yield) will be executed in the [`__exit__()`](../reference/datamodel.xhtml#object.__exit__ "object.__exit__") method. Any exception raised in the block will be raised by the `yield` statement.
Our database example from the previous section could be written using this decorator as:
```
from contextlib import contextmanager
@contextmanager
def db_transaction (connection):
cursor = connection.cursor()
try:
yield cursor
except:
connection.rollback()
raise
else:
connection.commit()
db = DatabaseConnection()
with db_transaction(db) as cursor:
...
```
The [`contextlib`](../library/contextlib.xhtml#module-contextlib "contextlib: Utilities for with-statement contexts.") module also has a `nested(mgr1, mgr2, ...)` function that combines a number of context managers so you don't need to write nested '[`with`](../reference/compound_stmts.xhtml#with)' statements. In this example, the single '`with`' statement both starts a database transaction and acquires a thread lock:
```
lock = threading.Lock()
with nested (db_transaction(db), lock) as (cursor, locked):
...
```
Finally, the `closing(object)` function returns *object* so that it can be bound to a variable, and calls `object.close` at the end of the block.
```
import urllib, sys
from contextlib import closing
with closing(urllib.urlopen('http://www.yahoo.com')) as f:
for line in f:
sys.stdout.write(line)
```
參見
[**PEP 343**](https://www.python.org/dev/peps/pep-0343) \[https://www.python.org/dev/peps/pep-0343\] - "with" 語句PEP written by Guido van Rossum and Nick Coghlan; implemented by Mike Bland, Guido van Rossum, and Neal Norwitz. The PEP shows the code generated for a '[`with`](../reference/compound_stmts.xhtml#with)' statement, which can be helpful in learning how the statement works.
The documentation for the [`contextlib`](../library/contextlib.xhtml#module-contextlib "contextlib: Utilities for with-statement contexts.") module.
## PEP 352: Exceptions as New-Style Classes
Exception classes can now be new-style classes, not just classic classes, and the built-in [`Exception`](../library/exceptions.xhtml#Exception "Exception") class and all the standard built-in exceptions ([`NameError`](../library/exceptions.xhtml#NameError "NameError"), [`ValueError`](../library/exceptions.xhtml#ValueError "ValueError"), etc.) are now new-style classes.
The inheritance hierarchy for exceptions has been rearranged a bit. In 2.5, the inheritance relationships are:
```
BaseException # New in Python 2.5
|- KeyboardInterrupt
|- SystemExit
|- Exception
|- (all other current built-in exceptions)
```
This rearrangement was done because people often want to catch all exceptions that indicate program errors. [`KeyboardInterrupt`](../library/exceptions.xhtml#KeyboardInterrupt "KeyboardInterrupt") and [`SystemExit`](../library/exceptions.xhtml#SystemExit "SystemExit")aren't errors, though, and usually represent an explicit action such as the user hitting Control-C or code calling [`sys.exit()`](../library/sys.xhtml#sys.exit "sys.exit"). A bare `except:` will catch all exceptions, so you commonly need to list [`KeyboardInterrupt`](../library/exceptions.xhtml#KeyboardInterrupt "KeyboardInterrupt") and [`SystemExit`](../library/exceptions.xhtml#SystemExit "SystemExit") in order to re-raise them. The usual pattern is:
```
try:
...
except (KeyboardInterrupt, SystemExit):
raise
except:
# Log error...
# Continue running program...
```
In Python 2.5, you can now write `except Exception` to achieve the same result, catching all the exceptions that usually indicate errors but leaving [`KeyboardInterrupt`](../library/exceptions.xhtml#KeyboardInterrupt "KeyboardInterrupt") and [`SystemExit`](../library/exceptions.xhtml#SystemExit "SystemExit") alone. As in previous versions, a bare `except:` still catches all exceptions.
The goal for Python 3.0 is to require any class raised as an exception to derive from [`BaseException`](../library/exceptions.xhtml#BaseException "BaseException") or some descendant of [`BaseException`](../library/exceptions.xhtml#BaseException "BaseException"), and future releases in the Python 2.x series may begin to enforce this constraint. Therefore, I suggest you begin making all your exception classes derive from [`Exception`](../library/exceptions.xhtml#Exception "Exception") now. It's been suggested that the bare `except:` form should be removed in Python 3.0, but Guido van Rossum hasn't decided whether to do this or not.
Raising of strings as exceptions, as in the statement
```
raise "Error
occurred"
```
, is deprecated in Python 2.5 and will trigger a warning. The aim is to be able to remove the string-exception feature in a few releases.
參見
[**PEP 352**](https://www.python.org/dev/peps/pep-0352) \[https://www.python.org/dev/peps/pep-0352\] - Required Superclass for ExceptionsPEP written by Brett Cannon and Guido van Rossum; implemented by Brett Cannon.
## PEP 353: Using ssize\_t as the index type
A wide-ranging change to Python's C API, using a new `Py_ssize_t` type definition instead of `int`, will permit the interpreter to handle more data on 64-bit platforms. This change doesn't affect Python's capacity on 32-bit platforms.
Various pieces of the Python interpreter used C's `int` type to store sizes or counts; for example, the number of items in a list or tuple were stored in an `int`. The C compilers for most 64-bit platforms still define `int` as a 32-bit type, so that meant that lists could only hold up to `2**31 - 1` = 2147483647 items. (There are actually a few different programming models that 64-bit C compilers can use -- see [http://www.unix.org/version2/whatsnew/lp64\_wp.html](http://www.unix.org/version2/whatsnew/lp64_wp.html) for a discussion -- but the most commonly available model leaves `int` as 32 bits.)
A limit of 2147483647 items doesn't really matter on a 32-bit platform because you'll run out of memory before hitting the length limit. Each list item requires space for a pointer, which is 4 bytes, plus space for a [`PyObject`](../c-api/structures.xhtml#c.PyObject "PyObject") representing the item. 2147483647\*4 is already more bytes than a 32-bit address space can contain.
It's possible to address that much memory on a 64-bit platform, however. The pointers for a list that size would only require 16 GiB of space, so it's not unreasonable that Python programmers might construct lists that large. Therefore, the Python interpreter had to be changed to use some type other than `int`, and this will be a 64-bit type on 64-bit platforms. The change will cause incompatibilities on 64-bit machines, so it was deemed worth making the transition now, while the number of 64-bit users is still relatively small. (In 5 or 10 years, we may *all* be on 64-bit machines, and the transition would be more painful then.)
This change most strongly affects authors of C extension modules. Python strings and container types such as lists and tuples now use `Py_ssize_t` to store their size. Functions such as [`PyList_Size()`](../c-api/list.xhtml#c.PyList_Size "PyList_Size") now return `Py_ssize_t`. Code in extension modules may therefore need to have some variables changed to `Py_ssize_t`.
The [`PyArg_ParseTuple()`](../c-api/arg.xhtml#c.PyArg_ParseTuple "PyArg_ParseTuple") and [`Py_BuildValue()`](../c-api/arg.xhtml#c.Py_BuildValue "Py_BuildValue") functions have a new conversion code, `n`, for `Py_ssize_t`. [`PyArg_ParseTuple()`](../c-api/arg.xhtml#c.PyArg_ParseTuple "PyArg_ParseTuple")'s `s#` and `t#` still output `int` by default, but you can define the macro `PY_SSIZE_T_CLEAN` before including `Python.h` to make them return `Py_ssize_t`.
[**PEP 353**](https://www.python.org/dev/peps/pep-0353) \[https://www.python.org/dev/peps/pep-0353\] has a section on conversion guidelines that extension authors should read to learn about supporting 64-bit platforms.
參見
[**PEP 353**](https://www.python.org/dev/peps/pep-0353) \[https://www.python.org/dev/peps/pep-0353\] - Using ssize\_t as the index typePEP written and implemented by Martin von L?wis.
## PEP 357: The '\_\_index\_\_' method
The NumPy developers had a problem that could only be solved by adding a new special method, [`__index__()`](../reference/datamodel.xhtml#object.__index__ "object.__index__"). When using slice notation, as in `[start:stop:step]`, the values of the *start*, *stop*, and *step* indexes must all be either integers or long integers. NumPy defines a variety of specialized integer types corresponding to unsigned and signed integers of 8, 16, 32, and 64 bits, but there was no way to signal that these types could be used as slice indexes.
Slicing can't just use the existing [`__int__()`](../reference/datamodel.xhtml#object.__int__ "object.__int__") method because that method is also used to implement coercion to integers. If slicing used [`__int__()`](../reference/datamodel.xhtml#object.__int__ "object.__int__"), floating-point numbers would also become legal slice indexes and that's clearly an undesirable behaviour.
Instead, a new special method called [`__index__()`](../reference/datamodel.xhtml#object.__index__ "object.__index__") was added. It takes no arguments and returns an integer giving the slice index to use. For example:
```
class C:
def __index__ (self):
return self.value
```
The return value must be either a Python integer or long integer. The interpreter will check that the type returned is correct, and raises a [`TypeError`](../library/exceptions.xhtml#TypeError "TypeError") if this requirement isn't met.
A corresponding `nb_index` slot was added to the C-level [`PyNumberMethods`](../c-api/typeobj.xhtml#c.PyNumberMethods "PyNumberMethods") structure to let C extensions implement this protocol. `PyNumber_Index(obj)` can be used in extension code to call the [`__index__()`](../reference/datamodel.xhtml#object.__index__ "object.__index__") function and retrieve its result.
參見
[**PEP 357**](https://www.python.org/dev/peps/pep-0357) \[https://www.python.org/dev/peps/pep-0357\] - Allowing Any Object to be Used for SlicingPEP written and implemented by Travis Oliphant.
## 其他語言特性修改
Here are all of the changes that Python 2.5 makes to the core Python language.
- The [`dict`](../library/stdtypes.xhtml#dict "dict") type has a new hook for letting subclasses provide a default value when a key isn't contained in the dictionary. When a key isn't found, the dictionary's `__missing__(key)` method will be called. This hook is used to implement the new `defaultdict` class in the [`collections`](../library/collections.xhtml#module-collections "collections: Container datatypes")module. The following example defines a dictionary that returns zero for any missing key:
```
class zerodict (dict):
def __missing__ (self, key):
return 0
d = zerodict({1:1, 2:2})
print d[1], d[2] # Prints 1, 2
print d[3], d[4] # Prints 0, 0
```
- Both 8-bit and Unicode strings have new `partition(sep)` and `rpartition(sep)` methods that simplify a common use case.
The `find(S)` method is often used to get an index which is then used to slice the string and obtain the pieces that are before and after the separator. `partition(sep)` condenses this pattern into a single method call that returns a 3-tuple containing the substring before the separator, the separator itself, and the substring after the separator. If the separator isn't found, the first element of the tuple is the entire string and the other two elements are empty. `rpartition(sep)` also returns a 3-tuple but starts searching from the end of the string; the `r` stands for 'reverse'.
幾個例子:
```
>>> ('http://www.python.org').partition('://')
('http', '://', 'www.python.org')
>>> ('file:/usr/share/doc/index.html').partition('://')
('file:/usr/share/doc/index.html', '', '')
>>> (u'Subject: a quick question').partition(':')
(u'Subject', u':', u' a quick question')
>>> 'www.python.org'.rpartition('.')
('www.python', '.', 'org')
>>> 'www.python.org'.rpartition(':')
('', '', 'www.python.org')
```
(Implemented by Fredrik Lundh following a suggestion by Raymond Hettinger.)
- The `startswith()` and `endswith()` methods of string types now accept tuples of strings to check for.
```
def is_image_file (filename):
return filename.endswith(('.gif', '.jpg', '.tiff'))
```
(Implemented by Georg Brandl following a suggestion by Tom Lynn.)
- The [`min()`](../library/functions.xhtml#min "min") and [`max()`](../library/functions.xhtml#max "max") built-in functions gained a `key` keyword parameter analogous to the `key` argument for `sort()`. This parameter supplies a function that takes a single argument and is called for every value in the list; [`min()`](../library/functions.xhtml#min "min")/[`max()`](../library/functions.xhtml#max "max") will return the element with the smallest/largest return value from this function. For example, to find the longest string in a list, you can do:
```
L = ['medium', 'longest', 'short']
# Prints 'longest'
print max(L, key=len)
# Prints 'short', because lexicographically 'short' has the largest value
print max(L)
```
(Contributed by Steven Bethard and Raymond Hettinger.)
- Two new built-in functions, [`any()`](../library/functions.xhtml#any "any") and [`all()`](../library/functions.xhtml#all "all"), evaluate whether an iterator contains any true or false values. [`any()`](../library/functions.xhtml#any "any") returns [`True`](../library/constants.xhtml#True "True")if any value returned by the iterator is true; otherwise it will return [`False`](../library/constants.xhtml#False "False"). [`all()`](../library/functions.xhtml#all "all") returns [`True`](../library/constants.xhtml#True "True") only if all of the values returned by the iterator evaluate as true. (Suggested by Guido van Rossum, and implemented by Raymond Hettinger.)
- The result of a class's [`__hash__()`](../reference/datamodel.xhtml#object.__hash__ "object.__hash__") method can now be either a long integer or a regular integer. If a long integer is returned, the hash of that value is taken. In earlier versions the hash value was required to be a regular integer, but in 2.5 the [`id()`](../library/functions.xhtml#id "id") built-in was changed to always return non-negative numbers, and users often seem to use `id(self)` in [`__hash__()`](../reference/datamodel.xhtml#object.__hash__ "object.__hash__") methods (though this is discouraged).
- ASCII is now the default encoding for modules. It's now a syntax error if a module contains string literals with 8-bit characters but doesn't have an encoding declaration. In Python 2.4 this triggered a warning, not a syntax error. See [**PEP 263**](https://www.python.org/dev/peps/pep-0263) \[https://www.python.org/dev/peps/pep-0263\] for how to declare a module's encoding; for example, you might add a line like this near the top of the source file:
```
# -*- coding: latin1 -*-
```
- A new warning, [`UnicodeWarning`](../library/exceptions.xhtml#UnicodeWarning "UnicodeWarning"), is triggered when you attempt to compare a Unicode string and an 8-bit string that can't be converted to Unicode using the default ASCII encoding. The result of the comparison is false:
```
>>> chr(128) == unichr(128) # Can't convert chr(128) to Unicode
__main__:1: UnicodeWarning: Unicode equal comparison failed
to convert both arguments to Unicode - interpreting them
as being unequal
False
>>> chr(127) == unichr(127) # chr(127) can be converted
True
```
Previously this would raise a [`UnicodeDecodeError`](../library/exceptions.xhtml#UnicodeDecodeError "UnicodeDecodeError") exception, but in 2.5 this could result in puzzling problems when accessing a dictionary. If you looked up `unichr(128)` and `chr(128)` was being used as a key, you'd get a [`UnicodeDecodeError`](../library/exceptions.xhtml#UnicodeDecodeError "UnicodeDecodeError") exception. Other changes in 2.5 resulted in this exception being raised instead of suppressed by the code in `dictobject.c`that implements dictionaries.
Raising an exception for such a comparison is strictly correct, but the change might have broken code, so instead [`UnicodeWarning`](../library/exceptions.xhtml#UnicodeWarning "UnicodeWarning") was introduced.
(Implemented by Marc-André Lemburg.)
- One error that Python programmers sometimes make is forgetting to include an `__init__.py` module in a package directory. Debugging this mistake can be confusing, and usually requires running Python with the [`-v`](../using/cmdline.xhtml#id4) switch to log all the paths searched. In Python 2.5, a new [`ImportWarning`](../library/exceptions.xhtml#ImportWarning "ImportWarning") warning is triggered when an import would have picked up a directory as a package but no `__init__.py` was found. This warning is silently ignored by default; provide the [`-Wd`](../using/cmdline.xhtml#cmdoption-w) option when running the Python executable to display the warning message. (Implemented by Thomas Wouters.)
- The list of base classes in a class definition can now be empty. As an example, this is now legal:
```
class C():
pass
```
(Implemented by Brett Cannon.)
### Interactive Interpreter Changes
In the interactive interpreter, `quit` and `exit` have long been strings so that new users get a somewhat helpful message when they try to quit:
```
>>> quit
'Use Ctrl-D (i.e. EOF) to exit.'
```
In Python 2.5, `quit` and `exit` are now objects that still produce string representations of themselves, but are also callable. Newbies who try `quit()`or `exit()` will now exit the interpreter as they expect. (Implemented by Georg Brandl.)
The Python executable now accepts the standard long options [`--help`](../using/cmdline.xhtml#cmdoption-help)and [`--version`](../using/cmdline.xhtml#cmdoption-version); on Windows, it also accepts the [`/?`](../using/cmdline.xhtml#cmdoption) option for displaying a help message. (Implemented by Georg Brandl.)
### 性能優化
Several of the optimizations were developed at the NeedForSpeed sprint, an event held in Reykjavik, Iceland, from May 21--28 2006. The sprint focused on speed enhancements to the CPython implementation and was funded by EWT LLC with local support from CCP Games. Those optimizations added at this sprint are specially marked in the following list.
- When they were introduced in Python 2.4, the built-in [`set`](../library/stdtypes.xhtml#set "set") and [`frozenset`](../library/stdtypes.xhtml#frozenset "frozenset") types were built on top of Python's dictionary type. In 2.5 the internal data structure has been customized for implementing sets, and as a result sets will use a third less memory and are somewhat faster. (Implemented by Raymond Hettinger.)
- The speed of some Unicode operations, such as finding substrings, string splitting, and character map encoding and decoding, has been improved. (Substring search and splitting improvements were added by Fredrik Lundh and Andrew Dalke at the NeedForSpeed sprint. Character maps were improved by Walter D?rwald and Martin von L?wis.)
- The `long(str, base)` function is now faster on long digit strings because fewer intermediate results are calculated. The peak is for strings of around 800--1000 digits where the function is 6 times faster. (Contributed by Alan McIntyre and committed at the NeedForSpeed sprint.)
- It's now illegal to mix iterating over a file with `for line in file` and calling the file object's `read()`/[`readline()`](../library/readline.xhtml#module-readline "readline: GNU readline support for Python. (Unix)")/`readlines()`methods. Iteration uses an internal buffer and the `read*()` methods don't use that buffer. Instead they would return the data following the buffer, causing the data to appear out of order. Mixing iteration and these methods will now trigger a [`ValueError`](../library/exceptions.xhtml#ValueError "ValueError") from the `read*()` method. (Implemented by Thomas Wouters.)
- The [`struct`](../library/struct.xhtml#module-struct "struct: Interpret bytes as packed binary data.") module now compiles structure format strings into an internal representation and caches this representation, yielding a 20% speedup. (Contributed by Bob Ippolito at the NeedForSpeed sprint.)
- The [`re`](../library/re.xhtml#module-re "re: Regular expression operations.") module got a 1 or 2% speedup by switching to Python's allocator functions instead of the system's `malloc()` and `free()`. (Contributed by Jack Diederich at the NeedForSpeed sprint.)
- The code generator's peephole optimizer now performs simple constant folding in expressions. If you write something like `a = 2+3`, the code generator will do the arithmetic and produce code corresponding to `a = 5`. (Proposed and implemented by Raymond Hettinger.)
- Function calls are now faster because code objects now keep the most recently finished frame (a "zombie frame") in an internal field of the code object, reusing it the next time the code object is invoked. (Original patch by Michael Hudson, modified by Armin Rigo and Richard Jones; committed at the NeedForSpeed sprint.) Frame objects are also slightly smaller, which may improve cache locality and reduce memory usage a bit. (Contributed by Neal Norwitz.)
- Python's built-in exceptions are now new-style classes, a change that speeds up instantiation considerably. Exception handling in Python 2.5 is therefore about 30% faster than in 2.4. (Contributed by Richard Jones, Georg Brandl and Sean Reifschneider at the NeedForSpeed sprint.)
- Importing now caches the paths tried, recording whether they exist or not so that the interpreter makes fewer `open()` and `stat()` calls on startup. (Contributed by Martin von L?wis and Georg Brandl.)
## New, Improved, and Removed Modules
The standard library received many enhancements and bug fixes in Python 2.5. Here's a partial list of the most notable changes, sorted alphabetically by module name. Consult the `Misc/NEWS` file in the source tree for a more complete list of changes, or look through the SVN logs for all the details.
- The [`audioop`](../library/audioop.xhtml#module-audioop "audioop: Manipulate raw audio data.") module now supports the a-LAW encoding, and the code for u-LAW encoding has been improved. (Contributed by Lars Immisch.)
- The [`codecs`](../library/codecs.xhtml#module-codecs "codecs: Encode and decode data and streams.") module gained support for incremental codecs. The `codec.lookup()` function now returns a `CodecInfo` instance instead of a tuple. `CodecInfo` instances behave like a 4-tuple to preserve backward compatibility but also have the attributes `encode`, `decode`, `incrementalencoder`, `incrementaldecoder`, `streamwriter`, and `streamreader`. Incremental codecs can receive input and produce output in multiple chunks; the output is the same as if the entire input was fed to the non-incremental codec. See the [`codecs`](../library/codecs.xhtml#module-codecs "codecs: Encode and decode data and streams.") module documentation for details. (Designed and implemented by Walter D?rwald.)
- The [`collections`](../library/collections.xhtml#module-collections "collections: Container datatypes") module gained a new type, `defaultdict`, that subclasses the standard [`dict`](../library/stdtypes.xhtml#dict "dict") type. The new type mostly behaves like a dictionary but constructs a default value when a key isn't present, automatically adding it to the dictionary for the requested key value.
The first argument to `defaultdict`'s constructor is a factory function that gets called whenever a key is requested but not found. This factory function receives no arguments, so you can use built-in type constructors such as [`list()`](../library/stdtypes.xhtml#list "list") or [`int()`](../library/functions.xhtml#int "int"). For example, you can make an index of words based on their initial letter like this:
```
words = """Nel mezzo del cammin di nostra vita
mi ritrovai per una selva oscura
che la diritta via era smarrita""".lower().split()
index = defaultdict(list)
for w in words:
init_letter = w[0]
index[init_letter].append(w)
```
Printing `index` results in the following output:
```
defaultdict(<type 'list'>, {'c': ['cammin', 'che'], 'e': ['era'],
'd': ['del', 'di', 'diritta'], 'm': ['mezzo', 'mi'],
'l': ['la'], 'o': ['oscura'], 'n': ['nel', 'nostra'],
'p': ['per'], 's': ['selva', 'smarrita'],
'r': ['ritrovai'], 'u': ['una'], 'v': ['vita', 'via']}
```
(Contributed by Guido van Rossum.)
- The `deque` double-ended queue type supplied by the [`collections`](../library/collections.xhtml#module-collections "collections: Container datatypes")module now has a `remove(value)` method that removes the first occurrence of *value* in the queue, raising [`ValueError`](../library/exceptions.xhtml#ValueError "ValueError") if the value isn't found. (Contributed by Raymond Hettinger.)
- New module: The [`contextlib`](../library/contextlib.xhtml#module-contextlib "contextlib: Utilities for with-statement contexts.") module contains helper functions for use with the new '[`with`](../reference/compound_stmts.xhtml#with)' statement. See section [The contextlib module](#contextlibmod)for more about this module.
- New module: The [`cProfile`](../library/profile.xhtml#module-cProfile "cProfile") module is a C implementation of the existing [`profile`](../library/profile.xhtml#module-profile "profile: Python source profiler.") module that has much lower overhead. The module's interface is the same as [`profile`](../library/profile.xhtml#module-profile "profile: Python source profiler."): you run `cProfile.run('main()')` to profile a function, can save profile data to a file, etc. It's not yet known if the Hotshot profiler, which is also written in C but doesn't match the [`profile`](../library/profile.xhtml#module-profile "profile: Python source profiler.") module's interface, will continue to be maintained in future versions of Python. (Contributed by Armin Rigo.)
Also, the [`pstats`](../library/profile.xhtml#module-pstats "pstats: Statistics object for use with the profiler.") module for analyzing the data measured by the profiler now supports directing the output to any file object by supplying a *stream*argument to the `Stats` constructor. (Contributed by Skip Montanaro.)
- The [`csv`](../library/csv.xhtml#module-csv "csv: Write and read tabular data to and from delimited files.") module, which parses files in comma-separated value format, received several enhancements and a number of bugfixes. You can now set the maximum size in bytes of a field by calling the `csv.field_size_limit(new_limit)` function; omitting the *new\_limit*argument will return the currently-set limit. The `reader` class now has a `line_num` attribute that counts the number of physical lines read from the source; records can span multiple physical lines, so `line_num` is not the same as the number of records read.
The CSV parser is now stricter about multi-line quoted fields. Previously, if a line ended within a quoted field without a terminating newline character, a newline would be inserted into the returned field. This behavior caused problems when reading files that contained carriage return characters within fields, so the code was changed to return the field without inserting newlines. As a consequence, if newlines embedded within fields are important, the input should be split into lines in a manner that preserves the newline characters.
(Contributed by Skip Montanaro and Andrew McNamara.)
- The [`datetime`](../library/datetime.xhtml#datetime.datetime "datetime.datetime") class in the [`datetime`](../library/datetime.xhtml#module-datetime "datetime: Basic date and time types.") module now has a `strptime(string, format)` method for parsing date strings, contributed by Josh Spoerri. It uses the same format characters as [`time.strptime()`](../library/time.xhtml#time.strptime "time.strptime") and [`time.strftime()`](../library/time.xhtml#time.strftime "time.strftime"):
```
from datetime import datetime
ts = datetime.strptime('10:13:15 2006-03-07',
'%H:%M:%S %Y-%m-%d')
```
- The `SequenceMatcher.get_matching_blocks()` method in the [`difflib`](../library/difflib.xhtml#module-difflib "difflib: Helpers for computing differences between objects.")module now guarantees to return a minimal list of blocks describing matching subsequences. Previously, the algorithm would occasionally break a block of matching elements into two list entries. (Enhancement by Tim Peters.)
- The [`doctest`](../library/doctest.xhtml#module-doctest "doctest: Test pieces of code within docstrings.") module gained a `SKIP` option that keeps an example from being executed at all. This is intended for code snippets that are usage examples intended for the reader and aren't actually test cases.
An *encoding* parameter was added to the `testfile()` function and the `DocFileSuite` class to specify the file's encoding. This makes it easier to use non-ASCII characters in tests contained within a docstring. (Contributed by Bjorn Tillenius.)
- The [`email`](../library/email.xhtml#module-email "email: Package supporting the parsing, manipulating, and generating email messages.") package has been updated to version 4.0. (Contributed by Barry Warsaw.)
- The [`fileinput`](../library/fileinput.xhtml#module-fileinput "fileinput: Loop over standard input or a list of files.") module was made more flexible. Unicode filenames are now supported, and a *mode* parameter that defaults to `"r"` was added to the [`input()`](../library/functions.xhtml#input "input") function to allow opening files in binary or [universal newlines](../glossary.xhtml#term-universal-newlines) mode. Another new parameter, *openhook*, lets you use a function other than [`open()`](../library/functions.xhtml#open "open") to open the input files. Once you're iterating over the set of files, the `FileInput` object's new `fileno()` returns the file descriptor for the currently opened file. (Contributed by Georg Brandl.)
- In the [`gc`](../library/gc.xhtml#module-gc "gc: Interface to the cycle-detecting garbage collector.") module, the new `get_count()` function returns a 3-tuple containing the current collection counts for the three GC generations. This is accounting information for the garbage collector; when these counts reach a specified threshold, a garbage collection sweep will be made. The existing [`gc.collect()`](../library/gc.xhtml#gc.collect "gc.collect") function now takes an optional *generation* argument of 0, 1, or 2 to specify which generation to collect. (Contributed by Barry Warsaw.)
- The `nsmallest()` and `nlargest()` functions in the [`heapq`](../library/heapq.xhtml#module-heapq "heapq: Heap queue algorithm (a.k.a. priority queue).")module now support a `key` keyword parameter similar to the one provided by the [`min()`](../library/functions.xhtml#min "min")/[`max()`](../library/functions.xhtml#max "max") functions and the `sort()` methods. For example:
```
>>> import heapq
>>> L = ["short", 'medium', 'longest', 'longer still']
>>> heapq.nsmallest(2, L) # Return two lowest elements, lexicographically
['longer still', 'longest']
>>> heapq.nsmallest(2, L, key=len) # Return two shortest elements
['short', 'medium']
```
(Contributed by Raymond Hettinger.)
- The [`itertools.islice()`](../library/itertools.xhtml#itertools.islice "itertools.islice") function now accepts `None` for the start and step arguments. This makes it more compatible with the attributes of slice objects, so that you can now write the following:
```
s = slice(5) # Create slice object
itertools.islice(iterable, s.start, s.stop, s.step)
```
(Contributed by Raymond Hettinger.)
- The [`format()`](../library/functions.xhtml#format "format") function in the [`locale`](../library/locale.xhtml#module-locale "locale: Internationalization services.") module has been modified and two new functions were added, `format_string()` and `currency()`.
The [`format()`](../library/functions.xhtml#format "format") function's *val* parameter could previously be a string as long as no more than one %char specifier appeared; now the parameter must be exactly one %char specifier with no surrounding text. An optional *monetary*parameter was also added which, if `True`, will use the locale's rules for formatting currency in placing a separator between groups of three digits.
To format strings with multiple %char specifiers, use the new `format_string()` function that works like [`format()`](../library/functions.xhtml#format "format") but also supports mixing %char specifiers with arbitrary text.
A new `currency()` function was also added that formats a number according to the current locale's settings.
(Contributed by Georg Brandl.)
- The [`mailbox`](../library/mailbox.xhtml#module-mailbox "mailbox: Manipulate mailboxes in various formats") module underwent a massive rewrite to add the capability to modify mailboxes in addition to reading them. A new set of classes that include `mbox`, `MH`, and `Maildir` are used to read mailboxes, and have an `add(message)` method to add messages, `remove(key)` to remove messages, and `lock()`/`unlock()` to lock/unlock the mailbox. The following example converts a maildir-format mailbox into an mbox-format one:
```
import mailbox
# 'factory=None' uses email.Message.Message as the class representing
# individual messages.
src = mailbox.Maildir('maildir', factory=None)
dest = mailbox.mbox('/tmp/mbox')
for msg in src:
dest.add(msg)
```
(Contributed by Gregory K. Johnson. Funding was provided by Google's 2005 Summer of Code.)
- New module: the [`msilib`](../library/msilib.xhtml#module-msilib "msilib: Creation of Microsoft Installer files, and CAB files. (Windows)") module allows creating Microsoft Installer `.msi` files and CAB files. Some support for reading the `.msi`database is also included. (Contributed by Martin von L?wis.)
- The [`nis`](../library/nis.xhtml#module-nis "nis: Interface to Sun's NIS (Yellow Pages) library. (Unix)") module now supports accessing domains other than the system default domain by supplying a *domain* argument to the [`nis.match()`](../library/nis.xhtml#nis.match "nis.match") and [`nis.maps()`](../library/nis.xhtml#nis.maps "nis.maps") functions. (Contributed by Ben Bell.)
- The [`operator`](../library/operator.xhtml#module-operator "operator: Functions corresponding to the standard operators.") module's `itemgetter()` and `attrgetter()`functions now support multiple fields. A call such as `operator.attrgetter('a', 'b')` will return a function that retrieves the `a` and `b` attributes. Combining this new feature with the `sort()` method's `key` parameter lets you easily sort lists using multiple fields. (Contributed by Raymond Hettinger.)
- The [`optparse`](../library/optparse.xhtml#module-optparse "optparse: Command-line option parsing library. (已移除)") module was updated to version 1.5.1 of the Optik library. The `OptionParser` class gained an `epilog` attribute, a string that will be printed after the help message, and a `destroy()` method to break reference cycles created by the object. (Contributed by Greg Ward.)
- The [`os`](../library/os.xhtml#module-os "os: Miscellaneous operating system interfaces.") module underwent several changes. The `stat_float_times`variable now defaults to true, meaning that [`os.stat()`](../library/os.xhtml#os.stat "os.stat") will now return time values as floats. (This doesn't necessarily mean that [`os.stat()`](../library/os.xhtml#os.stat "os.stat") will return times that are precise to fractions of a second; not all systems support such precision.)
Constants named [`os.SEEK_SET`](../library/os.xhtml#os.SEEK_SET "os.SEEK_SET"), [`os.SEEK_CUR`](../library/os.xhtml#os.SEEK_CUR "os.SEEK_CUR"), and [`os.SEEK_END`](../library/os.xhtml#os.SEEK_END "os.SEEK_END") have been added; these are the parameters to the [`os.lseek()`](../library/os.xhtml#os.lseek "os.lseek") function. Two new constants for locking are [`os.O_SHLOCK`](../library/os.xhtml#os.O_SHLOCK "os.O_SHLOCK") and [`os.O_EXLOCK`](../library/os.xhtml#os.O_EXLOCK "os.O_EXLOCK").
Two new functions, `wait3()` and `wait4()`, were added. They're similar the `waitpid()` function which waits for a child process to exit and returns a tuple of the process ID and its exit status, but `wait3()` and `wait4()` return additional information. `wait3()` doesn't take a process ID as input, so it waits for any child process to exit and returns a 3-tuple of *process-id*, *exit-status*, *resource-usage* as returned from the [`resource.getrusage()`](../library/resource.xhtml#resource.getrusage "resource.getrusage") function. `wait4(pid)` does take a process ID. (Contributed by Chad J. Schroeder.)
On FreeBSD, the [`os.stat()`](../library/os.xhtml#os.stat "os.stat") function now returns times with nanosecond resolution, and the returned object now has `st_gen` and `st_birthtime`. The `st_flags` attribute is also available, if the platform supports it. (Contributed by Antti Louko and Diego Pettenò.)
- The Python debugger provided by the [`pdb`](../library/pdb.xhtml#module-pdb "pdb: The Python debugger for interactive interpreters.") module can now store lists of commands to execute when a breakpoint is reached and execution stops. Once breakpoint #1 has been created, enter `commands 1` and enter a series of commands to be executed, finishing the list with `end`. The command list can include commands that resume execution, such as `continue` or `next`. (Contributed by Grégoire Dooms.)
- The [`pickle`](../library/pickle.xhtml#module-pickle "pickle: Convert Python objects to streams of bytes and back.") and `cPickle` modules no longer accept a return value of `None` from the [`__reduce__()`](../library/pickle.xhtml#object.__reduce__ "object.__reduce__") method; the method must return a tuple of arguments instead. The ability to return `None` was deprecated in Python 2.4, so this completes the removal of the feature.
- The [`pkgutil`](../library/pkgutil.xhtml#module-pkgutil "pkgutil: Utilities for the import system.") module, containing various utility functions for finding packages, was enhanced to support PEP 302's import hooks and now also works for packages stored in ZIP-format archives. (Contributed by Phillip J. Eby.)
- The pybench benchmark suite by Marc-André Lemburg is now included in the `Tools/pybench` directory. The pybench suite is an improvement on the commonly used `pystone.py` program because pybench provides a more detailed measurement of the interpreter's speed. It times particular operations such as function calls, tuple slicing, method lookups, and numeric operations, instead of performing many different operations and reducing the result to a single number as `pystone.py` does.
- The `pyexpat` module now uses version 2.0 of the Expat parser. (Contributed by Trent Mick.)
- The [`Queue`](../library/queue.xhtml#queue.Queue "queue.Queue") class provided by the `Queue` module gained two new methods. `join()` blocks until all items in the queue have been retrieved and all processing work on the items have been completed. Worker threads call the other new method, `task_done()`, to signal that processing for an item has been completed. (Contributed by Raymond Hettinger.)
- The old `regex` and `regsub` modules, which have been deprecated ever since Python 2.0, have finally been deleted. Other deleted modules: `statcache`, `tzparse`, `whrandom`.
- Also deleted: the `lib-old` directory, which includes ancient modules such as `dircmp` and `ni`, was removed. `lib-old` wasn't on the default `sys.path`, so unless your programs explicitly added the directory to `sys.path`, this removal shouldn't affect your code.
- The [`rlcompleter`](../library/rlcompleter.xhtml#module-rlcompleter "rlcompleter: Python identifier completion, suitable for the GNU readline library.") module is no longer dependent on importing the [`readline`](../library/readline.xhtml#module-readline "readline: GNU readline support for Python. (Unix)") module and therefore now works on non-Unix platforms. (Patch from Robert Kiendl.)
- The `SimpleXMLRPCServer` and `DocXMLRPCServer` classes now have a `rpc_paths` attribute that constrains XML-RPC operations to a limited set of URL paths; the default is to allow only `'/'` and `'/RPC2'`. Setting `rpc_paths` to `None` or an empty tuple disables this path checking.
- The [`socket`](../library/socket.xhtml#module-socket "socket: Low-level networking interface.") module now supports `AF_NETLINK` sockets on Linux, thanks to a patch from Philippe Biondi. Netlink sockets are a Linux-specific mechanism for communications between a user-space process and kernel code; an introductory article about them is at <https://www.linuxjournal.com/article/7356>. In Python code, netlink addresses are represented as a tuple of 2 integers, `(pid, group_mask)`.
Two new methods on socket objects, `recv_into(buffer)` and `recvfrom_into(buffer)`, store the received data in an object that supports the buffer protocol instead of returning the data as a string. This means you can put the data directly into an array or a memory-mapped file.
Socket objects also gained `getfamily()`, `gettype()`, and `getproto()` accessor methods to retrieve the family, type, and protocol values for the socket.
- New module: the [`spwd`](../library/spwd.xhtml#module-spwd "spwd: The shadow password database (getspnam() and friends). (Unix)") module provides functions for accessing the shadow password database on systems that support shadow passwords.
- The [`struct`](../library/struct.xhtml#module-struct "struct: Interpret bytes as packed binary data.") is now faster because it compiles format strings into `Struct` objects with `pack()` and `unpack()` methods. This is similar to how the [`re`](../library/re.xhtml#module-re "re: Regular expression operations.") module lets you create compiled regular expression objects. You can still use the module-level `pack()` and `unpack()`functions; they'll create `Struct` objects and cache them. Or you can use `Struct` instances directly:
```
s = struct.Struct('ih3s')
data = s.pack(1972, 187, 'abc')
year, number, name = s.unpack(data)
```
You can also pack and unpack data to and from buffer objects directly using the `pack_into(buffer, offset, v1, v2, ...)` and
```
unpack_from(buffer,
offset)
```
methods. This lets you store data directly into an array or a memory-mapped file.
(`Struct` objects were implemented by Bob Ippolito at the NeedForSpeed sprint. Support for buffer objects was added by Martin Blais, also at the NeedForSpeed sprint.)
- The Python developers switched from CVS to Subversion during the 2.5 development process. Information about the exact build version is available as the `sys.subversion` variable, a 3-tuple of
```
(interpreter-name, branch-name,
revision-range)
```
. For example, at the time of writing my copy of 2.5 was reporting `('CPython', 'trunk', '45313:45315')`.
This information is also available to C extensions via the [`Py_GetBuildInfo()`](../c-api/init.xhtml#c.Py_GetBuildInfo "Py_GetBuildInfo") function that returns a string of build information like this: `"trunk:45355:45356M, Apr 13 2006, 07:42:19"`. (Contributed by Barry Warsaw.)
- Another new function, [`sys._current_frames()`](../library/sys.xhtml#sys._current_frames "sys._current_frames"), returns the current stack frames for all running threads as a dictionary mapping thread identifiers to the topmost stack frame currently active in that thread at the time the function is called. (Contributed by Tim Peters.)
- The `TarFile` class in the [`tarfile`](../library/tarfile.xhtml#module-tarfile "tarfile: Read and write tar-format archive files.") module now has an `extractall()` method that extracts all members from the archive into the current working directory. It's also possible to set a different directory as the extraction target, and to unpack only a subset of the archive's members.
The compression used for a tarfile opened in stream mode can now be autodetected using the mode `'r|*'`. (Contributed by Lars Gust?bel.)
- The [`threading`](../library/threading.xhtml#module-threading "threading: Thread-based parallelism.") module now lets you set the stack size used when new threads are created. The `stack_size([*size*])` function returns the currently configured stack size, and supplying the optional *size* parameter sets a new value. Not all platforms support changing the stack size, but Windows, POSIX threading, and OS/2 all do. (Contributed by Andrew MacIntyre.)
- The [`unicodedata`](../library/unicodedata.xhtml#module-unicodedata "unicodedata: Access the Unicode Database.") module has been updated to use version 4.1.0 of the Unicode character database. Version 3.2.0 is required by some specifications, so it's still available as [`unicodedata.ucd_3_2_0`](../library/unicodedata.xhtml#unicodedata.ucd_3_2_0 "unicodedata.ucd_3_2_0").
- New module: the [`uuid`](../library/uuid.xhtml#module-uuid "uuid: UUID objects (universally unique identifiers) according to RFC 4122") module generates universally unique identifiers (UUIDs) according to [**RFC 4122**](https://tools.ietf.org/html/rfc4122.html) \[https://tools.ietf.org/html/rfc4122.html\]. The RFC defines several different UUID versions that are generated from a starting string, from system properties, or purely randomly. This module contains a `UUID` class and functions named `uuid1()`, `uuid3()`, `uuid4()`, and `uuid5()` to generate different versions of UUID. (Version 2 UUIDs are not specified in [**RFC 4122**](https://tools.ietf.org/html/rfc4122.html) \[https://tools.ietf.org/html/rfc4122.html\] and are not supported by this module.)
```
>>> import uuid
>>> # make a UUID based on the host ID and current time
>>> uuid.uuid1()
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
>>> # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
>>> # make a random UUID
>>> uuid.uuid4()
UUID('16fd2706-8baf-433b-82eb-8c7fada847da')
>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
```
(Contributed by Ka-Ping Yee.)
- The [`weakref`](../library/weakref.xhtml#module-weakref "weakref: Support for weak references and weak dictionaries.") module's `WeakKeyDictionary` and `WeakValueDictionary` types gained new methods for iterating over the weak references contained in the dictionary. `iterkeyrefs()` and `keyrefs()` methods were added to `WeakKeyDictionary`, and `itervaluerefs()` and `valuerefs()` were added to `WeakValueDictionary`. (Contributed by Fred L. Drake, Jr.)
- The [`webbrowser`](../library/webbrowser.xhtml#module-webbrowser "webbrowser: Easy-to-use controller for Web browsers.") module received a number of enhancements. It's now usable as a script with `python -m webbrowser`, taking a URL as the argument; there are a number of switches to control the behaviour (`-n` for a new browser window, `-t` for a new tab). New module-level functions, `open_new()` and `open_new_tab()`, were added to support this. The module's [`open()`](../library/functions.xhtml#open "open") function supports an additional feature, an *autoraise*parameter that signals whether to raise the open window when possible. A number of additional browsers were added to the supported list such as Firefox, Opera, Konqueror, and elinks. (Contributed by Oleg Broytmann and Georg Brandl.)
- The `xmlrpclib` module now supports returning [`datetime`](../library/datetime.xhtml#datetime.datetime "datetime.datetime") objects for the XML-RPC date type. Supply `use_datetime=True` to the `loads()`function or the `Unmarshaller` class to enable this feature. (Contributed by Skip Montanaro.)
- The [`zipfile`](../library/zipfile.xhtml#module-zipfile "zipfile: Read and write ZIP-format archive files.") module now supports the ZIP64 version of the format, meaning that a .zip archive can now be larger than 4 GiB and can contain individual files larger than 4 GiB. (Contributed by Ronald Oussoren.)
- The [`zlib`](../library/zlib.xhtml#module-zlib "zlib: Low-level interface to compression and decompression routines compatible with gzip.") module's `Compress` and `Decompress` objects now support a [`copy()`](../library/copy.xhtml#module-copy "copy: Shallow and deep copy operations.") method that makes a copy of the object's internal state and returns a new `Compress` or `Decompress` object. (Contributed by Chris AtLee.)
### The ctypes package
The [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") package, written by Thomas Heller, has been added to the standard library. [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") lets you call arbitrary functions in shared libraries or DLLs. Long-time users may remember the `dl` module, which provides functions for loading shared libraries and calling functions in them. The [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") package is much fancier.
To load a shared library or DLL, you must create an instance of the `CDLL` class and provide the name or path of the shared library or DLL. Once that's done, you can call arbitrary functions by accessing them as attributes of the `CDLL` object.
```
import ctypes
libc = ctypes.CDLL('libc.so.6')
result = libc.printf("Line of output\n")
```
Type constructors for the various C types are provided: `c_int()`, `c_float()`, `c_double()`, `c_char_p()` (equivalent to
```
char
*
```
), and so forth. Unlike Python's types, the C versions are all mutable; you can assign to their `value` attribute to change the wrapped value. Python integers and strings will be automatically converted to the corresponding C types, but for other types you must call the correct type constructor. (And I mean *must*; getting it wrong will often result in the interpreter crashing with a segmentation fault.)
You shouldn't use `c_char_p()` with a Python string when the C function will be modifying the memory area, because Python strings are supposed to be immutable; breaking this rule will cause puzzling bugs. When you need a modifiable memory area, use `create_string_buffer()`:
```
s = "this is a string"
buf = ctypes.create_string_buffer(s)
libc.strfry(buf)
```
C functions are assumed to return integers, but you can set the `restype`attribute of the function object to change this:
```
>>> libc.atof('2.71828')
-1783957616
>>> libc.atof.restype = ctypes.c_double
>>> libc.atof('2.71828')
2.71828
```
[`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") also provides a wrapper for Python's C API as the `ctypes.pythonapi` object. This object does *not* release the global interpreter lock before calling a function, because the lock must be held when calling into the interpreter's code. There's a `py_object()` type constructor that will create a [`PyObject *`](../c-api/structures.xhtml#c.PyObject "PyObject") pointer. A simple usage:
```
import ctypes
d = {}
ctypes.pythonapi.PyObject_SetItem(ctypes.py_object(d),
ctypes.py_object("abc"), ctypes.py_object(1))
# d is now {'abc', 1}.
```
Don't forget to use `py_object()`; if it's omitted you end up with a segmentation fault.
[`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") has been around for a while, but people still write and distribution hand-coded extension modules because you can't rely on [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") being present. Perhaps developers will begin to write Python wrappers atop a library accessed through [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") instead of extension modules, now that [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") is included with core Python.
參見
<http://starship.python.net/crew/theller/ctypes/>The ctypes web page, with a tutorial, reference, and FAQ.
The documentation for the [`ctypes`](../library/ctypes.xhtml#module-ctypes "ctypes: A foreign function library for Python.") module.
### The ElementTree package
A subset of Fredrik Lundh's ElementTree library for processing XML has been added to the standard library as `xml.etree`. The available modules are `ElementTree`, `ElementPath`, and `ElementInclude` from ElementTree 1.2.6. The `cElementTree` accelerator module is also included.
The rest of this section will provide a brief overview of using ElementTree. Full documentation for ElementTree is available at <http://effbot.org/zone/element-index.htm>.
ElementTree represents an XML document as a tree of element nodes. The text content of the document is stored as the `text` and `tail`attributes of (This is one of the major differences between ElementTree and the Document Object Model; in the DOM there are many different types of node, including `TextNode`.)
The most commonly used parsing function is `parse()`, that takes either a string (assumed to contain a filename) or a file-like object and returns an `ElementTree` instance:
```
from xml.etree import ElementTree as ET
tree = ET.parse('ex-1.xml')
feed = urllib.urlopen(
'http://planet.python.org/rss10.xml')
tree = ET.parse(feed)
```
Once you have an `ElementTree` instance, you can call its `getroot()`method to get the root `Element` node.
There's also an `XML()` function that takes a string literal and returns an `Element` node (not an `ElementTree`). This function provides a tidy way to incorporate XML fragments, approaching the convenience of an XML literal:
```
svg = ET.XML("""<svg width="10px" version="1.0">
</svg>""")
svg.set('height', '320px')
svg.append(elem1)
```
Each XML element supports some dictionary-like and some list-like access methods. Dictionary-like operations are used to access attribute values, and list-like operations are used to access child nodes.
運算
結果
`elem[n]`
Returns n'th child element.
`elem[m:n]`
Returns list of m'th through n'th child elements.
`len(elem)`
Returns number of child elements.
`list(elem)`
Returns list of child elements.
`elem.append(elem2)`
Adds *elem2* as a child.
`elem.insert(index, elem2)`
Inserts *elem2* at the specified location.
`del elem[n]`
Deletes n'th child element.
`elem.keys()`
Returns list of attribute names.
`elem.get(name)`
Returns value of attribute *name*.
`elem.set(name, value)`
Sets new value for attribute *name*.
`elem.attrib`
Retrieves the dictionary containing attributes.
`del elem.attrib[name]`
Deletes attribute *name*.
Comments and processing instructions are also represented as `Element`nodes. To check if a node is a comment or processing instructions:
```
if elem.tag is ET.Comment:
...
elif elem.tag is ET.ProcessingInstruction:
...
```
To generate XML output, you should call the `ElementTree.write()` method. Like `parse()`, it can take either a string or a file-like object:
```
# Encoding is US-ASCII
tree.write('output.xml')
# Encoding is UTF-8
f = open('output.xml', 'w')
tree.write(f, encoding='utf-8')
```
(Caution: the default encoding used for output is ASCII. For general XML work, where an element's name may contain arbitrary Unicode characters, ASCII isn't a very useful encoding because it will raise an exception if an element's name contains any characters with values greater than 127. Therefore, it's best to specify a different encoding such as UTF-8 that can handle any Unicode character.)
This section is only a partial description of the ElementTree interfaces. Please read the package's official documentation for more details.
參見
<http://effbot.org/zone/element-index.htm>Official documentation for ElementTree.
### The hashlib package
A new [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms.") module, written by Gregory P. Smith, has been added to replace the `md5` and `sha` modules. [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms.") adds support for additional secure hashes (SHA-224, SHA-256, SHA-384, and SHA-512). When available, the module uses OpenSSL for fast platform optimized implementations of algorithms.
The old `md5` and `sha` modules still exist as wrappers around hashlib to preserve backwards compatibility. The new module's interface is very close to that of the old modules, but not identical. The most significant difference is that the constructor functions for creating new hashing objects are named differently.
```
# Old versions
h = md5.md5()
h = md5.new()
# New version
h = hashlib.md5()
# Old versions
h = sha.sha()
h = sha.new()
# New version
h = hashlib.sha1()
# Hash that weren't previously available
h = hashlib.sha224()
h = hashlib.sha256()
h = hashlib.sha384()
h = hashlib.sha512()
# Alternative form
h = hashlib.new('md5') # Provide algorithm as a string
```
Once a hash object has been created, its methods are the same as before: `update(string)` hashes the specified string into the current digest state, `digest()` and `hexdigest()` return the digest value as a binary string or a string of hex digits, and [`copy()`](../library/copy.xhtml#module-copy "copy: Shallow and deep copy operations.") returns a new hashing object with the same digest state.
參見
The documentation for the [`hashlib`](../library/hashlib.xhtml#module-hashlib "hashlib: Secure hash and message digest algorithms.") module.
### The sqlite3 package
The pysqlite module (<http://www.pysqlite.org>), a wrapper for the SQLite embedded database, has been added to the standard library under the package name [`sqlite3`](../library/sqlite3.xhtml#module-sqlite3 "sqlite3: A DB-API 2.0 implementation using SQLite 3.x.").
SQLite 是一個C語言庫,它可以提供一種輕量級的基于磁盤的數據庫,這種數據庫不需要獨立的服務器進程,也允許需要使用一種非標準的 SQL 查詢語言來訪問它。一些應用程序可以使用 SQLite 作為內部數據存儲。可以用它來創建一個應用程序原型,然后再遷移到更大的數據庫,比如 PostgreSQL 或 Oracle。
pysqlite was written by Gerhard H?ring and provides a SQL interface compliant with the DB-API 2.0 specification described by [**PEP 249**](https://www.python.org/dev/peps/pep-0249) \[https://www.python.org/dev/peps/pep-0249\].
If you're compiling the Python source yourself, note that the source tree doesn't include the SQLite code, only the wrapper module. You'll need to have the SQLite libraries and headers installed before compiling Python, and the build process will compile the module when the necessary headers are available.
To use the module, you must first create a `Connection` object that represents the database. Here the data will be stored in the `/tmp/example` file:
```
conn = sqlite3.connect('/tmp/example')
```
你也可以使用 `:memory:` 來創建一個內存中的數據庫
Once you have a `Connection`, you can create a `Cursor` object and call its `execute()` method to perform SQL commands:
```
c = conn.cursor()
# Create table
c.execute('''create table stocks
(date text, trans text, symbol text,
qty real, price real)''')
# Insert a row of data
c.execute("""insert into stocks
values ('2006-01-05','BUY','RHAT',100,35.14)""")
```
Usually your SQL operations will need to use values from Python variables. You shouldn't assemble your query using Python's string operations because doing so is insecure; it makes your program vulnerable to an SQL injection attack.
Instead, use the DB-API's parameter substitution. Put `?` as a placeholder wherever you want to use a value, and then provide a tuple of values as the second argument to the cursor's `execute()` method. (Other database modules may use a different placeholder, such as `%s` or `:1`.) For example:
```
# Never do this -- insecure!
symbol = 'IBM'
c.execute("... where symbol = '%s'" % symbol)
# Do this instead
t = (symbol,)
c.execute('select * from stocks where symbol=?', t)
# Larger example
for t in (('2006-03-28', 'BUY', 'IBM', 1000, 45.00),
('2006-04-05', 'BUY', 'MSOFT', 1000, 72.00),
('2006-04-06', 'SELL', 'IBM', 500, 53.00),
):
c.execute('insert into stocks values (?,?,?,?,?)', t)
```
To retrieve data after executing a SELECT statement, you can either treat the cursor as an iterator, call the cursor's `fetchone()` method to retrieve a single matching row, or call `fetchall()` to get a list of the matching rows.
下面是一個使用迭代器形式的例子:
```
>>> c = conn.cursor()
>>> c.execute('select * from stocks order by price')
>>> for row in c:
... print row
...
(u'2006-01-05', u'BUY', u'RHAT', 100, 35.140000000000001)
(u'2006-03-28', u'BUY', u'IBM', 1000, 45.0)
(u'2006-04-06', u'SELL', u'IBM', 500, 53.0)
(u'2006-04-05', u'BUY', u'MSOFT', 1000, 72.0)
>>>
```
For more information about the SQL dialect supported by SQLite, see <https://www.sqlite.org>.
參見
<http://www.pysqlite.org>The pysqlite web page.
<https://www.sqlite.org>SQLite的主頁;它的文檔詳細描述了它所支持的 SQL 方言的語法和可用的數據類型。
The documentation for the [`sqlite3`](../library/sqlite3.xhtml#module-sqlite3 "sqlite3: A DB-API 2.0 implementation using SQLite 3.x.") module.
[**PEP 249**](https://www.python.org/dev/peps/pep-0249) \[https://www.python.org/dev/peps/pep-0249\] - DB-API 2.0 規范Marc-André Lemburg 寫的 PEP。
### The wsgiref package
The Web Server Gateway Interface (WSGI) v1.0 defines a standard interface between web servers and Python web applications and is described in [**PEP 333**](https://www.python.org/dev/peps/pep-0333) \[https://www.python.org/dev/peps/pep-0333\]. The [`wsgiref`](../library/wsgiref.xhtml#module-wsgiref "wsgiref: WSGI Utilities and Reference Implementation.") package is a reference implementation of the WSGI specification.
The package includes a basic HTTP server that will run a WSGI application; this server is useful for debugging but isn't intended for production use. Setting up a server takes only a few lines of code:
```
from wsgiref import simple_server
wsgi_app = ...
host = ''
port = 8000
httpd = simple_server.make_server(host, port, wsgi_app)
httpd.serve_forever()
```
參見
<http://www.wsgi.org>A central web site for WSGI-related resources.
[**PEP 333**](https://www.python.org/dev/peps/pep-0333) \[https://www.python.org/dev/peps/pep-0333\] - Python Web Server Gateway Interface v1.0PEP written by Phillip J. Eby.
## Build and C API Changes
Changes to Python's build process and to the C API include:
- The Python source tree was converted from CVS to Subversion, in a complex migration procedure that was supervised and flawlessly carried out by Martin von L?wis. The procedure was developed as [**PEP 347**](https://www.python.org/dev/peps/pep-0347) \[https://www.python.org/dev/peps/pep-0347\].
- Coverity, a company that markets a source code analysis tool called Prevent, provided the results of their examination of the Python source code. The analysis found about 60 bugs that were quickly fixed. Many of the bugs were refcounting problems, often occurring in error-handling code. See <https://scan.coverity.com> for the statistics.
- The largest change to the C API came from [**PEP 353**](https://www.python.org/dev/peps/pep-0353) \[https://www.python.org/dev/peps/pep-0353\], which modifies the interpreter to use a `Py_ssize_t` type definition instead of `int`. See the earlier section [PEP 353: Using ssize\_t as the index type](#pep-353) for a discussion of this change.
- The design of the bytecode compiler has changed a great deal, no longer generating bytecode by traversing the parse tree. Instead the parse tree is converted to an abstract syntax tree (or AST), and it is the abstract syntax tree that's traversed to produce the bytecode.
It's possible for Python code to obtain AST objects by using the [`compile()`](../library/functions.xhtml#compile "compile") built-in and specifying `_ast.PyCF_ONLY_AST` as the value of the *flags* parameter:
```
from _ast import PyCF_ONLY_AST
ast = compile("""a=0
for i in range(10):
a += i
""", "<string>", 'exec', PyCF_ONLY_AST)
assignment = ast.body[0]
for_loop = ast.body[1]
```
No official documentation has been written for the AST code yet, but [**PEP 339**](https://www.python.org/dev/peps/pep-0339) \[https://www.python.org/dev/peps/pep-0339\]discusses the design. To start learning about the code, read the definition of the various AST nodes in `Parser/Python.asdl`. A Python script reads this file and generates a set of C structure definitions in `Include/Python-ast.h`. The `PyParser_ASTFromString()` and `PyParser_ASTFromFile()`, defined in `Include/pythonrun.h`, take Python source as input and return the root of an AST representing the contents. This AST can then be turned into a code object by `PyAST_Compile()`. For more information, read the source code, and then ask questions on python-dev.
The AST code was developed under Jeremy Hylton's management, and implemented by (in alphabetical order) Brett Cannon, Nick Coghlan, Grant Edwards, John Ehresman, Kurt Kaiser, Neal Norwitz, Tim Peters, Armin Rigo, and Neil Schemenauer, plus the participants in a number of AST sprints at conferences such as PyCon.
- Evan Jones's patch to obmalloc, first described in a talk at PyCon DC 2005, was applied. Python 2.4 allocated small objects in 256K-sized arenas, but never freed arenas. With this patch, Python will free arenas when they're empty. The net effect is that on some platforms, when you allocate many objects, Python's memory usage may actually drop when you delete them and the memory may be returned to the operating system. (Implemented by Evan Jones, and reworked by Tim Peters.)
Note that this change means extension modules must be more careful when allocating memory. Python's API has many different functions for allocating memory that are grouped into families. For example, [`PyMem_Malloc()`](../c-api/memory.xhtml#c.PyMem_Malloc "PyMem_Malloc"), [`PyMem_Realloc()`](../c-api/memory.xhtml#c.PyMem_Realloc "PyMem_Realloc"), and [`PyMem_Free()`](../c-api/memory.xhtml#c.PyMem_Free "PyMem_Free") are one family that allocates raw memory, while [`PyObject_Malloc()`](../c-api/memory.xhtml#c.PyObject_Malloc "PyObject_Malloc"), [`PyObject_Realloc()`](../c-api/memory.xhtml#c.PyObject_Realloc "PyObject_Realloc"), and [`PyObject_Free()`](../c-api/memory.xhtml#c.PyObject_Free "PyObject_Free") are another family that's supposed to be used for creating Python objects.
Previously these different families all reduced to the platform's `malloc()` and `free()` functions. This meant it didn't matter if you got things wrong and allocated memory with the `PyMem()` function but freed it with the [`PyObject()`](../c-api/structures.xhtml#c.PyObject "PyObject") function. With 2.5's changes to obmalloc, these families now do different things and mismatches will probably result in a segfault. You should carefully test your C extension modules with Python 2.5.
- The built-in set types now have an official C API. Call [`PySet_New()`](../c-api/set.xhtml#c.PySet_New "PySet_New")and [`PyFrozenSet_New()`](../c-api/set.xhtml#c.PyFrozenSet_New "PyFrozenSet_New") to create a new set, [`PySet_Add()`](../c-api/set.xhtml#c.PySet_Add "PySet_Add") and [`PySet_Discard()`](../c-api/set.xhtml#c.PySet_Discard "PySet_Discard") to add and remove elements, and [`PySet_Contains()`](../c-api/set.xhtml#c.PySet_Contains "PySet_Contains")and [`PySet_Size()`](../c-api/set.xhtml#c.PySet_Size "PySet_Size") to examine the set's state. (Contributed by Raymond Hettinger.)
- C code can now obtain information about the exact revision of the Python interpreter by calling the [`Py_GetBuildInfo()`](../c-api/init.xhtml#c.Py_GetBuildInfo "Py_GetBuildInfo") function that returns a string of build information like this:
```
"trunk:45355:45356M, Apr 13 2006,
07:42:19"
```
. (Contributed by Barry Warsaw.)
- Two new macros can be used to indicate C functions that are local to the current file so that a faster calling convention can be used. `Py_LOCAL(type)` declares the function as returning a value of the specified *type* and uses a fast-calling qualifier. `Py_LOCAL_INLINE(type)` does the same thing and also requests the function be inlined. If `PY_LOCAL_AGGRESSIVE()` is defined before `python.h` is included, a set of more aggressive optimizations are enabled for the module; you should benchmark the results to find out if these optimizations actually make the code faster. (Contributed by Fredrik Lundh at the NeedForSpeed sprint.)
- `PyErr_NewException(name, base, dict)` can now accept a tuple of base classes as its *base* argument. (Contributed by Georg Brandl.)
- The `PyErr_Warn()` function for issuing warnings is now deprecated in favour of `PyErr_WarnEx(category, message, stacklevel)` which lets you specify the number of stack frames separating this function and the caller. A *stacklevel* of 1 is the function calling [`PyErr_WarnEx()`](../c-api/exceptions.xhtml#c.PyErr_WarnEx "PyErr_WarnEx"), 2 is the function above that, and so forth. (Added by Neal Norwitz.)
- The CPython interpreter is still written in C, but the code can now be compiled with a C++ compiler without errors. (Implemented by Anthony Baxter, Martin von L?wis, Skip Montanaro.)
- The `PyRange_New()` function was removed. It was never documented, never used in the core code, and had dangerously lax error checking. In the unlikely case that your extensions were using it, you can replace it by something like the following:
```
range = PyObject_CallFunction((PyObject*) &PyRange_Type, "lll",
start, stop, step);
```
### Port-Specific Changes
- MacOS X (10.3 and higher): dynamic loading of modules now uses the `dlopen()` function instead of MacOS-specific functions.
- MacOS X: an `--enable-universalsdk` switch was added to the **configure** script that compiles the interpreter as a universal binary able to run on both PowerPC and Intel processors. (Contributed by Ronald Oussoren; [bpo-2573](https://bugs.python.org/issue2573) \[https://bugs.python.org/issue2573\].)
- Windows: `.dll` is no longer supported as a filename extension for extension modules. `.pyd` is now the only filename extension that will be searched for.
## Porting to Python 2.5
This section lists previously described changes that may require changes to your code:
- ASCII is now the default encoding for modules. It's now a syntax error if a module contains string literals with 8-bit characters but doesn't have an encoding declaration. In Python 2.4 this triggered a warning, not a syntax error.
- Previously, the `gi_frame` attribute of a generator was always a frame object. Because of the [**PEP 342**](https://www.python.org/dev/peps/pep-0342) \[https://www.python.org/dev/peps/pep-0342\] changes described in section [PEP 342: New Generator Features](#pep-342), it's now possible for `gi_frame` to be `None`.
- A new warning, [`UnicodeWarning`](../library/exceptions.xhtml#UnicodeWarning "UnicodeWarning"), is triggered when you attempt to compare a Unicode string and an 8-bit string that can't be converted to Unicode using the default ASCII encoding. Previously such comparisons would raise a [`UnicodeDecodeError`](../library/exceptions.xhtml#UnicodeDecodeError "UnicodeDecodeError") exception.
- Library: the [`csv`](../library/csv.xhtml#module-csv "csv: Write and read tabular data to and from delimited files.") module is now stricter about multi-line quoted fields. If your files contain newlines embedded within fields, the input should be split into lines in a manner which preserves the newline characters.
- Library: the [`locale`](../library/locale.xhtml#module-locale "locale: Internationalization services.") module's [`format()`](../library/functions.xhtml#format "format") function's would previously accept any string as long as no more than one %char specifier appeared. In Python 2.5, the argument must be exactly one %char specifier with no surrounding text.
- Library: The [`pickle`](../library/pickle.xhtml#module-pickle "pickle: Convert Python objects to streams of bytes and back.") and `cPickle` modules no longer accept a return value of `None` from the [`__reduce__()`](../library/pickle.xhtml#object.__reduce__ "object.__reduce__") method; the method must return a tuple of arguments instead. The modules also no longer accept the deprecated *bin* keyword parameter.
- Library: The `SimpleXMLRPCServer` and `DocXMLRPCServer` classes now have a `rpc_paths` attribute that constrains XML-RPC operations to a limited set of URL paths; the default is to allow only `'/'` and `'/RPC2'`. Setting `rpc_paths` to `None` or an empty tuple disables this path checking.
- C API: Many functions now use `Py_ssize_t` instead of `int` to allow processing more data on 64-bit machines. Extension code may need to make the same change to avoid warnings and to support 64-bit machines. See the earlier section [PEP 353: Using ssize\_t as the index type](#pep-353) for a discussion of this change.
- C API: The obmalloc changes mean that you must be careful to not mix usage of the `PyMem_*()` and `PyObject_*()` families of functions. Memory allocated with one family's `*_Malloc()` must be freed with the corresponding family's `*_Free()` function.
## Acknowledgements
The author would like to thank the following people for offering suggestions, corrections and assistance with various drafts of this article: Georg Brandl, Nick Coghlan, Phillip J. Eby, Lars Gust?bel, Raymond Hettinger, Ralf W. Grosse-Kunstleve, Kent Johnson, Iain Lowe, Martin von L?wis, Fredrik Lundh, Andrew McNamara, Skip Montanaro, Gustavo Niemeyer, Paul Prescod, James Pryor, Mike Rovner, Scott Weikart, Barry Warsaw, Thomas Wouters.
### 導航
- [索引](../genindex.xhtml "總目錄")
- [模塊](../py-modindex.xhtml "Python 模塊索引") |
- [下一頁](2.4.xhtml "What's New in Python 2.4") |
- [上一頁](2.6.xhtml "Python 2.6 有什么新變化") |
- 
- [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