Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
address review: fix .6_f test (enlarge integer part)
  • Loading branch information
skirpichev committed Jul 3, 2025
commit 0353e990b27cc07f168f2171ec4e17713c59d002
2 changes: 1 addition & 1 deletion Lib/test/test_decimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def test_formatting(self):
# and now for something completely different...
('.,', '1.23456789', '1.234,567,89'),
('._', '1.23456789', '1.234_567_89'),
('.6_f', '1.23456789', '1.234_568'),
('.6_f', '12345.23456789', '12345.234_568'),
(',._%', '123.456789', '12,345.678_9%'),
Comment thread
skirpichev marked this conversation as resolved.
(',._e', '123456', '1.234_56e+5'),
(',.4_e', '123456', '1.234_6e+5'),
Expand Down
Loading