Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fbd4f80

Browse files
committed
Issue #15444: Use proper spelling for non-ASCII contributor names.
Patch by Serhiy Storchaka.
1 parent cc98887 commit fbd4f80

11 files changed

Lines changed: 24 additions & 21 deletions

File tree

Doc/c-api/unicode.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Unicode Objects and Codecs
66
--------------------------
77

8-
.. sectionauthor:: Marc-Andre Lemburg <[email protected]>
8+
.. sectionauthor:: Marc-André Lemburg <[email protected]>
99

1010
Unicode Objects
1111
^^^^^^^^^^^^^^^

Doc/library/codecs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
.. module:: codecs
55
:synopsis: Encode and decode data and streams.
6-
.. moduleauthor:: Marc-Andre Lemburg <[email protected]>
7-
.. sectionauthor:: Marc-Andre Lemburg <[email protected]>
6+
.. moduleauthor:: Marc-André Lemburg <[email protected]>
7+
.. sectionauthor:: Marc-André Lemburg <[email protected]>
88
.. sectionauthor:: Martin v. Löwis <[email protected]>
99

1010

Doc/library/platform.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
.. module:: platform
55
:synopsis: Retrieves as much platform identifying data as possible.
6-
.. moduleauthor:: Marc-Andre Lemburg <[email protected]>
6+
.. moduleauthor:: Marc-André Lemburg <[email protected]>
77
.. sectionauthor:: Bjorn Pettersen <[email protected]>
88

99
**Source code:** :source:`Lib/platform.py`

Doc/library/unicodedata.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
.. module:: unicodedata
55
:synopsis: Access the Unicode Database.
6-
.. moduleauthor:: Marc-Andre Lemburg <[email protected]>
7-
.. sectionauthor:: Marc-Andre Lemburg <[email protected]>
6+
.. moduleauthor:: Marc-André Lemburg <[email protected]>
7+
.. sectionauthor:: Marc-André Lemburg <[email protected]>
88
.. sectionauthor:: Martin v. Löwis <[email protected]>
99

1010

Doc/tutorial/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ The built-in function :func:`len` returns the length of a string::
413413
About Unicode
414414
-------------
415415

416-
.. sectionauthor:: Marc-Andre Lemburg <[email protected]>
416+
.. sectionauthor:: Marc-André Lemburg <[email protected]>
417417

418418

419419
Starting with Python 3.0 all strings support Unicode (see

Doc/whatsnew/2.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ complete list of changes, or look through the CVS logs for all the details.
12791279
interface, accessed only by :mod:`atexit`.
12801280

12811281
* The :mod:`tarfile` module now generates GNU-format tar files by default.
1282-
(Contributed by Lars Gustaebel.)
1282+
(Contributed by Lars Gustäbel.)
12831283

12841284
* The :mod:`threading` module now has an elegantly simple way to support
12851285
thread-local data. The module contains a :class:`local` class whose attribute

Doc/whatsnew/2.6.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ item for each change.
175175

176176
Hosting of the Python bug tracker is kindly provided by
177177
`Upfront Systems <http://www.upfrontsystems.co.za/>`__
178-
of Stellenbosch, South Africa. Martin von Loewis put a
178+
of Stellenbosch, South Africa. Martin von Löwis put a
179179
lot of effort into importing existing bugs and patches from
180180
SourceForge; his scripts for this import operation are at
181181
http://svn.python.org/view/tracker/importer/ and may be useful to
@@ -193,7 +193,7 @@ other projects wishing to move from SourceForge to Roundup.
193193
Roundup downloads and documentation.
194194

195195
http://svn.python.org/view/tracker/importer/
196-
Martin von Loewis's conversion scripts.
196+
Martin von Löwis's conversion scripts.
197197

198198
New Documentation Format: reStructuredText Using Sphinx
199199
-----------------------------------------------------------
@@ -1100,7 +1100,7 @@ their own implementations of buffering and text I/O.
11001100
:pep:`3116` - New I/O
11011101
PEP written by Daniel Stutzbach, Mike Verdone, and Guido van Rossum.
11021102
Code by Guido van Rossum, Georg Brandl, Walter Doerwald,
1103-
Jeremy Hylton, Martin von Loewis, Tony Lownds, and others.
1103+
Jeremy Hylton, Martin von Löwis, Tony Lownds, and others.
11041104

11051105
.. ======================================================================
11061106
@@ -1774,7 +1774,7 @@ The *encoding* part specifies the encoding's name, e.g. ``utf-8`` or
17741774
``latin-1``; the optional *errorhandler* part specifies
17751775
what to do with characters that can't be handled by the encoding,
17761776
and should be one of "error", "ignore", or "replace". (Contributed
1777-
by Martin von Loewis.)
1777+
by Martin von Löwis.)
17781778

