Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
3a0e1835563e6acfa3059a7d9777260cb2b6717d
/
.
/
Lib
/
profiling
/
sampling
/
_format_utils.py
blob: 237a4f4186bf2061dd50d784bf9a1f1759ffc502 [
file
] [
log
] [
blame
]
import
locale
def
fmt
(
value
:
int
|
float
,
decimals
:
int
=
1
)
->
str
:
return
locale
.
format_string
(
f
'%.{decimals}f'
,
value
,
grouping
=
True
)