diff options
author | Tim Gates <tim.gates@iress.com> | 2019-12-09 22:16:01 (GMT) |
---|---|---|
committer | Pablo Galindo <Pablogsal@gmail.com> | 2019-12-09 22:16:00 (GMT) |
commit | 2ad7651c00c9b58b2b8b9e3687c82c203ece576c (patch) | |
tree | 1ebeb8f5fd4eba4b7d5e36351de5857c9112ab22 | |
parent | a2ff283d519be11f50220885ddc4d029eb8cb0a0 (diff) | |
download | cpython-2ad7651c00c9b58b2b8b9e3687c82c203ece576c.zip cpython-2ad7651c00c9b58b2b8b9e3687c82c203ece576c.tar.gz cpython-2ad7651c00c9b58b2b8b9e3687c82c203ece576c.tar.bz2 |
bpo-39009: Fix typo in test__locale (GH-17544)
-rw-r--r-- | Lib/test/test__locale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index ab4e247..cda0ee9 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) |