diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2010-05-08 01:35:55 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2010-05-08 01:35:55 (GMT) |
commit | badc709847379cf27785af2d4c1a05c4e27010c2 (patch) | |
tree | 78f71349d33932fb32098bd3af454fea457a4e55 /Doc/whatsnew | |
parent | 85fffc368d179418757022e059140f8fbebd1e27 (diff) | |
download | cpython-badc709847379cf27785af2d4c1a05c4e27010c2.zip cpython-badc709847379cf27785af2d4c1a05c4e27010c2.tar.gz cpython-badc709847379cf27785af2d4c1a05c4e27010c2.tar.bz2 |
Get accents correct
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 2a48764..d2f3b32 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -6,8 +6,6 @@ :Release: |release| :Date: |today| -.. Fix accents on Kristjan Valur Jonsson, Fuerstenau - .. Big jobs: pep 391 example .. hyperlink all the methods & functions. @@ -911,7 +909,7 @@ changes, or look through the Subversion logs for all the details. * The :mod:`bz2` module's :class:`~bz2.BZ2File` now supports the context management protocol, so you can write ``with bz2.BZ2File(...) as f: ...``. - (Contributed by Hagen Fuerstenau; :issue:`3860`.) + (Contributed by Hagen Fürstenau; :issue:`3860`.) * New class: the :class:`~collections.Counter` class in the :mod:`collections` module is useful for tallying data. :class:`~collections.Counter` instances @@ -1125,7 +1123,7 @@ changes, or look through the Subversion logs for all the details. * The :mod:`gzip` module's :class:`~gzip.GzipFile` now supports the context management protocol, so you can write ``with gzip.GzipFile(...) as f: ...`` - (contributed by Hagen Fuerstenau; :issue:`3860`), and it now implements + (contributed by Hagen Fürstenau; :issue:`3860`), and it now implements the :class:`io.BufferedIOBase` ABC, so you can wrap it with :class:`io.BufferedReader` for faster processing (contributed by Nir Aides; :issue:`7471`). @@ -1145,7 +1143,7 @@ changes, or look through the Subversion logs for all the details. * The default :class:`~httplib.HTTPResponse` class used by the :mod:`httplib` module now supports buffering, resulting in much faster reading of HTTP responses. - (Contributed by Kristjan Valur Jonsson; :issue:`4879`.) + (Contributed by Kristján Valur Jónsson; :issue:`4879`.) The :class:`~httplib.HTTPConnection` and :class:`~httplib.HTTPSConnection` classes now support a *source_address* parameter, a ``(host, port)`` 2-tuple @@ -1358,7 +1356,7 @@ changes, or look through the Subversion logs for all the details. a timeout in seconds that will be applied to the request socket; if no request is received within that time, :meth:`handle_timeout` will be called and :meth:`handle_request` will return. - (Contributed by Kristjan Valur Jonsson; :issue:`6192` and :issue:`6267`.) + (Contributed by Kristján Valur Jónsson; :issue:`6192` and :issue:`6267`.) * The XML-RPC client and server, provided by the :mod:`xmlrpclib` and :mod:`SimpleXMLRPCServer` modules, have improved performance by @@ -1367,7 +1365,7 @@ changes, or look through the Subversion logs for all the details. controlled by the :attr:`encode_threshold` attribute of :class:`SimpleXMLRPCRequestHandler`, which contains a size in bytes; responses larger than this will be compressed. - (Contributed by Kristjan Valur Jonsson; :issue:`6267`.) + (Contributed by Kristján Valur Jónsson; :issue:`6267`.) * Updated module: the :mod:`sqlite3` module has been updated to @@ -1538,7 +1536,7 @@ changes, or look through the Subversion logs for all the details. controlled by the :attr:`encode_threshold` attribute of :class:`SimpleXMLRPCRequestHandler`, which contains a size in bytes; responses larger than this will be compressed. - (Contributed by Kristjan Valur Jonsson; :issue:`6267`.) + (Contributed by Kristján Valur Jónsson; :issue:`6267`.) * The :mod:`zipfile` module's :class:`~zipfile.ZipFile` now supports the context management protocol, so you can write ``with zipfile.ZipFile(...) as f: ...``. @@ -1944,7 +1942,7 @@ Changes to Python's build process and to the C API include: * :cfunc:`Py_AddPendingCall` is now thread-safe, letting any worker thread submit notifications to the main Python thread. This is particularly useful for asynchronous IO operations. - (Contributed by Kristjan Valur Jonsson; :issue:`4293`.) + (Contributed by Kristján Valur Jónsson; :issue:`4293`.) * New function: :cfunc:`PyCode_NewEmpty` creates an empty code object; only the filename, function name, and first line number are required. @@ -2140,7 +2138,7 @@ Port-Specific Changes: Windows * The new :cfunc:`_beginthreadex` API is used to start threads, and the native thread-local storage functions are now used. - (Contributed by Kristjan Valur Jonsson; :issue:`3582`.) + (Contributed by Kristján Valur Jónsson; :issue:`3582`.) * The :func:`os.kill` function now works on Windows. The signal value can be the constants :const:`CTRL_C_EVENT`, |