Skip to content

Commit badc709

Browse files
committed
Get accents correct
1 parent 85fffc3 commit badc709

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

Doc/whatsnew/2.7.rst

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
:Release: |release|
77
:Date: |today|
88

9-
.. Fix accents on Kristjan Valur Jonsson, Fuerstenau
10-
119
.. Big jobs: pep 391 example
1210
1311
.. hyperlink all the methods & functions.
@@ -911,7 +909,7 @@ changes, or look through the Subversion logs for all the details.
911909

912910
* The :mod:`bz2` module's :class:`~bz2.BZ2File` now supports the context
913911
management protocol, so you can write ``with bz2.BZ2File(...) as f: ...``.
914-
(Contributed by Hagen Fuerstenau; :issue:`3860`.)
912+
(Contributed by Hagen Fürstenau; :issue:`3860`.)
915913

916914
* New class: the :class:`~collections.Counter` class in the :mod:`collections`
917915
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.
11251123

11261124
* The :mod:`gzip` module's :class:`~gzip.GzipFile` now supports the context
11271125
management protocol, so you can write ``with gzip.GzipFile(...) as f: ...``
1128-
(contributed by Hagen Fuerstenau; :issue:`3860`), and it now implements
1126+
(contributed by Hagen Fürstenau; :issue:`3860`), and it now implements
11291127
the :class:`io.BufferedIOBase` ABC, so you can wrap it with
11301128
:class:`io.BufferedReader` for faster processing
11311129
(contributed by Nir Aides; :issue:`7471`).
@@ -1145,7 +1143,7 @@ changes, or look through the Subversion logs for all the details.
11451143

11461144
* The default :class:`~httplib.HTTPResponse` class used by the :mod:`httplib` module now
11471145
supports buffering, resulting in much faster reading of HTTP responses.
1148-
(Contributed by Kristjan Valur Jonsson; :issue:`4879`.)
1146+
(Contributed by Kristján Valur Jónsson; :issue:`4879`.)
11491147

11501148
The :class:`~httplib.HTTPConnection` and :class:`~httplib.HTTPSConnection` classes
11511149
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.
13581356
a timeout in seconds that will be applied to the request socket; if
13591357
no request is received within that time, :meth:`handle_timeout`
13601358
will be called and :meth:`handle_request` will return.
1361-
(Contributed by Kristjan Valur Jonsson; :issue:`6192` and :issue:`6267`.)
1359+
(Contributed by Kristján Valur Jónsson; :issue:`6192` and :issue:`6267`.)
13621360

13631361
* The XML-RPC client and server, provided by the :mod:`xmlrpclib` and
13641362
:mod:`SimpleXMLRPCServer` modules, have improved performance by
@@ -1367,7 +1365,7 @@ changes, or look through the Subversion logs for all the details.
13671365
controlled by the :attr:`encode_threshold` attribute of
13681366
:class:`SimpleXMLRPCRequestHandler`, which contains a size in bytes;
13691367
responses larger than this will be compressed.
1370-
(Contributed by Kristjan Valur Jonsson; :issue:`6267`.)
1368+
(Contributed by Kristján Valur Jónsson; :issue:`6267`.)
13711369

13721370

13731371
* 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.
15381536
controlled by the :attr:`encode_threshold` attribute of
15391537
:class:`SimpleXMLRPCRequestHandler`, which contains a size in bytes;
15401538
responses larger than this will be compressed.
1541-
(Contributed by Kristjan Valur Jonsson; :issue:`6267`.)
1539+
(Contributed by Kristján Valur Jónsson; :issue:`6267`.)
15421540

15431541
* The :mod:`zipfile` module's :class:`~zipfile.ZipFile` now supports the context
15441542
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:
19441942
* :cfunc:`Py_AddPendingCall` is now thread-safe, letting any
19451943
worker thread submit notifications to the main Python thread. This
19461944
is particularly useful for asynchronous IO operations.
1947-
(Contributed by Kristjan Valur Jonsson; :issue:`4293`.)
1945+
(Contributed by Kristján Valur Jónsson; :issue:`4293`.)
19481946

19491947
* New function: :cfunc:`PyCode_NewEmpty` creates an empty code object;
19501948
only the filename, function name, and first line number are required.
@@ -2140,7 +2138,7 @@ Port-Specific Changes: Windows
21402138

21412139
* The new :cfunc:`_beginthreadex` API is used to start threads, and
21422140
the native thread-local storage functions are now used.
2143-
(Contributed by Kristjan Valur Jonsson; :issue:`3582`.)
2141+
(Contributed by Kristján Valur Jónsson; :issue:`3582`.)
21442142

21452143
* The :func:`os.kill` function now works on Windows. The signal value
21462144
can be the constants :const:`CTRL_C_EVENT`,

0 commit comments

Comments
 (0)