[Python-checkins] bpo-39009: Fix typo in test__locale (GH-17544)

Pablo Galindo webhook-mailer at python.org
Mon Dec 9 17:16:05 EST 2019


https://github.com/python/cpython/commit/2ad7651c00c9b58b2b8b9e3687c82c203ece576c
commit: 2ad7651c00c9b58b2b8b9e3687c82c203ece576c
branch: master
author: Tim Gates <tim.gates at iress.com>
committer: Pablo Galindo <Pablogsal at gmail.com>
date: 2019-12-09T22:16:00Z
summary:

bpo-39009: Fix typo in test__locale (GH-17544)

files:
M Lib/test/test__locale.py

diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py
index ab4e24796188c..cda0ee91b700f 100644
--- a/Lib/test/test__locale.py
+++ b/Lib/test/test__locale.py
@@ -30,7 +30,7 @@ def setUpModule():
     global candidate_locales
     # Issue #13441: Skip some locales (e.g. cs_CZ and hu_HU) on Solaris to
     # workaround a mbstowcs() bug. For example, on Solaris, the hu_HU locale uses
-    # the locale encoding ISO-8859-2, the thousauds separator is b'\xA0' and it is
+    # the locale encoding ISO-8859-2, the thousands separator is b'\xA0' and it is
     # decoded as U+30000020 (an invalid character) by mbstowcs().
     if sys.platform == 'sunos5':
         old_locale = locale.setlocale(locale.LC_ALL)



More information about the Python-checkins mailing list