summaryrefslogtreecommitdiff
path: root/Lib/test/test__locale.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test__locale.py')
-rw-r--r--Lib/test/test__locale.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py
index cda0ee91b7..59a00bad7d 100644
--- a/Lib/test/test__locale.py
+++ b/Lib/test/test__locale.py
@@ -72,6 +72,10 @@ known_numerics = {
'ps_AF': ('\u066b', '\u066c'),
}
+if sys.platform == 'win32':
+ # ps_AF doesn't work on Windows: see bpo-38324 (msg361830)
+ del known_numerics['ps_AF']
+
class _LocaleTests(unittest.TestCase):
def setUp(self):