MCPcopy 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
249def _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
256def _coerce(T, S):

Callers 4

_sumFunction · 0.85
_ssFunction · 0.85
_exact_ratioFunction · 0.85
choicesMethod · 0.85

Calls 1

is_finiteMethod · 0.45

Tested by

no test coverage detected