17791779
.. ======================================================================
17801780
@@ -1792,7 +1792,7 @@ changes, or look through the Subversion logs for all the details.
17921792
were applied. (Maintained by Josiah Carlson; see :issue:`1736190` for
17931793
one patch.)
17941794

1795-
* The :mod:`bsddb` module also has a new maintainer, Jesús Cea Avion, and the package
1795+
* The :mod:`bsddb` module also has a new maintainer, Jesús Cea Avión, and the package
17961796
is now available as a standalone package. The web page for the package is
17971797
`www.jcea.es/programacion/pybsddb.htm
17981798
<http://www.jcea.es/programacion/pybsddb.htm>`__.
@@ -2384,7 +2384,7 @@ changes, or look through the Subversion logs for all the details.
23842384
(Contributed by Pedro Werneck and Jeffrey Yasskin;
23852385
:issue:`742598`, :issue:`1193577`.)
23862386

2387-
* The :mod:`sqlite3` module, maintained by Gerhard Haering,
2387+
* The :mod:`sqlite3` module, maintained by Gerhard Häring,
23882388
has been updated from version 2.3.2 in Python 2.5 to
23892389
version 2.4.1.
23902390

@@ -2597,7 +2597,7 @@ changes, or look through the Subversion logs for all the details.
25972597

25982598
* The Unicode database provided by the :mod:`unicodedata` module
25992599
has been updated to version 5.1.0. (Updated by
2600-
Martin von Loewis; :issue:`3811`.)
2600+
Martin von Löwis; :issue:`3811`.)
26012601

26022602
* The :mod:`warnings` module's :func:`formatwarning` and :func:`showwarning`
26032603
gained an optional *line* argument that can be used to supply the
@@ -3104,7 +3104,7 @@ Port-Specific Changes: Windows
31043104
:file:`PCbuild` directory supports cross compilation for X64, debug
31053105
builds and Profile Guided Optimization (PGO). PGO builds are roughly
31063106
10% faster than normal builds. (Contributed by Christian Heimes
3107-
with help from Amaury Forgeot d'Arc and Martin von Loewis.)
3107+
with help from Amaury Forgeot d'Arc and Martin von Löwis.)
31083108

31093109
* The :mod:`msvcrt` module now supports
31103110
both the normal and wide char variants of the console I/O

Doc/whatsnew/2.7.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ changes, or look through the Subversion logs for all the details.
14341434
* The :mod:`signal` module no longer re-installs the signal handler
14351435
unless this is truly necessary, which fixes a bug that could make it
14361436
impossible to catch the EINTR signal robustly. (Fixed by
1437-
Charles-Francois Natali; :issue:`8354`.)
1437+
Charles-François Natali; :issue:`8354`.)
14381438

14391439
* New functions: in the :mod:`site` module, three new functions
14401440
return various site- and user-specific paths.
@@ -2331,7 +2331,7 @@ Other Changes and Fixes
23312331
attributes of the resulting code objects are overwritten when the
23322332
original filename is obsolete. This can happen if the file has been
23332333
renamed, moved, or is accessed through different paths. (Patch by
2334-
Ziga Seilnacht and Jean-Paul Calderone; :issue:`1180193`.)
2334+
Žiga Seilnacht and Jean-Paul Calderone; :issue:`1180193`.)
23352335

23362336
* The :file:`regrtest.py` script now takes a :option:`--randseed=`
23372337
switch that takes an integer that will be used as the random seed

Misc/ACKS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ Federico Schwindt
855855
Steven Scott
856856
Barry Scott
857857
Nick Seidenman
858-
Žiga Seilnach
858+
Žiga Seilnacht
859859
Yury Selivanov
860860
Fred Sells
861861
Jiwon Seo

Misc/HISTORY

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2676,7 +2676,7 @@ Core and builtins
26762676
subclasses of str always behaved. int/long/float, conversion of an instance
26772677
to the base class has been moved to the proper nb_* magic slot and out of
26782678
PyNumber_*().
2679-
Thanks Walter D�rwald.
2679+
Thanks Walter Dörwald.
26802680

26812681
- Descriptors defined in C with a PyGetSetDef structure, where the setter is
26822682
NULL, now raise an AttributeError when attempting to set or delete the
@@ -13998,7 +13998,7 @@ instead of raising an exception on errors; this makes the logic
1399813998
required for asynchronous connects simpler and more efficient.
1399913999

1400014000
- New "locale" module with (still experimental) interface to the
14001-
standard C library locale interface, courtesy Martin von Loewis. This
14001+
standard C library locale interface, courtesy Martin von Löwis. This
1400214002
does not repeat my mistake in 1.5a4 of always calling
1400314003
setlocale(LC_ALL, ""). In fact, we've pretty much decided that
1400414004
Python's standard numerical formatting operations should always use

0 commit comments

Comments
 (0)