You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prec - precision (for use in rounding, division, square roots..)
3401
-
rounding - rounding type (how you round)
3402
-
traps - If traps[exception] = 1, then the exception is
3403
-
raised when it is caused. Otherwise, a value is
3404
-
substituted in.
3405
-
flags - When an exception is caused, flags[exception] is set.
3406
-
(Whether or not the trap_enabler is set)
3407
-
Should be reset by user of Decimal instance.
3408
-
Emin - Minimum exponent
3409
-
Emax - Maximum exponent
3410
-
capitals - If 1, 1*10^1 is printed as 1E+1.
3411
-
If 0, printed as 1e1
3412
-
clamp - If 1, change exponents if too high (Default 0)
3385
+
:param int prec: precision (for use in rounding, division, square roots..)
3386
+
:param str rounding: rounding type (how you round)
3387
+
:param dict traps: if traps[exception] = 1, then the exception is
3388
+
raised when it is caused. Otherwise, a value is
3389
+
substituted in.
3390
+
:param dict flags: when an exception is caused, flags[exception] is set. (Whether or not the trap_enabler is set) Should be reset by user of Decimal instance.
3391
+
:param int Emin: minimum exponent
3392
+
:param int Emax: maximum exponent
3393
+
:param bool capitals: if true, 1*10^1 is printed as 1E+1, else printed as 1e1
3394
+
:param bool clamp: If true, change exponents if too high
0 commit comments