summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-08-11 14:51:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-08-11 14:51:50 (GMT)
commitfbd4f80979c26f0cf6a3a8af9d8e4131cfeab5a7 (patch)
treee9ce6685e281eec26bbacd673ee1b1a4e04c8424 /Misc
parentcc98887e457c293c7be3b9cd9599c5334a97064b (diff)
downloadcpython-fbd4f80979c26f0cf6a3a8af9d8e4131cfeab5a7.zip
cpython-fbd4f80979c26f0cf6a3a8af9d8e4131cfeab5a7.tar.gz
cpython-fbd4f80979c26f0cf6a3a8af9d8e4131cfeab5a7.tar.bz2
Issue #15444: Use proper spelling for non-ASCII contributor names.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS2
-rw-r--r--Misc/HISTORY4
-rw-r--r--Misc/NEWS3
3 files changed, 6 insertions, 3 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 36dc7fe..c3c59de 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -855,7 +855,7 @@ Federico Schwindt
Steven Scott
Barry Scott
Nick Seidenman
-Žiga Seilnach
+Žiga Seilnacht
Yury Selivanov
Fred Sells
Jiwon Seo
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 57ae98d..a7fba2b 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -2676,7 +2676,7 @@ Core and builtins
subclasses of str always behaved. int/long/float, conversion of an instance
to the base class has been moved to the proper nb_* magic slot and out of
PyNumber_*().
- Thanks Walter D�rwald.
+ Thanks Walter Dörwald.
- Descriptors defined in C with a PyGetSetDef structure, where the setter is
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
required for asynchronous connects simpler and more efficient.
- New "locale" module with (still experimental) interface to the
-standard C library locale interface, courtesy Martin von Loewis. This
+standard C library locale interface, courtesy Martin von Löwis. This
does not repeat my mistake in 1.5a4 of always calling
setlocale(LC_ALL, ""). In fact, we've pretty much decided that
Python's standard numerical formatting operations should always use
diff --git a/Misc/NEWS b/Misc/NEWS
index 5a4d71b..409d3ca 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -468,6 +468,9 @@ Build
Documentation
-------------
+- Issue #15444: Use proper spelling for non-ASCII contributor names. Patch
+ by Serhiy Storchaka.
+
- Issue 15482: Properly document the default 'level' value for __import__()
while warning about using negative values.