summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/basics/string_format.py6
-rw-r--r--tests/basics/string_format_modulo.py3
-rw-r--r--tests/float/string_format.py3
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/basics/string_format.py b/tests/basics/string_format.py
index 8b2592406..e8600f583 100644
--- a/tests/basics/string_format.py
+++ b/tests/basics/string_format.py
@@ -63,6 +63,12 @@ test("{:>20}", "foo")
test("{:^20}", "foo")
test("{:<20}", "foo")
+# formatting bool as int
+test('{:d}', False)
+test('{:20}', False)
+test('{:d}', True)
+test('{:20}', True)
+
# nested format specifiers
print("{:{}}".format(123, '#>10'))
print("{:{}{}{}}".format(123, '#', '>', '10'))
diff --git a/tests/basics/string_format_modulo.py b/tests/basics/string_format_modulo.py
index 021b5f08d..01f8e7ed2 100644
--- a/tests/basics/string_format_modulo.py
+++ b/tests/basics/string_format_modulo.py
@@ -40,6 +40,9 @@ print("%c" % 'a')
print("%10s" % 'abc')
print("%-10s" % 'abc')
+print('%c' % False)
+print('%c' % True)
+
# Should be able to print dicts; in this case they aren't used
# to lookup keywords in formats like %(foo)s
print('%s' % {})
diff --git a/tests/float/string_format.py b/tests/float/string_format.py
index 6fb11c35a..54f127077 100644
--- a/tests/float/string_format.py
+++ b/tests/float/string_format.py
@@ -24,6 +24,9 @@ test("{:06e}", float("inf"))
test("{:06e}", float("-inf"))
test("{:06e}", float("nan"))
+test('{:f}', False)
+test('{:f}', True)
+
# The following fails right now
#test("{:10.1}", 0.0)