MCPcopy Index your code
hub / github.com/RustPython/RustPython / Etiny

Method Etiny

Lib/_pydecimal.py:4045–4047  ·  view source on GitHub ↗

Returns Etiny (= Emin - prec + 1)

(self)

Source from the content-addressed store, hash-verified

4043 __hash__ = None
4044
4045 def Etiny(self):
4046 """Returns Etiny (= Emin - prec + 1)"""
4047 return int(self.Emin - self.prec + 1)
4048
4049 def Etop(self):
4050 """Returns maximum exponent (= Emax - prec + 1)"""

Callers 8

__truediv__Method · 0.80
_fixMethod · 0.80
__pow__Method · 0.80
quantizeMethod · 0.80
expMethod · 0.80
next_minusMethod · 0.80
next_plusMethod · 0.80
test_c_valid_contextMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_c_valid_contextMethod · 0.64