We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dac53ae commit 07e9ef6Copy full SHA for 07e9ef6
1 file changed
test/test_output.py
@@ -1428,6 +1428,12 @@ def test_floatfmt_multi():
1428
assert_equal(expected, result)
1429
1430
1431
+def test_floatfmt_precision():
1432
+ result = tabulate([[99999998999.999980]], floatfmt=".6f", tablefmt="plain")
1433
+ expected = "99999998999.999980"
1434
+ assert_equal(expected, result)
1435
+
1436
1437
def test_colalign_multi():
1438
"Output: string columns with custom colalign"
1439
result = tabulate(
0 commit comments