summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-28 19:17:51 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-28 19:17:51 (GMT)
commitbe8d06f5234ace688520bfea9139e68214788910 (patch)
treef478b190be5b947c2ccad48bf148a657a52a8267 /Misc
parentb7374d0271765f0abeb92f8d87b0ce9b0c2be3df (diff)
downloadcpython-be8d06f5234ace688520bfea9139e68214788910.zip
cpython-be8d06f5234ace688520bfea9139e68214788910.tar.gz
cpython-be8d06f5234ace688520bfea9139e68214788910.tar.bz2
Issue #18216: gettext now raises an error when a .mo file has an unsupported major version number. Patch by Aaron Hill.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0bdaab6..3d49e56 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -567,6 +567,7 @@ Kevan Heydon
Wouter van Heyst
Kelsey Hightower
Jason Hildebrand
+Aaron Hill
Richie Hindle
Konrad Hinsen
David Hobley
diff --git a/Misc/NEWS b/Misc/NEWS
index 0fbe673..b27e936 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -181,6 +181,9 @@ Core and Builtins
Library
-------
+- Issue #18216: gettext now raises an error when a .mo file has an
+ unsupported major version number. Patch by Aaron Hill.
+
- Issue #13918: Provide a locale.delocalize() function which can remove
locale-specific number formatting from a string representing a number,
without then converting it to a specific type. Patch by Cédric Krier.