Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RT-Thread/env-windows
/ _isfinite
Function
_isfinite
tools/python-3.11.9-amd64/Lib/statistics.py:249–253 ·
view source on GitHub ↗
(x)
Source
from the content-addressed store, hash-verified
247
248
249
def
_isfinite(x):
250
try
:
251
return
x.is_finite()
# Likely a Decimal.
252
except
AttributeError:
253
return
math.isfinite(x)
# Coerces to float first.
254
255
256
def
_coerce(T, S):
Callers
4
_sum
Function · 0.85
_ss
Function · 0.85
_exact_ratio
Function · 0.85
choices
Method · 0.85
Calls
1
is_finite
Method · 0.45
Tested by
no test coverage detected