You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> f"{0.1234567891:010.6,f}"# should be '00.123,457'
'000.123,457'
>>> len(_)
11
>>> f"{0.1234567891:010.7,f}"# should be '0.123,456,8'
'00.123,456,8'
>>> len(_)
12
Bug report
Bug description:
Examples:
CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
Linked PRs