summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_types.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_types.py')
-rw-r--r--Lib/test/test_types.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py
index 5d41e1b..230b102 100644
--- a/Lib/test/test_types.py
+++ b/Lib/test/test_types.py
@@ -350,6 +350,9 @@ class TypesTests(unittest.TestCase):
test(1234567, ',', '1,234,567')
test(-1234567, ',', '-1,234,567')
+ # issue 5782, commas with no specifier type
+ test(1234, '010,', '00,001,234')
+
# make sure these are errors
# precision disallowed
@@ -567,6 +570,9 @@ class TypesTests(unittest.TestCase):
test(-1234.12341234, '013f', '-01234.123412')
test(-123456.12341234, '011.2f', '-0123456.12')
+ # issue 5782, commas with no specifier type
+ test(1.2, '010,.2', '0,000,001.2')
+
# 0 padding with commas
test(1234., '011,f', '1,234.000000')
test(1234., '012,f', '1,234.000000')