There was an error while loading. Please reload this page.
1 parent df0eb95 commit 964feabCopy full SHA for 964feab
1 file changed
Lib/decimal.py
@@ -116,6 +116,9 @@
116
# Two major classes
117
'Decimal', 'Context',
118
119
+ # Named tuple representation
120
+ 'DecimalTuple',
121
+
122
# Contexts
123
'DefaultContext', 'BasicContext', 'ExtendedContext',
124
@@ -124,6 +127,9 @@
127
'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
125
128
'FloatOperation',
126
129
130
+ # Exceptional conditions that trigger InvalidOperation
131
+ 'DivisionImpossible', 'InvalidContext', 'ConversionSyntax', 'DivisionUndefined',
132
133
# Constants for use in setting up contexts
134
'ROUND_DOWN', 'ROUND_HALF_UP', 'ROUND_HALF_EVEN', 'ROUND_CEILING',
135
'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
0 commit comments