We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80f65c commit 2d93bf3Copy full SHA for 2d93bf3
extra_tests/snippets/builtin_format.py
@@ -133,3 +133,9 @@ def test_zero_padding():
133
assert f"{3.1415:#.2}" == "3.1"
134
assert f"{3.1415:#.3}" == "3.14"
135
assert f"{3.1415:#.4}" == "3.142"
136
+
137
+# test issue 4558
138
+x = 123456789012345678901234567890
139
+for i in range(0, 30):
140
+ format(x, ',')
141
+ x = x // 10
extra_tests/snippets/test_issue_4588.py
0 commit comments