MCPcopy Index your code
hub / github.com/python/cpython / Etiny

Method Etiny

Lib/_pydecimal.py:4048–4050  ·  view source on GitHub ↗

Returns Etiny (= Emin - prec + 1)

(self)

Source from the content-addressed store, hash-verified

4046 __hash__ = None
4047
4048 def Etiny(self):
4049 """Returns Etiny (= Emin - prec + 1)"""
4050 return int(self.Emin - self.prec + 1)
4051
4052 def Etop(self):
4053 """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