blob: e7864534dcac585fa3e8e1ee830dfc141522df03 [file] [log] [blame]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001# Copyright (c) 2004 Python Software Foundation.
2# All rights reserved.
3
4# Written by Eric Price <eprice at tjhsst.edu>
5# and Facundo Batista <facundo at taniquetil.com.ar>
6# and Raymond Hettinger <python at rcn.com>
Fred Drake1f34eb12004-07-01 14:28:36 +00007# and Aahz <aahz at pobox.com>
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00008# and Tim Peters
9
Raymond Hettinger27dbcf22004-08-19 22:39:55 +000010# This module is currently Py2.3 compatible and should be kept that way
11# unless a major compelling advantage arises. IOW, 2.3 compatibility is
12# strongly preferred, but not guaranteed.
13
14# Also, this module should be kept in sync with the latest updates of
15# the IBM specification as it evolves. Those updates will be treated
16# as bug fixes (deviation from the spec is a compatibility, usability
17# bug) and will be backported. At this point the spec is stabilizing
18# and the updates are becoming fewer, smaller, and less significant.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000019
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000020"""
21This is a Py2.3 implementation of decimal floating point arithmetic based on
22the General Decimal Arithmetic Specification:
23
24 www2.hursley.ibm.com/decimal/decarith.html
25
Raymond Hettinger0ea241e2004-07-04 13:53:24 +000026and IEEE standard 854-1987:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000027
28 www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html
29
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000030Decimal floating point has finite precision with arbitrarily large bounds.
31
Facundo Batista59c58842007-04-10 12:58:45 +000032The purpose of this module is to support arithmetic using familiar
33"schoolhouse" rules and to avoid some of the tricky representation
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000034issues associated with binary floating point. The package is especially
35useful for financial applications or for contexts where users have
36expectations that are at odds with binary floating point (for instance,
37in binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead
Raymond Hettingerabe32372008-02-14 02:41:22 +000038of the expected Decimal('0.00') returned by decimal floating point).
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000039
40Here are some examples of using the decimal module:
41
42>>> from decimal import *
Raymond Hettingerbd7f76d2004-07-08 00:49:18 +000043>>> setcontext(ExtendedContext)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000044>>> Decimal(0)
Raymond Hettingerabe32372008-02-14 02:41:22 +000045Decimal('0')
46>>> Decimal('1')
47Decimal('1')
48>>> Decimal('-.0123')
49Decimal('-0.0123')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000050>>> Decimal(123456)
Raymond Hettingerabe32372008-02-14 02:41:22 +000051Decimal('123456')
52>>> Decimal('123.45e12345678901234567890')
53Decimal('1.2345E+12345678901234567892')
54>>> Decimal('1.33') + Decimal('1.27')
55Decimal('2.60')
56>>> Decimal('12.34') + Decimal('3.87') - Decimal('18.41')
57Decimal('-2.20')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000058>>> dig = Decimal(1)
59>>> print dig / Decimal(3)
600.333333333
61>>> getcontext().prec = 18
62>>> print dig / Decimal(3)
630.333333333333333333
64>>> print dig.sqrt()
651
66>>> print Decimal(3).sqrt()
671.73205080756887729
68>>> print Decimal(3) ** 123
694.85192780976896427E+58
70>>> inf = Decimal(1) / Decimal(0)
71>>> print inf
72Infinity
73>>> neginf = Decimal(-1) / Decimal(0)
74>>> print neginf
75-Infinity
76>>> print neginf + inf
77NaN
78>>> print neginf * inf
79-Infinity
80>>> print dig / 0
81Infinity
Raymond Hettingerbf440692004-07-10 14:14:37 +000082>>> getcontext().traps[DivisionByZero] = 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000083>>> print dig / 0
84Traceback (most recent call last):
85 ...
86 ...
87 ...
88DivisionByZero: x / 0
89>>> c = Context()
Raymond Hettingerbf440692004-07-10 14:14:37 +000090>>> c.traps[InvalidOperation] = 0
Raymond Hettinger5aa478b2004-07-09 10:02:53 +000091>>> print c.flags[InvalidOperation]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000920
93>>> c.divide(Decimal(0), Decimal(0))
Raymond Hettingerabe32372008-02-14 02:41:22 +000094Decimal('NaN')
Raymond Hettingerbf440692004-07-10 14:14:37 +000095>>> c.traps[InvalidOperation] = 1
Raymond Hettinger5aa478b2004-07-09 10:02:53 +000096>>> print c.flags[InvalidOperation]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000971
Raymond Hettinger5aa478b2004-07-09 10:02:53 +000098>>> c.flags[InvalidOperation] = 0
99>>> print c.flags[InvalidOperation]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001000
101>>> print c.divide(Decimal(0), Decimal(0))
102Traceback (most recent call last):
103 ...
104 ...
105 ...
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000106InvalidOperation: 0 / 0
107>>> print c.flags[InvalidOperation]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001081
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000109>>> c.flags[InvalidOperation] = 0
Raymond Hettingerbf440692004-07-10 14:14:37 +0000110>>> c.traps[InvalidOperation] = 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000111>>> print c.divide(Decimal(0), Decimal(0))
112NaN
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000113>>> print c.flags[InvalidOperation]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001141
115>>>
116"""
117
118__all__ = [
119 # Two major classes
120 'Decimal', 'Context',
121
122 # Contexts
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +0000123 'DefaultContext', 'BasicContext', 'ExtendedContext',
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000124
125 # Exceptions
Raymond Hettingerd87ac8f2004-07-09 10:52:54 +0000126 'DecimalException', 'Clamped', 'InvalidOperation', 'DivisionByZero',
127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000128
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000129 # Constants for use in setting up contexts
130 'ROUND_DOWN', 'ROUND_HALF_UP', 'ROUND_HALF_EVEN', 'ROUND_CEILING',
Facundo Batista353750c2007-09-13 18:13:15 +0000131 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000132
133 # Functions for manipulating contexts
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000134 'setcontext', 'getcontext', 'localcontext'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000135]
136
Raymond Hettingera016deb2009-04-27 21:12:27 +0000137__version__ = '1.70' # Highest version of the spec this complies with
Raymond Hettingerdaeceb22009-03-10 04:49:21 +0000138
Raymond Hettingereb260842005-06-07 18:52:34 +0000139import copy as _copy
Raymond Hettingerf4d85972009-01-03 19:02:23 +0000140import math as _math
Raymond Hettinger2c8585b2009-02-03 03:37:03 +0000141import numbers as _numbers
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000142
Raymond Hettinger097a1902008-01-11 02:24:13 +0000143try:
144 from collections import namedtuple as _namedtuple
145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
146except ImportError:
147 DecimalTuple = lambda *args: args
148
Facundo Batista59c58842007-04-10 12:58:45 +0000149# Rounding
Raymond Hettinger0ea241e2004-07-04 13:53:24 +0000150ROUND_DOWN = 'ROUND_DOWN'
151ROUND_HALF_UP = 'ROUND_HALF_UP'
152ROUND_HALF_EVEN = 'ROUND_HALF_EVEN'
153ROUND_CEILING = 'ROUND_CEILING'
154ROUND_FLOOR = 'ROUND_FLOOR'
155ROUND_UP = 'ROUND_UP'
156ROUND_HALF_DOWN = 'ROUND_HALF_DOWN'
Facundo Batista353750c2007-09-13 18:13:15 +0000157ROUND_05UP = 'ROUND_05UP'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000158
Facundo Batista59c58842007-04-10 12:58:45 +0000159# Errors
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000160
161class DecimalException(ArithmeticError):
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000162 """Base exception class.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000163
164 Used exceptions derive from this.
165 If an exception derives from another exception besides this (such as
166 Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
167 called if the others are present. This isn't actually used for
168 anything, though.
169
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000170 handle -- Called when context._raise_error is called and the
171 trap_enabler is set. First argument is self, second is the
172 context. More arguments can be given, those being after
173 the explanation in _raise_error (For example,
174 context._raise_error(NewError, '(-x)!', self._sign) would
175 call NewError().handle(context, self._sign).)
176
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000177 To define a new exception, it should be sufficient to have it derive
178 from DecimalException.
179 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000180 def handle(self, context, *args):
181 pass
182
183
184class Clamped(DecimalException):
185 """Exponent of a 0 changed to fit bounds.
186
187 This occurs and signals clamped if the exponent of a result has been
188 altered in order to fit the constraints of a specific concrete
Facundo Batista59c58842007-04-10 12:58:45 +0000189 representation. This may occur when the exponent of a zero result would
190 be outside the bounds of a representation, or when a large normal
191 number would have an encoded exponent that cannot be represented. In
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000192 this latter case, the exponent is reduced to fit and the corresponding
193 number of zero digits are appended to the coefficient ("fold-down").
194 """
195
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000196class InvalidOperation(DecimalException):
197 """An invalid operation was performed.
198
199 Various bad things cause this:
200
201 Something creates a signaling NaN
202 -INF + INF
Facundo Batista59c58842007-04-10 12:58:45 +0000203 0 * (+-)INF
204 (+-)INF / (+-)INF
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000205 x % 0
206 (+-)INF % x
207 x._rescale( non-integer )
208 sqrt(-x) , x > 0
209 0 ** 0
210 x ** (non-integer)
211 x ** (+-)INF
212 An operand is invalid
Facundo Batista353750c2007-09-13 18:13:15 +0000213
214 The result of the operation after these is a quiet positive NaN,
215 except when the cause is a signaling NaN, in which case the result is
216 also a quiet NaN, but with the original sign, and an optional
217 diagnostic information.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000218 """
219 def handle(self, context, *args):
220 if args:
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
Mark Dickinsonc5de0962009-01-02 23:07:08 +0000223 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000224
225class ConversionSyntax(InvalidOperation):
226 """Trying to convert badly formed string.
227
228 This occurs and signals invalid-operation if an string is being
229 converted to a number and it does not conform to the numeric string
Facundo Batista59c58842007-04-10 12:58:45 +0000230 syntax. The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000231 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000232 def handle(self, context, *args):
Mark Dickinsonc5de0962009-01-02 23:07:08 +0000233 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000234
235class DivisionByZero(DecimalException, ZeroDivisionError):
236 """Division by 0.
237
238 This occurs and signals division-by-zero if division of a finite number
239 by zero was attempted (during a divide-integer or divide operation, or a
240 power operation with negative right-hand operand), and the dividend was
241 not zero.
242
243 The result of the operation is [sign,inf], where sign is the exclusive
244 or of the signs of the operands for divide, or is 1 for an odd power of
245 -0, for power.
246 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000247
Facundo Batistacce8df22007-09-18 16:53:18 +0000248 def handle(self, context, sign, *args):
Raymond Hettingerb7e835b2009-01-03 19:08:10 +0000249 return _SignedInfinity[sign]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000250
251class DivisionImpossible(InvalidOperation):
252 """Cannot perform the division adequately.
253
254 This occurs and signals invalid-operation if the integer result of a
255 divide-integer or remainder operation had too many digits (would be
Facundo Batista59c58842007-04-10 12:58:45 +0000256 longer than precision). The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000257 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000258
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000259 def handle(self, context, *args):
Mark Dickinsonc5de0962009-01-02 23:07:08 +0000260 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000261
262class DivisionUndefined(InvalidOperation, ZeroDivisionError):
263 """Undefined result of division.
264
265 This occurs and signals invalid-operation if division by zero was
266 attempted (during a divide-integer, divide, or remainder operation), and
Facundo Batista59c58842007-04-10 12:58:45 +0000267 the dividend is also zero. The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000268 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000269
Facundo Batistacce8df22007-09-18 16:53:18 +0000270 def handle(self, context, *args):
Mark Dickinsonc5de0962009-01-02 23:07:08 +0000271 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000272
273class Inexact(DecimalException):
274 """Had to round, losing information.
275
276 This occurs and signals inexact whenever the result of an operation is
277 not exact (that is, it needed to be rounded and any discarded digits
Facundo Batista59c58842007-04-10 12:58:45 +0000278 were non-zero), or if an overflow or underflow condition occurs. The
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000279 result in all cases is unchanged.
280
281 The inexact signal may be tested (or trapped) to determine if a given
282 operation (or sequence of operations) was inexact.
283 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000284
285class InvalidContext(InvalidOperation):
286 """Invalid context. Unknown rounding, for example.
287
288 This occurs and signals invalid-operation if an invalid context was
Facundo Batista59c58842007-04-10 12:58:45 +0000289 detected during an operation. This can occur if contexts are not checked
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000290 on creation and either the precision exceeds the capability of the
291 underlying concrete representation or an unknown or unsupported rounding
Facundo Batista59c58842007-04-10 12:58:45 +0000292 was specified. These aspects of the context need only be checked when
293 the values are required to be used. The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000294 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000295
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000296 def handle(self, context, *args):
Mark Dickinsonc5de0962009-01-02 23:07:08 +0000297 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000298
299class Rounded(DecimalException):
300 """Number got rounded (not necessarily changed during rounding).
301
302 This occurs and signals rounded whenever the result of an operation is
303 rounded (that is, some zero or non-zero digits were discarded from the
Facundo Batista59c58842007-04-10 12:58:45 +0000304 coefficient), or if an overflow or underflow condition occurs. The
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000305 result in all cases is unchanged.
306
307 The rounded signal may be tested (or trapped) to determine if a given
308 operation (or sequence of operations) caused a loss of precision.
309 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000310
311class Subnormal(DecimalException):
312 """Exponent < Emin before rounding.
313
314 This occurs and signals subnormal whenever the result of a conversion or
315 operation is subnormal (that is, its adjusted exponent is less than
Facundo Batista59c58842007-04-10 12:58:45 +0000316 Emin, before any rounding). The result in all cases is unchanged.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000317
318 The subnormal signal may be tested (or trapped) to determine if a given
319 or operation (or sequence of operations) yielded a subnormal result.
320 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000321
322class Overflow(Inexact, Rounded):
323 """Numerical overflow.
324
325 This occurs and signals overflow if the adjusted exponent of a result
326 (from a conversion or from an operation that is not an attempt to divide
327 by zero), after rounding, would be greater than the largest value that
328 can be handled by the implementation (the value Emax).
329
330 The result depends on the rounding mode:
331
332 For round-half-up and round-half-even (and for round-half-down and
333 round-up, if implemented), the result of the operation is [sign,inf],
Facundo Batista59c58842007-04-10 12:58:45 +0000334 where sign is the sign of the intermediate result. For round-down, the
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000335 result is the largest finite number that can be represented in the
Facundo Batista59c58842007-04-10 12:58:45 +0000336 current precision, with the sign of the intermediate result. For
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000337 round-ceiling, the result is the same as for round-down if the sign of
Facundo Batista59c58842007-04-10 12:58:45 +0000338 the intermediate result is 1, or is [0,inf] otherwise. For round-floor,
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000339 the result is the same as for round-down if the sign of the intermediate
Facundo Batista59c58842007-04-10 12:58:45 +0000340 result is 0, or is [1,inf] otherwise. In all cases, Inexact and Rounded
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000341 will also be raised.
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000342 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000343
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000344 def handle(self, context, sign, *args):
345 if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN,
Facundo Batista353750c2007-09-13 18:13:15 +0000346 ROUND_HALF_DOWN, ROUND_UP):
Raymond Hettingerb7e835b2009-01-03 19:08:10 +0000347 return _SignedInfinity[sign]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000348 if sign == 0:
349 if context.rounding == ROUND_CEILING:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +0000350 return _SignedInfinity[sign]
Facundo Batista72bc54f2007-11-23 17:59:00 +0000351 return _dec_from_triple(sign, '9'*context.prec,
352 context.Emax-context.prec+1)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000353 if sign == 1:
354 if context.rounding == ROUND_FLOOR:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +0000355 return _SignedInfinity[sign]
Facundo Batista72bc54f2007-11-23 17:59:00 +0000356 return _dec_from_triple(sign, '9'*context.prec,
357 context.Emax-context.prec+1)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000358
359
360class Underflow(Inexact, Rounded, Subnormal):
361 """Numerical underflow with result rounded to 0.
362
363 This occurs and signals underflow if a result is inexact and the
364 adjusted exponent of the result would be smaller (more negative) than
365 the smallest value that can be handled by the implementation (the value
Facundo Batista59c58842007-04-10 12:58:45 +0000366 Emin). That is, the result is both inexact and subnormal.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000367
368 The result after an underflow will be a subnormal number rounded, if
Facundo Batista59c58842007-04-10 12:58:45 +0000369 necessary, so that its exponent is not less than Etiny. This may result
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000370 in 0 with the sign of the intermediate result and an exponent of Etiny.
371
372 In all cases, Inexact, Rounded, and Subnormal will also be raised.
373 """
374
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000375# List of public traps and flags
Raymond Hettingerfed52962004-07-14 15:41:57 +0000376_signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000377 Underflow, InvalidOperation, Subnormal]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000378
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000379# Map conditions (per the spec) to signals
380_condition_map = {ConversionSyntax:InvalidOperation,
381 DivisionImpossible:InvalidOperation,
382 DivisionUndefined:InvalidOperation,
383 InvalidContext:InvalidOperation}
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000384
Facundo Batista59c58842007-04-10 12:58:45 +0000385##### Context Functions ##################################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000386
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000387# The getcontext() and setcontext() function manage access to a thread-local
388# current context. Py2.4 offers direct support for thread locals. If that
389# is not available, use threading.currentThread() which is slower but will
Raymond Hettinger7e71fa52004-12-18 19:07:19 +0000390# work for older Pythons. If threads are not part of the build, create a
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000391# mock threading object with threading.local() returning the module namespace.
Raymond Hettinger7e71fa52004-12-18 19:07:19 +0000392
393try:
394 import threading
395except ImportError:
396 # Python was compiled without threads; create a mock object instead
397 import sys
Facundo Batista59c58842007-04-10 12:58:45 +0000398 class MockThreading(object):
Raymond Hettinger7e71fa52004-12-18 19:07:19 +0000399 def local(self, sys=sys):
400 return sys.modules[__name__]
401 threading = MockThreading()
402 del sys, MockThreading
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000403
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000404try:
405 threading.local
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000406
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000407except AttributeError:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000408
Facundo Batista59c58842007-04-10 12:58:45 +0000409 # To fix reloading, force it to create a new context
410 # Old contexts have different exceptions in their dicts, making problems.
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000411 if hasattr(threading.currentThread(), '__decimal_context__'):
412 del threading.currentThread().__decimal_context__
413
414 def setcontext(context):
415 """Set this thread's context to context."""
416 if context in (DefaultContext, BasicContext, ExtendedContext):
Raymond Hettinger9fce44b2004-08-08 04:03:24 +0000417 context = context.copy()
Raymond Hettinger61992ef2004-08-06 23:42:16 +0000418 context.clear_flags()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000419 threading.currentThread().__decimal_context__ = context
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000420
421 def getcontext():
422 """Returns this thread's context.
423
424 If this thread does not yet have a context, returns
425 a new context and sets this thread's context.
426 New contexts are copies of DefaultContext.
427 """
428 try:
429 return threading.currentThread().__decimal_context__
430 except AttributeError:
431 context = Context()
432 threading.currentThread().__decimal_context__ = context
433 return context
434
435else:
436
437 local = threading.local()
Raymond Hettinger9fce44b2004-08-08 04:03:24 +0000438 if hasattr(local, '__decimal_context__'):
439 del local.__decimal_context__
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000440
441 def getcontext(_local=local):
442 """Returns this thread's context.
443
444 If this thread does not yet have a context, returns
445 a new context and sets this thread's context.
446 New contexts are copies of DefaultContext.
447 """
448 try:
449 return _local.__decimal_context__
450 except AttributeError:
451 context = Context()
452 _local.__decimal_context__ = context
453 return context
454
455 def setcontext(context, _local=local):
456 """Set this thread's context to context."""
457 if context in (DefaultContext, BasicContext, ExtendedContext):
Raymond Hettinger9fce44b2004-08-08 04:03:24 +0000458 context = context.copy()
Raymond Hettinger61992ef2004-08-06 23:42:16 +0000459 context.clear_flags()
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000460 _local.__decimal_context__ = context
461
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000462 del threading, local # Don't contaminate the namespace
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000463
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000464def localcontext(ctx=None):
465 """Return a context manager for a copy of the supplied context
466
467 Uses a copy of the current context if no context is specified
468 The returned context manager creates a local decimal context
469 in a with statement:
470 def sin(x):
471 with localcontext() as ctx:
472 ctx.prec += 2
473 # Rest of sin calculation algorithm
474 # uses a precision 2 greater than normal
Facundo Batista59c58842007-04-10 12:58:45 +0000475 return +s # Convert result to normal precision
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000476
477 def sin(x):
478 with localcontext(ExtendedContext):
479 # Rest of sin calculation algorithm
480 # uses the Extended Context from the
481 # General Decimal Arithmetic Specification
Facundo Batista59c58842007-04-10 12:58:45 +0000482 return +s # Convert result to normal context
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000483
Facundo Batistaee340e52008-05-02 17:39:00 +0000484 >>> setcontext(DefaultContext)
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000485 >>> print getcontext().prec
486 28
487 >>> with localcontext():
488 ... ctx = getcontext()
Raymond Hettinger495df472007-02-08 01:42:35 +0000489 ... ctx.prec += 2
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000490 ... print ctx.prec
491 ...
492 30
493 >>> with localcontext(ExtendedContext):
494 ... print getcontext().prec
495 ...
496 9
497 >>> print getcontext().prec
498 28
499 """
Nick Coghlanced12182006-09-02 03:54:17 +0000500 if ctx is None: ctx = getcontext()
501 return _ContextManager(ctx)
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000502
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000503
Facundo Batista59c58842007-04-10 12:58:45 +0000504##### Decimal class #######################################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000505
506class Decimal(object):
507 """Floating point class for decimal arithmetic."""
508
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000509 __slots__ = ('_exp','_int','_sign', '_is_special')
510 # Generally, the value of the Decimal instance is given by
511 # (-1)**_sign * _int * 10**_exp
512 # Special values are signified by _is_special == True
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000513
Raymond Hettingerdab988d2004-10-09 07:10:44 +0000514 # We're immutable, so use __new__ not __init__
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000515 def __new__(cls, value="0", context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000516 """Create a decimal point instance.
517
518 >>> Decimal('3.14') # string input
Raymond Hettingerabe32372008-02-14 02:41:22 +0000519 Decimal('3.14')
Facundo Batista59c58842007-04-10 12:58:45 +0000520 >>> Decimal((0, (3, 1, 4), -2)) # tuple (sign, digit_tuple, exponent)
Raymond Hettingerabe32372008-02-14 02:41:22 +0000521 Decimal('3.14')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000522 >>> Decimal(314) # int or long
Raymond Hettingerabe32372008-02-14 02:41:22 +0000523 Decimal('314')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000524 >>> Decimal(Decimal(314)) # another decimal instance
Raymond Hettingerabe32372008-02-14 02:41:22 +0000525 Decimal('314')
Mark Dickinson59bc20b2008-01-12 01:56:00 +0000526 >>> Decimal(' 3.14 \\n') # leading and trailing whitespace okay
Raymond Hettingerabe32372008-02-14 02:41:22 +0000527 Decimal('3.14')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000528 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000529
Facundo Batista72bc54f2007-11-23 17:59:00 +0000530 # Note that the coefficient, self._int, is actually stored as
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
533 # that are used in almost every arithmetic operation on
534 # Decimals. This is an internal detail: the as_tuple function
535 # and the Decimal constructor still deal with tuples of
536 # digits.
537
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000538 self = object.__new__(cls)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000539
Facundo Batista0d157a02007-11-30 17:15:25 +0000540 # From a string
541 # REs insist on real strings, so we can too.
542 if isinstance(value, basestring):
Mark Dickinson59bc20b2008-01-12 01:56:00 +0000543 m = _parser(value.strip())
Facundo Batista0d157a02007-11-30 17:15:25 +0000544 if m is None:
545 if context is None:
546 context = getcontext()
547 return context._raise_error(ConversionSyntax,
548 "Invalid literal for Decimal: %r" % value)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000549
Facundo Batista0d157a02007-11-30 17:15:25 +0000550 if m.group('sign') == "-":
551 self._sign = 1
552 else:
553 self._sign = 0
554 intpart = m.group('int')
555 if intpart is not None:
556 # finite number
Mark Dickinson4326ad82009-08-02 10:59:36 +0000557 fracpart = m.group('frac') or ''
Facundo Batista0d157a02007-11-30 17:15:25 +0000558 exp = int(m.group('exp') or '0')
Mark Dickinson4326ad82009-08-02 10:59:36 +0000559 self._int = str(int(intpart+fracpart))
560 self._exp = exp - len(fracpart)
Facundo Batista0d157a02007-11-30 17:15:25 +0000561 self._is_special = False
562 else:
563 diag = m.group('diag')
564 if diag is not None:
565 # NaN
Mark Dickinson4326ad82009-08-02 10:59:36 +0000566 self._int = str(int(diag or '0')).lstrip('0')
Facundo Batista0d157a02007-11-30 17:15:25 +0000567 if m.group('signal'):
568 self._exp = 'N'
569 else:
570 self._exp = 'n'
571 else:
572 # infinity
573 self._int = '0'
574 self._exp = 'F'
575 self._is_special = True
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000576 return self
577
578 # From an integer
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000579 if isinstance(value, (int,long)):
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000580 if value >= 0:
581 self._sign = 0
582 else:
583 self._sign = 1
584 self._exp = 0
Facundo Batista72bc54f2007-11-23 17:59:00 +0000585 self._int = str(abs(value))
Facundo Batista0d157a02007-11-30 17:15:25 +0000586 self._is_special = False
587 return self
588
589 # From another decimal
590 if isinstance(value, Decimal):
591 self._exp = value._exp
592 self._sign = value._sign
593 self._int = value._int
594 self._is_special = value._is_special
595 return self
596
597 # From an internal working value
598 if isinstance(value, _WorkRep):
599 self._sign = value.sign
600 self._int = str(value.int)
601 self._exp = int(value.exp)
602 self._is_special = False
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000603 return self
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000604
605 # tuple/list conversion (possibly from as_tuple())
606 if isinstance(value, (list,tuple)):
607 if len(value) != 3:
Facundo Batista9b5e2312007-10-19 19:25:57 +0000608 raise ValueError('Invalid tuple size in creation of Decimal '
609 'from list or tuple. The list or tuple '
610 'should have exactly three elements.')
611 # process sign. The isinstance test rejects floats
612 if not (isinstance(value[0], (int, long)) and value[0] in (0,1)):
613 raise ValueError("Invalid sign. The first value in the tuple "
614 "should be an integer; either 0 for a "
615 "positive number or 1 for a negative number.")
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000616 self._sign = value[0]
Facundo Batista9b5e2312007-10-19 19:25:57 +0000617 if value[2] == 'F':
618 # infinity: value[1] is ignored
Facundo Batista72bc54f2007-11-23 17:59:00 +0000619 self._int = '0'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000620 self._exp = value[2]
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000621 self._is_special = True
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000622 else:
Facundo Batista9b5e2312007-10-19 19:25:57 +0000623 # process and validate the digits in value[1]
624 digits = []
625 for digit in value[1]:
626 if isinstance(digit, (int, long)) and 0 <= digit <= 9:
627 # skip leading zeros
628 if digits or digit != 0:
629 digits.append(digit)
630 else:
631 raise ValueError("The second value in the tuple must "
632 "be composed of integers in the range "
633 "0 through 9.")
634 if value[2] in ('n', 'N'):
635 # NaN: digits form the diagnostic
Facundo Batista72bc54f2007-11-23 17:59:00 +0000636 self._int = ''.join(map(str, digits))
Facundo Batista9b5e2312007-10-19 19:25:57 +0000637 self._exp = value[2]
638 self._is_special = True
639 elif isinstance(value[2], (int, long)):
640 # finite number: digits give the coefficient
Facundo Batista72bc54f2007-11-23 17:59:00 +0000641 self._int = ''.join(map(str, digits or [0]))
Facundo Batista9b5e2312007-10-19 19:25:57 +0000642 self._exp = value[2]
643 self._is_special = False
644 else:
645 raise ValueError("The third value in the tuple must "
646 "be an integer, or one of the "
647 "strings 'F', 'n', 'N'.")
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000648 return self
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000649
Raymond Hettingerbf440692004-07-10 14:14:37 +0000650 if isinstance(value, float):
651 raise TypeError("Cannot convert float to Decimal. " +
652 "First convert the float to a string")
653
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000654 raise TypeError("Cannot convert %r to Decimal" % value)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000655
Mark Dickinson6a961632009-01-04 21:10:56 +0000656 # @classmethod, but @decorator is not valid Python 2.3 syntax, so
657 # don't use it (see notes on Py2.3 compatibility at top of file)
Raymond Hettingerf4d85972009-01-03 19:02:23 +0000658 def from_float(cls, f):
659 """Converts a float to a decimal number, exactly.
660
661 Note that Decimal.from_float(0.1) is not the same as Decimal('0.1').
662 Since 0.1 is not exactly representable in binary floating point, the
663 value is stored as the nearest representable value which is
664 0x1.999999999999ap-4. The exact equivalent of the value in decimal
665 is 0.1000000000000000055511151231257827021181583404541015625.
666
667 >>> Decimal.from_float(0.1)
668 Decimal('0.1000000000000000055511151231257827021181583404541015625')
669 >>> Decimal.from_float(float('nan'))
670 Decimal('NaN')
671 >>> Decimal.from_float(float('inf'))
672 Decimal('Infinity')
673 >>> Decimal.from_float(-float('inf'))
674 Decimal('-Infinity')
675 >>> Decimal.from_float(-0.0)
676 Decimal('-0')
677
678 """
679 if isinstance(f, (int, long)): # handle integer inputs
680 return cls(f)
681 if _math.isinf(f) or _math.isnan(f): # raises TypeError if not a float
682 return cls(repr(f))
Mark Dickinson6a961632009-01-04 21:10:56 +0000683 if _math.copysign(1.0, f) == 1.0:
684 sign = 0
685 else:
686 sign = 1
Raymond Hettingerf4d85972009-01-03 19:02:23 +0000687 n, d = abs(f).as_integer_ratio()
688 k = d.bit_length() - 1
689 result = _dec_from_triple(sign, str(n*5**k), -k)
Mark Dickinson6a961632009-01-04 21:10:56 +0000690 if cls is Decimal:
691 return result
692 else:
693 return cls(result)
694 from_float = classmethod(from_float)
Raymond Hettingerf4d85972009-01-03 19:02:23 +0000695
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000696 def _isnan(self):
697 """Returns whether the number is not actually one.
698
699 0 if a number
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000700 1 if NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000701 2 if sNaN
702 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000703 if self._is_special:
704 exp = self._exp
705 if exp == 'n':
706 return 1
707 elif exp == 'N':
708 return 2
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000709 return 0
710
711 def _isinfinity(self):
712 """Returns whether the number is infinite
713
714 0 if finite or not a number
715 1 if +INF
716 -1 if -INF
717 """
718 if self._exp == 'F':
719 if self._sign:
720 return -1
721 return 1
722 return 0
723
Facundo Batista353750c2007-09-13 18:13:15 +0000724 def _check_nans(self, other=None, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000725 """Returns whether the number is not actually one.
726
727 if self, other are sNaN, signal
728 if self, other are NaN return nan
729 return 0
730
731 Done before operations.
732 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000733
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000734 self_is_nan = self._isnan()
735 if other is None:
736 other_is_nan = False
737 else:
738 other_is_nan = other._isnan()
739
740 if self_is_nan or other_is_nan:
741 if context is None:
742 context = getcontext()
743
744 if self_is_nan == 2:
745 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000746 self)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000747 if other_is_nan == 2:
748 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000749 other)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000750 if self_is_nan:
Facundo Batista353750c2007-09-13 18:13:15 +0000751 return self._fix_nan(context)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000752
Facundo Batista353750c2007-09-13 18:13:15 +0000753 return other._fix_nan(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000754 return 0
755
Mark Dickinson2fc92632008-02-06 22:10:50 +0000756 def _compare_check_nans(self, other, context):
757 """Version of _check_nans used for the signaling comparisons
758 compare_signal, __le__, __lt__, __ge__, __gt__.
759
760 Signal InvalidOperation if either self or other is a (quiet
761 or signaling) NaN. Signaling NaNs take precedence over quiet
762 NaNs.
763
764 Return 0 if neither operand is a NaN.
765
766 """
767 if context is None:
768 context = getcontext()
769
770 if self._is_special or other._is_special:
771 if self.is_snan():
772 return context._raise_error(InvalidOperation,
773 'comparison involving sNaN',
774 self)
775 elif other.is_snan():
776 return context._raise_error(InvalidOperation,
777 'comparison involving sNaN',
778 other)
779 elif self.is_qnan():
780 return context._raise_error(InvalidOperation,
781 'comparison involving NaN',
782 self)
783 elif other.is_qnan():
784 return context._raise_error(InvalidOperation,
785 'comparison involving NaN',
786 other)
787 return 0
788
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000789 def __nonzero__(self):
Facundo Batista1a191df2007-10-02 17:01:24 +0000790 """Return True if self is nonzero; otherwise return False.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000791
Facundo Batista1a191df2007-10-02 17:01:24 +0000792 NaNs and infinities are considered nonzero.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000793 """
Facundo Batista72bc54f2007-11-23 17:59:00 +0000794 return self._is_special or self._int != '0'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000795
Mark Dickinson2fc92632008-02-06 22:10:50 +0000796 def _cmp(self, other):
797 """Compare the two non-NaN decimal instances self and other.
798
799 Returns -1 if self < other, 0 if self == other and 1
800 if self > other. This routine is for internal use only."""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000801
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000802 if self._is_special or other._is_special:
Mark Dickinsone52c3142009-01-25 10:39:15 +0000803 self_inf = self._isinfinity()
804 other_inf = other._isinfinity()
805 if self_inf == other_inf:
806 return 0
807 elif self_inf < other_inf:
808 return -1
809 else:
810 return 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000811
Mark Dickinsone52c3142009-01-25 10:39:15 +0000812 # check for zeros; Decimal('0') == Decimal('-0')
Facundo Batista353750c2007-09-13 18:13:15 +0000813 if not self:
814 if not other:
815 return 0
816 else:
817 return -((-1)**other._sign)
818 if not other:
819 return (-1)**self._sign
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000820
Facundo Batista59c58842007-04-10 12:58:45 +0000821 # If different signs, neg one is less
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000822 if other._sign < self._sign:
823 return -1
824 if self._sign < other._sign:
825 return 1
826
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000827 self_adjusted = self.adjusted()
828 other_adjusted = other.adjusted()
Facundo Batista353750c2007-09-13 18:13:15 +0000829 if self_adjusted == other_adjusted:
Facundo Batista72bc54f2007-11-23 17:59:00 +0000830 self_padded = self._int + '0'*(self._exp - other._exp)
831 other_padded = other._int + '0'*(other._exp - self._exp)
Mark Dickinsone52c3142009-01-25 10:39:15 +0000832 if self_padded == other_padded:
833 return 0
834 elif self_padded < other_padded:
835 return -(-1)**self._sign
836 else:
837 return (-1)**self._sign
Facundo Batista353750c2007-09-13 18:13:15 +0000838 elif self_adjusted > other_adjusted:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000839 return (-1)**self._sign
Facundo Batista353750c2007-09-13 18:13:15 +0000840 else: # self_adjusted < other_adjusted
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000841 return -((-1)**self._sign)
842
Mark Dickinson2fc92632008-02-06 22:10:50 +0000843 # Note: The Decimal standard doesn't cover rich comparisons for
844 # Decimals. In particular, the specification is silent on the
845 # subject of what should happen for a comparison involving a NaN.
846 # We take the following approach:
847 #
848 # == comparisons involving a NaN always return False
849 # != comparisons involving a NaN always return True
850 # <, >, <= and >= comparisons involving a (quiet or signaling)
851 # NaN signal InvalidOperation, and return False if the
Mark Dickinson3a94ee02008-02-10 15:19:58 +0000852 # InvalidOperation is not trapped.
Mark Dickinson2fc92632008-02-06 22:10:50 +0000853 #
854 # This behavior is designed to conform as closely as possible to
855 # that specified by IEEE 754.
856
Raymond Hettinger0aeac102004-07-05 22:53:03 +0000857 def __eq__(self, other):
Mark Dickinson2fc92632008-02-06 22:10:50 +0000858 other = _convert_other(other)
859 if other is NotImplemented:
860 return other
861 if self.is_nan() or other.is_nan():
862 return False
863 return self._cmp(other) == 0
Raymond Hettinger0aeac102004-07-05 22:53:03 +0000864
865 def __ne__(self, other):
Mark Dickinson2fc92632008-02-06 22:10:50 +0000866 other = _convert_other(other)
867 if other is NotImplemented:
868 return other
869 if self.is_nan() or other.is_nan():
870 return True
871 return self._cmp(other) != 0
872
873 def __lt__(self, other, context=None):
874 other = _convert_other(other)
875 if other is NotImplemented:
876 return other
877 ans = self._compare_check_nans(other, context)
878 if ans:
879 return False
880 return self._cmp(other) < 0
881
882 def __le__(self, other, context=None):
883 other = _convert_other(other)
884 if other is NotImplemented:
885 return other
886 ans = self._compare_check_nans(other, context)
887 if ans:
888 return False
889 return self._cmp(other) <= 0
890
891 def __gt__(self, other, context=None):
892 other = _convert_other(other)
893 if other is NotImplemented:
894 return other
895 ans = self._compare_check_nans(other, context)
896 if ans:
897 return False
898 return self._cmp(other) > 0
899
900 def __ge__(self, other, context=None):
901 other = _convert_other(other)
902 if other is NotImplemented:
903 return other
904 ans = self._compare_check_nans(other, context)
905 if ans:
906 return False
907 return self._cmp(other) >= 0
Raymond Hettinger0aeac102004-07-05 22:53:03 +0000908
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000909 def compare(self, other, context=None):
910 """Compares one to another.
911
912 -1 => a < b
913 0 => a = b
914 1 => a > b
915 NaN => one is NaN
916 Like __cmp__, but returns Decimal instances.
917 """
Facundo Batista353750c2007-09-13 18:13:15 +0000918 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000919
Facundo Batista59c58842007-04-10 12:58:45 +0000920 # Compare(NaN, NaN) = NaN
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000921 if (self._is_special or other and other._is_special):
922 ans = self._check_nans(other, context)
923 if ans:
924 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000925
Mark Dickinson2fc92632008-02-06 22:10:50 +0000926 return Decimal(self._cmp(other))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000927
928 def __hash__(self):
929 """x.__hash__() <==> hash(x)"""
930 # Decimal integers must hash the same as the ints
Facundo Batista52b25792008-01-08 12:25:20 +0000931 #
932 # The hash of a nonspecial noninteger Decimal must depend only
933 # on the value of that Decimal, and not on its representation.
Raymond Hettingerabe32372008-02-14 02:41:22 +0000934 # For example: hash(Decimal('100E-1')) == hash(Decimal('10')).
Raymond Hettingerbea3f6f2005-03-15 04:59:17 +0000935 if self._is_special:
936 if self._isnan():
937 raise TypeError('Cannot hash a NaN value.')
938 return hash(str(self))
Facundo Batista8c202442007-09-19 17:53:25 +0000939 if not self:
940 return 0
941 if self._isinteger():
942 op = _WorkRep(self.to_integral_value())
943 # to make computation feasible for Decimals with large
944 # exponent, we use the fact that hash(n) == hash(m) for
945 # any two nonzero integers n and m such that (i) n and m
946 # have the same sign, and (ii) n is congruent to m modulo
947 # 2**64-1. So we can replace hash((-1)**s*c*10**e) with
948 # hash((-1)**s*c*pow(10, e, 2**64-1).
949 return hash((-1)**op.sign*op.int*pow(10, op.exp, 2**64-1))
Facundo Batista52b25792008-01-08 12:25:20 +0000950 # The value of a nonzero nonspecial Decimal instance is
951 # faithfully represented by the triple consisting of its sign,
952 # its adjusted exponent, and its coefficient with trailing
953 # zeros removed.
954 return hash((self._sign,
955 self._exp+len(self._int),
956 self._int.rstrip('0')))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000957
958 def as_tuple(self):
959 """Represents the number as a triple tuple.
960
961 To show the internals exactly as they are.
962 """
Raymond Hettinger097a1902008-01-11 02:24:13 +0000963 return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000964
965 def __repr__(self):
966 """Represents the number as an instance of Decimal."""
967 # Invariant: eval(repr(d)) == d
Raymond Hettingerabe32372008-02-14 02:41:22 +0000968 return "Decimal('%s')" % str(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000969
Facundo Batista353750c2007-09-13 18:13:15 +0000970 def __str__(self, eng=False, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000971 """Return string representation of the number in scientific notation.
972
973 Captures all of the information in the underlying representation.
974 """
975
Facundo Batista62edb712007-12-03 16:29:52 +0000976 sign = ['', '-'][self._sign]
Raymond Hettingere5a0a962005-06-20 09:49:42 +0000977 if self._is_special:
Facundo Batista62edb712007-12-03 16:29:52 +0000978 if self._exp == 'F':
979 return sign + 'Infinity'
980 elif self._exp == 'n':
981 return sign + 'NaN' + self._int
982 else: # self._exp == 'N'
983 return sign + 'sNaN' + self._int
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000984
Facundo Batista62edb712007-12-03 16:29:52 +0000985 # number of digits of self._int to left of decimal point
986 leftdigits = self._exp + len(self._int)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000987
Facundo Batista62edb712007-12-03 16:29:52 +0000988 # dotplace is number of digits of self._int to the left of the
989 # decimal point in the mantissa of the output string (that is,
990 # after adjusting the exponent)
991 if self._exp <= 0 and leftdigits > -6:
992 # no exponent required
993 dotplace = leftdigits
994 elif not eng:
995 # usual scientific notation: 1 digit on left of the point
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000996 dotplace = 1
Facundo Batista62edb712007-12-03 16:29:52 +0000997 elif self._int == '0':
998 # engineering notation, zero
999 dotplace = (leftdigits + 1) % 3 - 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001000 else:
Facundo Batista62edb712007-12-03 16:29:52 +00001001 # engineering notation, nonzero
1002 dotplace = (leftdigits - 1) % 3 + 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001003
Facundo Batista62edb712007-12-03 16:29:52 +00001004 if dotplace <= 0:
1005 intpart = '0'
1006 fracpart = '.' + '0'*(-dotplace) + self._int
1007 elif dotplace >= len(self._int):
1008 intpart = self._int+'0'*(dotplace-len(self._int))
1009 fracpart = ''
1010 else:
1011 intpart = self._int[:dotplace]
1012 fracpart = '.' + self._int[dotplace:]
1013 if leftdigits == dotplace:
1014 exp = ''
1015 else:
1016 if context is None:
1017 context = getcontext()
1018 exp = ['e', 'E'][context.capitals] + "%+d" % (leftdigits-dotplace)
1019
1020 return sign + intpart + fracpart + exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001021
1022 def to_eng_string(self, context=None):
1023 """Convert to engineering-type string.
1024
1025 Engineering notation has an exponent which is a multiple of 3, so there
1026 are up to 3 digits left of the decimal place.
1027
1028 Same rules for when in exponential and when as a value as in __str__.
1029 """
Facundo Batista353750c2007-09-13 18:13:15 +00001030 return self.__str__(eng=True, context=context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001031
1032 def __neg__(self, context=None):
1033 """Returns a copy with the sign switched.
1034
1035 Rounds, if it has reason.
1036 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001037 if self._is_special:
1038 ans = self._check_nans(context=context)
1039 if ans:
1040 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001041
1042 if not self:
1043 # -Decimal('0') is Decimal('0'), not Decimal('-0')
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001044 ans = self.copy_abs()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001045 else:
Facundo Batista353750c2007-09-13 18:13:15 +00001046 ans = self.copy_negate()
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001047
1048 if context is None:
1049 context = getcontext()
Facundo Batistae64acfa2007-12-17 14:18:42 +00001050 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001051
1052 def __pos__(self, context=None):
1053 """Returns a copy, unless it is a sNaN.
1054
1055 Rounds the number (if more then precision digits)
1056 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001057 if self._is_special:
1058 ans = self._check_nans(context=context)
1059 if ans:
1060 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001061
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001062 if not self:
1063 # + (-0) = 0
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001064 ans = self.copy_abs()
Facundo Batista353750c2007-09-13 18:13:15 +00001065 else:
1066 ans = Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001067
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001068 if context is None:
1069 context = getcontext()
Facundo Batistae64acfa2007-12-17 14:18:42 +00001070 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001071
Facundo Batistae64acfa2007-12-17 14:18:42 +00001072 def __abs__(self, round=True, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001073 """Returns the absolute value of self.
1074
Facundo Batistae64acfa2007-12-17 14:18:42 +00001075 If the keyword argument 'round' is false, do not round. The
1076 expression self.__abs__(round=False) is equivalent to
1077 self.copy_abs().
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001078 """
Facundo Batistae64acfa2007-12-17 14:18:42 +00001079 if not round:
1080 return self.copy_abs()
1081
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001082 if self._is_special:
1083 ans = self._check_nans(context=context)
1084 if ans:
1085 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001086
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001087 if self._sign:
1088 ans = self.__neg__(context=context)
1089 else:
1090 ans = self.__pos__(context=context)
1091
1092 return ans
1093
1094 def __add__(self, other, context=None):
1095 """Returns self + other.
1096
1097 -INF + INF (or the reverse) cause InvalidOperation errors.
1098 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001099 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001100 if other is NotImplemented:
1101 return other
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001102
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001103 if context is None:
1104 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001105
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001106 if self._is_special or other._is_special:
1107 ans = self._check_nans(other, context)
1108 if ans:
1109 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001110
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001111 if self._isinfinity():
Facundo Batista59c58842007-04-10 12:58:45 +00001112 # If both INF, same sign => same as both, opposite => error.
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001113 if self._sign != other._sign and other._isinfinity():
1114 return context._raise_error(InvalidOperation, '-INF + INF')
1115 return Decimal(self)
1116 if other._isinfinity():
Facundo Batista59c58842007-04-10 12:58:45 +00001117 return Decimal(other) # Can't both be infinity here
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001118
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001119 exp = min(self._exp, other._exp)
1120 negativezero = 0
1121 if context.rounding == ROUND_FLOOR and self._sign != other._sign:
Facundo Batista59c58842007-04-10 12:58:45 +00001122 # If the answer is 0, the sign should be negative, in this case.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001123 negativezero = 1
1124
1125 if not self and not other:
1126 sign = min(self._sign, other._sign)
1127 if negativezero:
1128 sign = 1
Facundo Batista72bc54f2007-11-23 17:59:00 +00001129 ans = _dec_from_triple(sign, '0', exp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001130 ans = ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00001131 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001132 if not self:
Facundo Batista99b55482004-10-26 23:38:46 +00001133 exp = max(exp, other._exp - context.prec-1)
Facundo Batista353750c2007-09-13 18:13:15 +00001134 ans = other._rescale(exp, context.rounding)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001135 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001136 return ans
1137 if not other:
Facundo Batista99b55482004-10-26 23:38:46 +00001138 exp = max(exp, self._exp - context.prec-1)
Facundo Batista353750c2007-09-13 18:13:15 +00001139 ans = self._rescale(exp, context.rounding)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001140 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001141 return ans
1142
1143 op1 = _WorkRep(self)
1144 op2 = _WorkRep(other)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001145 op1, op2 = _normalize(op1, op2, context.prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001146
1147 result = _WorkRep()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001148 if op1.sign != op2.sign:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001149 # Equal and opposite
Raymond Hettinger17931de2004-10-27 06:21:46 +00001150 if op1.int == op2.int:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001151 ans = _dec_from_triple(negativezero, '0', exp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001152 ans = ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00001153 return ans
Raymond Hettinger17931de2004-10-27 06:21:46 +00001154 if op1.int < op2.int:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001155 op1, op2 = op2, op1
Facundo Batista59c58842007-04-10 12:58:45 +00001156 # OK, now abs(op1) > abs(op2)
Raymond Hettinger17931de2004-10-27 06:21:46 +00001157 if op1.sign == 1:
1158 result.sign = 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001159 op1.sign, op2.sign = op2.sign, op1.sign
1160 else:
Raymond Hettinger17931de2004-10-27 06:21:46 +00001161 result.sign = 0
Facundo Batista59c58842007-04-10 12:58:45 +00001162 # So we know the sign, and op1 > 0.
Raymond Hettinger17931de2004-10-27 06:21:46 +00001163 elif op1.sign == 1:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001164 result.sign = 1
Raymond Hettinger17931de2004-10-27 06:21:46 +00001165 op1.sign, op2.sign = (0, 0)
1166 else:
1167 result.sign = 0
Facundo Batista59c58842007-04-10 12:58:45 +00001168 # Now, op1 > abs(op2) > 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001169
Raymond Hettinger17931de2004-10-27 06:21:46 +00001170 if op2.sign == 0:
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001171 result.int = op1.int + op2.int
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001172 else:
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001173 result.int = op1.int - op2.int
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001174
1175 result.exp = op1.exp
1176 ans = Decimal(result)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001177 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001178 return ans
1179
1180 __radd__ = __add__
1181
1182 def __sub__(self, other, context=None):
Facundo Batista353750c2007-09-13 18:13:15 +00001183 """Return self - other"""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001184 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001185 if other is NotImplemented:
1186 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001187
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001188 if self._is_special or other._is_special:
1189 ans = self._check_nans(other, context=context)
1190 if ans:
1191 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001192
Facundo Batista353750c2007-09-13 18:13:15 +00001193 # self - other is computed as self + other.copy_negate()
1194 return self.__add__(other.copy_negate(), context=context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001195
1196 def __rsub__(self, other, context=None):
Facundo Batista353750c2007-09-13 18:13:15 +00001197 """Return other - self"""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001198 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001199 if other is NotImplemented:
1200 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001201
Facundo Batista353750c2007-09-13 18:13:15 +00001202 return other.__sub__(self, context=context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001203
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001204 def __mul__(self, other, context=None):
1205 """Return self * other.
1206
1207 (+-) INF * 0 (or its reverse) raise InvalidOperation.
1208 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001209 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001210 if other is NotImplemented:
1211 return other
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001212
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001213 if context is None:
1214 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001215
Raymond Hettingerd87ac8f2004-07-09 10:52:54 +00001216 resultsign = self._sign ^ other._sign
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001217
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001218 if self._is_special or other._is_special:
1219 ans = self._check_nans(other, context)
1220 if ans:
1221 return ans
1222
1223 if self._isinfinity():
1224 if not other:
1225 return context._raise_error(InvalidOperation, '(+-)INF * 0')
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001226 return _SignedInfinity[resultsign]
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001227
1228 if other._isinfinity():
1229 if not self:
1230 return context._raise_error(InvalidOperation, '0 * (+-)INF')
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001231 return _SignedInfinity[resultsign]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001232
1233 resultexp = self._exp + other._exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001234
1235 # Special case for multiplying by zero
1236 if not self or not other:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001237 ans = _dec_from_triple(resultsign, '0', resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001238 # Fixing in case the exponent is out of bounds
1239 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001240 return ans
1241
1242 # Special case for multiplying by power of 10
Facundo Batista72bc54f2007-11-23 17:59:00 +00001243 if self._int == '1':
1244 ans = _dec_from_triple(resultsign, other._int, resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001245 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001246 return ans
Facundo Batista72bc54f2007-11-23 17:59:00 +00001247 if other._int == '1':
1248 ans = _dec_from_triple(resultsign, self._int, resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001249 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001250 return ans
1251
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001252 op1 = _WorkRep(self)
1253 op2 = _WorkRep(other)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001254
Facundo Batista72bc54f2007-11-23 17:59:00 +00001255 ans = _dec_from_triple(resultsign, str(op1.int * op2.int), resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001256 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001257
1258 return ans
1259 __rmul__ = __mul__
1260
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001261 def __truediv__(self, other, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001262 """Return self / other."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001263 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001264 if other is NotImplemented:
Facundo Batistacce8df22007-09-18 16:53:18 +00001265 return NotImplemented
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001266
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001267 if context is None:
1268 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001269
Raymond Hettingerd87ac8f2004-07-09 10:52:54 +00001270 sign = self._sign ^ other._sign
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001271
1272 if self._is_special or other._is_special:
1273 ans = self._check_nans(other, context)
1274 if ans:
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001275 return ans
1276
1277 if self._isinfinity() and other._isinfinity():
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001278 return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001279
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001280 if self._isinfinity():
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001281 return _SignedInfinity[sign]
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001282
1283 if other._isinfinity():
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001284 context._raise_error(Clamped, 'Division by infinity')
Facundo Batista72bc54f2007-11-23 17:59:00 +00001285 return _dec_from_triple(sign, '0', context.Etiny())
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001286
1287 # Special cases for zeroes
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001288 if not other:
Facundo Batistacce8df22007-09-18 16:53:18 +00001289 if not self:
1290 return context._raise_error(DivisionUndefined, '0 / 0')
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001291 return context._raise_error(DivisionByZero, 'x / 0', sign)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001292
Facundo Batistacce8df22007-09-18 16:53:18 +00001293 if not self:
1294 exp = self._exp - other._exp
1295 coeff = 0
1296 else:
1297 # OK, so neither = 0, INF or NaN
1298 shift = len(other._int) - len(self._int) + context.prec + 1
1299 exp = self._exp - other._exp - shift
1300 op1 = _WorkRep(self)
1301 op2 = _WorkRep(other)
1302 if shift >= 0:
1303 coeff, remainder = divmod(op1.int * 10**shift, op2.int)
1304 else:
1305 coeff, remainder = divmod(op1.int, op2.int * 10**-shift)
1306 if remainder:
1307 # result is not exact; adjust to ensure correct rounding
1308 if coeff % 5 == 0:
1309 coeff += 1
1310 else:
1311 # result is exact; get as close to ideal exponent as possible
1312 ideal_exp = self._exp - other._exp
1313 while exp < ideal_exp and coeff % 10 == 0:
1314 coeff //= 10
1315 exp += 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001316
Facundo Batista72bc54f2007-11-23 17:59:00 +00001317 ans = _dec_from_triple(sign, str(coeff), exp)
Facundo Batistacce8df22007-09-18 16:53:18 +00001318 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001319
Facundo Batistacce8df22007-09-18 16:53:18 +00001320 def _divide(self, other, context):
1321 """Return (self // other, self % other), to context.prec precision.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001322
Facundo Batistacce8df22007-09-18 16:53:18 +00001323 Assumes that neither self nor other is a NaN, that self is not
1324 infinite and that other is nonzero.
1325 """
1326 sign = self._sign ^ other._sign
1327 if other._isinfinity():
1328 ideal_exp = self._exp
1329 else:
1330 ideal_exp = min(self._exp, other._exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001331
Facundo Batistacce8df22007-09-18 16:53:18 +00001332 expdiff = self.adjusted() - other.adjusted()
1333 if not self or other._isinfinity() or expdiff <= -2:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001334 return (_dec_from_triple(sign, '0', 0),
Facundo Batistacce8df22007-09-18 16:53:18 +00001335 self._rescale(ideal_exp, context.rounding))
1336 if expdiff <= context.prec:
1337 op1 = _WorkRep(self)
1338 op2 = _WorkRep(other)
1339 if op1.exp >= op2.exp:
1340 op1.int *= 10**(op1.exp - op2.exp)
1341 else:
1342 op2.int *= 10**(op2.exp - op1.exp)
1343 q, r = divmod(op1.int, op2.int)
1344 if q < 10**context.prec:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001345 return (_dec_from_triple(sign, str(q), 0),
1346 _dec_from_triple(self._sign, str(r), ideal_exp))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001347
Facundo Batistacce8df22007-09-18 16:53:18 +00001348 # Here the quotient is too large to be representable
1349 ans = context._raise_error(DivisionImpossible,
1350 'quotient too large in //, % or divmod')
1351 return ans, ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001352
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001353 def __rtruediv__(self, other, context=None):
1354 """Swaps self/other and returns __truediv__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001355 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001356 if other is NotImplemented:
1357 return other
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001358 return other.__truediv__(self, context=context)
1359
1360 __div__ = __truediv__
1361 __rdiv__ = __rtruediv__
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001362
1363 def __divmod__(self, other, context=None):
1364 """
Facundo Batistacce8df22007-09-18 16:53:18 +00001365 Return (self // other, self % other)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001366 """
Facundo Batistacce8df22007-09-18 16:53:18 +00001367 other = _convert_other(other)
1368 if other is NotImplemented:
1369 return other
1370
1371 if context is None:
1372 context = getcontext()
1373
1374 ans = self._check_nans(other, context)
1375 if ans:
1376 return (ans, ans)
1377
1378 sign = self._sign ^ other._sign
1379 if self._isinfinity():
1380 if other._isinfinity():
1381 ans = context._raise_error(InvalidOperation, 'divmod(INF, INF)')
1382 return ans, ans
1383 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001384 return (_SignedInfinity[sign],
Facundo Batistacce8df22007-09-18 16:53:18 +00001385 context._raise_error(InvalidOperation, 'INF % x'))
1386
1387 if not other:
1388 if not self:
1389 ans = context._raise_error(DivisionUndefined, 'divmod(0, 0)')
1390 return ans, ans
1391 else:
1392 return (context._raise_error(DivisionByZero, 'x // 0', sign),
1393 context._raise_error(InvalidOperation, 'x % 0'))
1394
1395 quotient, remainder = self._divide(other, context)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001396 remainder = remainder._fix(context)
Facundo Batistacce8df22007-09-18 16:53:18 +00001397 return quotient, remainder
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001398
1399 def __rdivmod__(self, other, context=None):
1400 """Swaps self/other and returns __divmod__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001401 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001402 if other is NotImplemented:
1403 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001404 return other.__divmod__(self, context=context)
1405
1406 def __mod__(self, other, context=None):
1407 """
1408 self % other
1409 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001410 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001411 if other is NotImplemented:
1412 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001413
Facundo Batistacce8df22007-09-18 16:53:18 +00001414 if context is None:
1415 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001416
Facundo Batistacce8df22007-09-18 16:53:18 +00001417 ans = self._check_nans(other, context)
1418 if ans:
1419 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001420
Facundo Batistacce8df22007-09-18 16:53:18 +00001421 if self._isinfinity():
1422 return context._raise_error(InvalidOperation, 'INF % x')
1423 elif not other:
1424 if self:
1425 return context._raise_error(InvalidOperation, 'x % 0')
1426 else:
1427 return context._raise_error(DivisionUndefined, '0 % 0')
1428
1429 remainder = self._divide(other, context)[1]
Facundo Batistae64acfa2007-12-17 14:18:42 +00001430 remainder = remainder._fix(context)
Facundo Batistacce8df22007-09-18 16:53:18 +00001431 return remainder
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001432
1433 def __rmod__(self, other, context=None):
1434 """Swaps self/other and returns __mod__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001435 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001436 if other is NotImplemented:
1437 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001438 return other.__mod__(self, context=context)
1439
1440 def remainder_near(self, other, context=None):
1441 """
1442 Remainder nearest to 0- abs(remainder-near) <= other/2
1443 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001444 if context is None:
1445 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001446
Facundo Batista353750c2007-09-13 18:13:15 +00001447 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001448
Facundo Batista353750c2007-09-13 18:13:15 +00001449 ans = self._check_nans(other, context)
1450 if ans:
1451 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001452
Facundo Batista353750c2007-09-13 18:13:15 +00001453 # self == +/-infinity -> InvalidOperation
1454 if self._isinfinity():
1455 return context._raise_error(InvalidOperation,
1456 'remainder_near(infinity, x)')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001457
Facundo Batista353750c2007-09-13 18:13:15 +00001458 # other == 0 -> either InvalidOperation or DivisionUndefined
1459 if not other:
1460 if self:
1461 return context._raise_error(InvalidOperation,
1462 'remainder_near(x, 0)')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001463 else:
Facundo Batista353750c2007-09-13 18:13:15 +00001464 return context._raise_error(DivisionUndefined,
1465 'remainder_near(0, 0)')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001466
Facundo Batista353750c2007-09-13 18:13:15 +00001467 # other = +/-infinity -> remainder = self
1468 if other._isinfinity():
1469 ans = Decimal(self)
1470 return ans._fix(context)
1471
1472 # self = 0 -> remainder = self, with ideal exponent
1473 ideal_exponent = min(self._exp, other._exp)
1474 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001475 ans = _dec_from_triple(self._sign, '0', ideal_exponent)
Facundo Batista353750c2007-09-13 18:13:15 +00001476 return ans._fix(context)
1477
1478 # catch most cases of large or small quotient
1479 expdiff = self.adjusted() - other.adjusted()
1480 if expdiff >= context.prec + 1:
1481 # expdiff >= prec+1 => abs(self/other) > 10**prec
Facundo Batistacce8df22007-09-18 16:53:18 +00001482 return context._raise_error(DivisionImpossible)
Facundo Batista353750c2007-09-13 18:13:15 +00001483 if expdiff <= -2:
1484 # expdiff <= -2 => abs(self/other) < 0.1
1485 ans = self._rescale(ideal_exponent, context.rounding)
1486 return ans._fix(context)
1487
1488 # adjust both arguments to have the same exponent, then divide
1489 op1 = _WorkRep(self)
1490 op2 = _WorkRep(other)
1491 if op1.exp >= op2.exp:
1492 op1.int *= 10**(op1.exp - op2.exp)
1493 else:
1494 op2.int *= 10**(op2.exp - op1.exp)
1495 q, r = divmod(op1.int, op2.int)
1496 # remainder is r*10**ideal_exponent; other is +/-op2.int *
1497 # 10**ideal_exponent. Apply correction to ensure that
1498 # abs(remainder) <= abs(other)/2
1499 if 2*r + (q&1) > op2.int:
1500 r -= op2.int
1501 q += 1
1502
1503 if q >= 10**context.prec:
Facundo Batistacce8df22007-09-18 16:53:18 +00001504 return context._raise_error(DivisionImpossible)
Facundo Batista353750c2007-09-13 18:13:15 +00001505
1506 # result has same sign as self unless r is negative
1507 sign = self._sign
1508 if r < 0:
1509 sign = 1-sign
1510 r = -r
1511
Facundo Batista72bc54f2007-11-23 17:59:00 +00001512 ans = _dec_from_triple(sign, str(r), ideal_exponent)
Facundo Batista353750c2007-09-13 18:13:15 +00001513 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001514
1515 def __floordiv__(self, other, context=None):
1516 """self // other"""
Facundo Batistacce8df22007-09-18 16:53:18 +00001517 other = _convert_other(other)
1518 if other is NotImplemented:
1519 return other
1520
1521 if context is None:
1522 context = getcontext()
1523
1524 ans = self._check_nans(other, context)
1525 if ans:
1526 return ans
1527
1528 if self._isinfinity():
1529 if other._isinfinity():
1530 return context._raise_error(InvalidOperation, 'INF // INF')
1531 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001532 return _SignedInfinity[self._sign ^ other._sign]
Facundo Batistacce8df22007-09-18 16:53:18 +00001533
1534 if not other:
1535 if self:
1536 return context._raise_error(DivisionByZero, 'x // 0',
1537 self._sign ^ other._sign)
1538 else:
1539 return context._raise_error(DivisionUndefined, '0 // 0')
1540
1541 return self._divide(other, context)[0]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001542
1543 def __rfloordiv__(self, other, context=None):
1544 """Swaps self/other and returns __floordiv__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001545 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001546 if other is NotImplemented:
1547 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001548 return other.__floordiv__(self, context=context)
1549
1550 def __float__(self):
1551 """Float representation."""
1552 return float(str(self))
1553
1554 def __int__(self):
Brett Cannon46b08022005-03-01 03:12:26 +00001555 """Converts self to an int, truncating if necessary."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001556 if self._is_special:
1557 if self._isnan():
1558 context = getcontext()
1559 return context._raise_error(InvalidContext)
1560 elif self._isinfinity():
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001561 raise OverflowError("Cannot convert infinity to int")
Facundo Batista353750c2007-09-13 18:13:15 +00001562 s = (-1)**self._sign
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001563 if self._exp >= 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001564 return s*int(self._int)*10**self._exp
Raymond Hettinger605ed022004-11-24 07:28:48 +00001565 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001566 return s*int(self._int[:self._exp] or '0')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001567
Raymond Hettinger5a053642008-01-24 19:05:29 +00001568 __trunc__ = __int__
1569
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001570 def real(self):
1571 return self
Mark Dickinson65808ff2009-01-04 21:22:02 +00001572 real = property(real)
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001573
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001574 def imag(self):
1575 return Decimal(0)
Mark Dickinson65808ff2009-01-04 21:22:02 +00001576 imag = property(imag)
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001577
1578 def conjugate(self):
1579 return self
1580
1581 def __complex__(self):
1582 return complex(float(self))
1583
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001584 def __long__(self):
1585 """Converts to a long.
1586
1587 Equivalent to long(int(self))
1588 """
1589 return long(self.__int__())
1590
Facundo Batista353750c2007-09-13 18:13:15 +00001591 def _fix_nan(self, context):
1592 """Decapitate the payload of a NaN to fit the context"""
1593 payload = self._int
1594
1595 # maximum length of payload is precision if _clamp=0,
1596 # precision-1 if _clamp=1.
1597 max_payload_len = context.prec - context._clamp
1598 if len(payload) > max_payload_len:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001599 payload = payload[len(payload)-max_payload_len:].lstrip('0')
1600 return _dec_from_triple(self._sign, payload, self._exp, True)
Facundo Batista6c398da2007-09-17 17:30:13 +00001601 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00001602
Raymond Hettingerdab988d2004-10-09 07:10:44 +00001603 def _fix(self, context):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001604 """Round if it is necessary to keep self within prec precision.
1605
1606 Rounds and fixes the exponent. Does not raise on a sNaN.
1607
1608 Arguments:
1609 self - Decimal instance
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001610 context - context used.
1611 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001612
Facundo Batista353750c2007-09-13 18:13:15 +00001613 if self._is_special:
1614 if self._isnan():
1615 # decapitate payload if necessary
1616 return self._fix_nan(context)
1617 else:
1618 # self is +/-Infinity; return unaltered
Facundo Batista6c398da2007-09-17 17:30:13 +00001619 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001620
Facundo Batista353750c2007-09-13 18:13:15 +00001621 # if self is zero then exponent should be between Etiny and
1622 # Emax if _clamp==0, and between Etiny and Etop if _clamp==1.
1623 Etiny = context.Etiny()
1624 Etop = context.Etop()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001625 if not self:
Facundo Batista353750c2007-09-13 18:13:15 +00001626 exp_max = [context.Emax, Etop][context._clamp]
1627 new_exp = min(max(self._exp, Etiny), exp_max)
1628 if new_exp != self._exp:
1629 context._raise_error(Clamped)
Facundo Batista72bc54f2007-11-23 17:59:00 +00001630 return _dec_from_triple(self._sign, '0', new_exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001631 else:
Facundo Batista6c398da2007-09-17 17:30:13 +00001632 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00001633
1634 # exp_min is the smallest allowable exponent of the result,
1635 # equal to max(self.adjusted()-context.prec+1, Etiny)
1636 exp_min = len(self._int) + self._exp - context.prec
1637 if exp_min > Etop:
1638 # overflow: exp_min > Etop iff self.adjusted() > Emax
1639 context._raise_error(Inexact)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001640 context._raise_error(Rounded)
Facundo Batista353750c2007-09-13 18:13:15 +00001641 return context._raise_error(Overflow, 'above Emax', self._sign)
1642 self_is_subnormal = exp_min < Etiny
1643 if self_is_subnormal:
1644 context._raise_error(Subnormal)
1645 exp_min = Etiny
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001646
Facundo Batista353750c2007-09-13 18:13:15 +00001647 # round if self has too many digits
1648 if self._exp < exp_min:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001649 context._raise_error(Rounded)
Facundo Batista2ec74152007-12-03 17:55:00 +00001650 digits = len(self._int) + self._exp - exp_min
1651 if digits < 0:
1652 self = _dec_from_triple(self._sign, '1', exp_min-1)
1653 digits = 0
1654 this_function = getattr(self, self._pick_rounding_function[context.rounding])
1655 changed = this_function(digits)
1656 coeff = self._int[:digits] or '0'
1657 if changed == 1:
1658 coeff = str(int(coeff)+1)
1659 ans = _dec_from_triple(self._sign, coeff, exp_min)
1660
1661 if changed:
Facundo Batista353750c2007-09-13 18:13:15 +00001662 context._raise_error(Inexact)
1663 if self_is_subnormal:
1664 context._raise_error(Underflow)
1665 if not ans:
1666 # raise Clamped on underflow to 0
1667 context._raise_error(Clamped)
1668 elif len(ans._int) == context.prec+1:
1669 # we get here only if rescaling rounds the
1670 # cofficient up to exactly 10**context.prec
1671 if ans._exp < Etop:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001672 ans = _dec_from_triple(ans._sign,
1673 ans._int[:-1], ans._exp+1)
Facundo Batista353750c2007-09-13 18:13:15 +00001674 else:
1675 # Inexact and Rounded have already been raised
1676 ans = context._raise_error(Overflow, 'above Emax',
1677 self._sign)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001678 return ans
1679
Facundo Batista353750c2007-09-13 18:13:15 +00001680 # fold down if _clamp == 1 and self has too few digits
1681 if context._clamp == 1 and self._exp > Etop:
1682 context._raise_error(Clamped)
Facundo Batista72bc54f2007-11-23 17:59:00 +00001683 self_padded = self._int + '0'*(self._exp - Etop)
1684 return _dec_from_triple(self._sign, self_padded, Etop)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001685
Facundo Batista353750c2007-09-13 18:13:15 +00001686 # here self was representable to begin with; return unchanged
Facundo Batista6c398da2007-09-17 17:30:13 +00001687 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001688
1689 _pick_rounding_function = {}
1690
Facundo Batista353750c2007-09-13 18:13:15 +00001691 # for each of the rounding functions below:
1692 # self is a finite, nonzero Decimal
1693 # prec is an integer satisfying 0 <= prec < len(self._int)
Facundo Batista2ec74152007-12-03 17:55:00 +00001694 #
1695 # each function returns either -1, 0, or 1, as follows:
1696 # 1 indicates that self should be rounded up (away from zero)
1697 # 0 indicates that self should be truncated, and that all the
1698 # digits to be truncated are zeros (so the value is unchanged)
1699 # -1 indicates that there are nonzero digits to be truncated
Facundo Batista353750c2007-09-13 18:13:15 +00001700
1701 def _round_down(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001702 """Also known as round-towards-0, truncate."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001703 if _all_zeros(self._int, prec):
1704 return 0
1705 else:
1706 return -1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001707
Facundo Batista353750c2007-09-13 18:13:15 +00001708 def _round_up(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001709 """Rounds away from 0."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001710 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001711
Facundo Batista353750c2007-09-13 18:13:15 +00001712 def _round_half_up(self, prec):
1713 """Rounds 5 up (away from 0)"""
Facundo Batista72bc54f2007-11-23 17:59:00 +00001714 if self._int[prec] in '56789':
Facundo Batista2ec74152007-12-03 17:55:00 +00001715 return 1
1716 elif _all_zeros(self._int, prec):
1717 return 0
Facundo Batista353750c2007-09-13 18:13:15 +00001718 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001719 return -1
Facundo Batista353750c2007-09-13 18:13:15 +00001720
1721 def _round_half_down(self, prec):
1722 """Round 5 down"""
Facundo Batista2ec74152007-12-03 17:55:00 +00001723 if _exact_half(self._int, prec):
1724 return -1
1725 else:
1726 return self._round_half_up(prec)
Facundo Batista353750c2007-09-13 18:13:15 +00001727
1728 def _round_half_even(self, prec):
1729 """Round 5 to even, rest to nearest."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001730 if _exact_half(self._int, prec) and \
1731 (prec == 0 or self._int[prec-1] in '02468'):
1732 return -1
Facundo Batista353750c2007-09-13 18:13:15 +00001733 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001734 return self._round_half_up(prec)
Facundo Batista353750c2007-09-13 18:13:15 +00001735
1736 def _round_ceiling(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001737 """Rounds up (not away from 0 if negative.)"""
1738 if self._sign:
Facundo Batista353750c2007-09-13 18:13:15 +00001739 return self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001740 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001741 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001742
Facundo Batista353750c2007-09-13 18:13:15 +00001743 def _round_floor(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001744 """Rounds down (not towards 0 if negative)"""
1745 if not self._sign:
Facundo Batista353750c2007-09-13 18:13:15 +00001746 return self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001747 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001748 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001749
Facundo Batista353750c2007-09-13 18:13:15 +00001750 def _round_05up(self, prec):
1751 """Round down unless digit prec-1 is 0 or 5."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001752 if prec and self._int[prec-1] not in '05':
Facundo Batista353750c2007-09-13 18:13:15 +00001753 return self._round_down(prec)
Facundo Batista2ec74152007-12-03 17:55:00 +00001754 else:
1755 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001756
Facundo Batista353750c2007-09-13 18:13:15 +00001757 def fma(self, other, third, context=None):
1758 """Fused multiply-add.
1759
1760 Returns self*other+third with no rounding of the intermediate
1761 product self*other.
1762
1763 self and other are multiplied together, with no rounding of
1764 the result. The third operand is then added to the result,
1765 and a single final rounding is performed.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001766 """
Facundo Batista353750c2007-09-13 18:13:15 +00001767
1768 other = _convert_other(other, raiseit=True)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001769
1770 # compute product; raise InvalidOperation if either operand is
1771 # a signaling NaN or if the product is zero times infinity.
1772 if self._is_special or other._is_special:
1773 if context is None:
1774 context = getcontext()
1775 if self._exp == 'N':
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001776 return context._raise_error(InvalidOperation, 'sNaN', self)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001777 if other._exp == 'N':
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001778 return context._raise_error(InvalidOperation, 'sNaN', other)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001779 if self._exp == 'n':
1780 product = self
1781 elif other._exp == 'n':
1782 product = other
1783 elif self._exp == 'F':
1784 if not other:
1785 return context._raise_error(InvalidOperation,
1786 'INF * 0 in fma')
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001787 product = _SignedInfinity[self._sign ^ other._sign]
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001788 elif other._exp == 'F':
1789 if not self:
1790 return context._raise_error(InvalidOperation,
1791 '0 * INF in fma')
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00001792 product = _SignedInfinity[self._sign ^ other._sign]
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001793 else:
1794 product = _dec_from_triple(self._sign ^ other._sign,
1795 str(int(self._int) * int(other._int)),
1796 self._exp + other._exp)
1797
Facundo Batista353750c2007-09-13 18:13:15 +00001798 third = _convert_other(third, raiseit=True)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001799 return product.__add__(third, context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001800
Facundo Batista353750c2007-09-13 18:13:15 +00001801 def _power_modulo(self, other, modulo, context=None):
1802 """Three argument version of __pow__"""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001803
Facundo Batista353750c2007-09-13 18:13:15 +00001804 # if can't convert other and modulo to Decimal, raise
1805 # TypeError; there's no point returning NotImplemented (no
1806 # equivalent of __rpow__ for three argument pow)
1807 other = _convert_other(other, raiseit=True)
1808 modulo = _convert_other(modulo, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001809
Facundo Batista353750c2007-09-13 18:13:15 +00001810 if context is None:
1811 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001812
Facundo Batista353750c2007-09-13 18:13:15 +00001813 # deal with NaNs: if there are any sNaNs then first one wins,
1814 # (i.e. behaviour for NaNs is identical to that of fma)
1815 self_is_nan = self._isnan()
1816 other_is_nan = other._isnan()
1817 modulo_is_nan = modulo._isnan()
1818 if self_is_nan or other_is_nan or modulo_is_nan:
1819 if self_is_nan == 2:
1820 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001821 self)
Facundo Batista353750c2007-09-13 18:13:15 +00001822 if other_is_nan == 2:
1823 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001824 other)
Facundo Batista353750c2007-09-13 18:13:15 +00001825 if modulo_is_nan == 2:
1826 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001827 modulo)
Facundo Batista353750c2007-09-13 18:13:15 +00001828 if self_is_nan:
Facundo Batista6c398da2007-09-17 17:30:13 +00001829 return self._fix_nan(context)
Facundo Batista353750c2007-09-13 18:13:15 +00001830 if other_is_nan:
Facundo Batista6c398da2007-09-17 17:30:13 +00001831 return other._fix_nan(context)
1832 return modulo._fix_nan(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001833
Facundo Batista353750c2007-09-13 18:13:15 +00001834 # check inputs: we apply same restrictions as Python's pow()
1835 if not (self._isinteger() and
1836 other._isinteger() and
1837 modulo._isinteger()):
1838 return context._raise_error(InvalidOperation,
1839 'pow() 3rd argument not allowed '
1840 'unless all arguments are integers')
1841 if other < 0:
1842 return context._raise_error(InvalidOperation,
1843 'pow() 2nd argument cannot be '
1844 'negative when 3rd argument specified')
1845 if not modulo:
1846 return context._raise_error(InvalidOperation,
1847 'pow() 3rd argument cannot be 0')
1848
1849 # additional restriction for decimal: the modulus must be less
1850 # than 10**prec in absolute value
1851 if modulo.adjusted() >= context.prec:
1852 return context._raise_error(InvalidOperation,
1853 'insufficient precision: pow() 3rd '
1854 'argument must not have more than '
1855 'precision digits')
1856
1857 # define 0**0 == NaN, for consistency with two-argument pow
1858 # (even though it hurts!)
1859 if not other and not self:
1860 return context._raise_error(InvalidOperation,
1861 'at least one of pow() 1st argument '
1862 'and 2nd argument must be nonzero ;'
1863 '0**0 is not defined')
1864
1865 # compute sign of result
1866 if other._iseven():
1867 sign = 0
1868 else:
1869 sign = self._sign
1870
1871 # convert modulo to a Python integer, and self and other to
1872 # Decimal integers (i.e. force their exponents to be >= 0)
1873 modulo = abs(int(modulo))
1874 base = _WorkRep(self.to_integral_value())
1875 exponent = _WorkRep(other.to_integral_value())
1876
1877 # compute result using integer pow()
1878 base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo
1879 for i in xrange(exponent.exp):
1880 base = pow(base, 10, modulo)
1881 base = pow(base, exponent.int, modulo)
1882
Facundo Batista72bc54f2007-11-23 17:59:00 +00001883 return _dec_from_triple(sign, str(base), 0)
Facundo Batista353750c2007-09-13 18:13:15 +00001884
1885 def _power_exact(self, other, p):
1886 """Attempt to compute self**other exactly.
1887
1888 Given Decimals self and other and an integer p, attempt to
1889 compute an exact result for the power self**other, with p
1890 digits of precision. Return None if self**other is not
1891 exactly representable in p digits.
1892
1893 Assumes that elimination of special cases has already been
1894 performed: self and other must both be nonspecial; self must
1895 be positive and not numerically equal to 1; other must be
1896 nonzero. For efficiency, other._exp should not be too large,
1897 so that 10**abs(other._exp) is a feasible calculation."""
1898
1899 # In the comments below, we write x for the value of self and
1900 # y for the value of other. Write x = xc*10**xe and y =
1901 # yc*10**ye.
1902
1903 # The main purpose of this method is to identify the *failure*
1904 # of x**y to be exactly representable with as little effort as
1905 # possible. So we look for cheap and easy tests that
1906 # eliminate the possibility of x**y being exact. Only if all
1907 # these tests are passed do we go on to actually compute x**y.
1908
1909 # Here's the main idea. First normalize both x and y. We
1910 # express y as a rational m/n, with m and n relatively prime
1911 # and n>0. Then for x**y to be exactly representable (at
1912 # *any* precision), xc must be the nth power of a positive
1913 # integer and xe must be divisible by n. If m is negative
1914 # then additionally xc must be a power of either 2 or 5, hence
1915 # a power of 2**n or 5**n.
1916 #
1917 # There's a limit to how small |y| can be: if y=m/n as above
1918 # then:
1919 #
1920 # (1) if xc != 1 then for the result to be representable we
1921 # need xc**(1/n) >= 2, and hence also xc**|y| >= 2. So
1922 # if |y| <= 1/nbits(xc) then xc < 2**nbits(xc) <=
1923 # 2**(1/|y|), hence xc**|y| < 2 and the result is not
1924 # representable.
1925 #
1926 # (2) if xe != 0, |xe|*(1/n) >= 1, so |xe|*|y| >= 1. Hence if
1927 # |y| < 1/|xe| then the result is not representable.
1928 #
1929 # Note that since x is not equal to 1, at least one of (1) and
1930 # (2) must apply. Now |y| < 1/nbits(xc) iff |yc|*nbits(xc) <
1931 # 10**-ye iff len(str(|yc|*nbits(xc)) <= -ye.
1932 #
1933 # There's also a limit to how large y can be, at least if it's
1934 # positive: the normalized result will have coefficient xc**y,
1935 # so if it's representable then xc**y < 10**p, and y <
1936 # p/log10(xc). Hence if y*log10(xc) >= p then the result is
1937 # not exactly representable.
1938
1939 # if len(str(abs(yc*xe)) <= -ye then abs(yc*xe) < 10**-ye,
1940 # so |y| < 1/xe and the result is not representable.
1941 # Similarly, len(str(abs(yc)*xc_bits)) <= -ye implies |y|
1942 # < 1/nbits(xc).
1943
1944 x = _WorkRep(self)
1945 xc, xe = x.int, x.exp
1946 while xc % 10 == 0:
1947 xc //= 10
1948 xe += 1
1949
1950 y = _WorkRep(other)
1951 yc, ye = y.int, y.exp
1952 while yc % 10 == 0:
1953 yc //= 10
1954 ye += 1
1955
1956 # case where xc == 1: result is 10**(xe*y), with xe*y
1957 # required to be an integer
1958 if xc == 1:
1959 if ye >= 0:
1960 exponent = xe*yc*10**ye
1961 else:
1962 exponent, remainder = divmod(xe*yc, 10**-ye)
1963 if remainder:
1964 return None
1965 if y.sign == 1:
1966 exponent = -exponent
1967 # if other is a nonnegative integer, use ideal exponent
1968 if other._isinteger() and other._sign == 0:
1969 ideal_exponent = self._exp*int(other)
1970 zeros = min(exponent-ideal_exponent, p-1)
1971 else:
1972 zeros = 0
Facundo Batista72bc54f2007-11-23 17:59:00 +00001973 return _dec_from_triple(0, '1' + '0'*zeros, exponent-zeros)
Facundo Batista353750c2007-09-13 18:13:15 +00001974
1975 # case where y is negative: xc must be either a power
1976 # of 2 or a power of 5.
1977 if y.sign == 1:
1978 last_digit = xc % 10
1979 if last_digit in (2,4,6,8):
1980 # quick test for power of 2
1981 if xc & -xc != xc:
1982 return None
1983 # now xc is a power of 2; e is its exponent
1984 e = _nbits(xc)-1
1985 # find e*y and xe*y; both must be integers
1986 if ye >= 0:
1987 y_as_int = yc*10**ye
1988 e = e*y_as_int
1989 xe = xe*y_as_int
1990 else:
1991 ten_pow = 10**-ye
1992 e, remainder = divmod(e*yc, ten_pow)
1993 if remainder:
1994 return None
1995 xe, remainder = divmod(xe*yc, ten_pow)
1996 if remainder:
1997 return None
1998
1999 if e*65 >= p*93: # 93/65 > log(10)/log(5)
2000 return None
2001 xc = 5**e
2002
2003 elif last_digit == 5:
2004 # e >= log_5(xc) if xc is a power of 5; we have
2005 # equality all the way up to xc=5**2658
2006 e = _nbits(xc)*28//65
2007 xc, remainder = divmod(5**e, xc)
2008 if remainder:
2009 return None
2010 while xc % 5 == 0:
2011 xc //= 5
2012 e -= 1
2013 if ye >= 0:
2014 y_as_integer = yc*10**ye
2015 e = e*y_as_integer
2016 xe = xe*y_as_integer
2017 else:
2018 ten_pow = 10**-ye
2019 e, remainder = divmod(e*yc, ten_pow)
2020 if remainder:
2021 return None
2022 xe, remainder = divmod(xe*yc, ten_pow)
2023 if remainder:
2024 return None
2025 if e*3 >= p*10: # 10/3 > log(10)/log(2)
2026 return None
2027 xc = 2**e
2028 else:
2029 return None
2030
2031 if xc >= 10**p:
2032 return None
2033 xe = -e-xe
Facundo Batista72bc54f2007-11-23 17:59:00 +00002034 return _dec_from_triple(0, str(xc), xe)
Facundo Batista353750c2007-09-13 18:13:15 +00002035
2036 # now y is positive; find m and n such that y = m/n
2037 if ye >= 0:
2038 m, n = yc*10**ye, 1
2039 else:
2040 if xe != 0 and len(str(abs(yc*xe))) <= -ye:
2041 return None
2042 xc_bits = _nbits(xc)
2043 if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye:
2044 return None
2045 m, n = yc, 10**(-ye)
2046 while m % 2 == n % 2 == 0:
2047 m //= 2
2048 n //= 2
2049 while m % 5 == n % 5 == 0:
2050 m //= 5
2051 n //= 5
2052
2053 # compute nth root of xc*10**xe
2054 if n > 1:
2055 # if 1 < xc < 2**n then xc isn't an nth power
2056 if xc != 1 and xc_bits <= n:
2057 return None
2058
2059 xe, rem = divmod(xe, n)
2060 if rem != 0:
2061 return None
2062
2063 # compute nth root of xc using Newton's method
2064 a = 1L << -(-_nbits(xc)//n) # initial estimate
2065 while True:
2066 q, r = divmod(xc, a**(n-1))
2067 if a <= q:
2068 break
2069 else:
2070 a = (a*(n-1) + q)//n
2071 if not (a == q and r == 0):
2072 return None
2073 xc = a
2074
2075 # now xc*10**xe is the nth root of the original xc*10**xe
2076 # compute mth power of xc*10**xe
2077
2078 # if m > p*100//_log10_lb(xc) then m > p/log10(xc), hence xc**m >
2079 # 10**p and the result is not representable.
2080 if xc > 1 and m > p*100//_log10_lb(xc):
2081 return None
2082 xc = xc**m
2083 xe *= m
2084 if xc > 10**p:
2085 return None
2086
2087 # by this point the result *is* exactly representable
2088 # adjust the exponent to get as close as possible to the ideal
2089 # exponent, if necessary
2090 str_xc = str(xc)
2091 if other._isinteger() and other._sign == 0:
2092 ideal_exponent = self._exp*int(other)
2093 zeros = min(xe-ideal_exponent, p-len(str_xc))
2094 else:
2095 zeros = 0
Facundo Batista72bc54f2007-11-23 17:59:00 +00002096 return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros)
Facundo Batista353750c2007-09-13 18:13:15 +00002097
2098 def __pow__(self, other, modulo=None, context=None):
2099 """Return self ** other [ % modulo].
2100
2101 With two arguments, compute self**other.
2102
2103 With three arguments, compute (self**other) % modulo. For the
2104 three argument form, the following restrictions on the
2105 arguments hold:
2106
2107 - all three arguments must be integral
2108 - other must be nonnegative
2109 - either self or other (or both) must be nonzero
2110 - modulo must be nonzero and must have at most p digits,
2111 where p is the context precision.
2112
2113 If any of these restrictions is violated the InvalidOperation
2114 flag is raised.
2115
2116 The result of pow(self, other, modulo) is identical to the
2117 result that would be obtained by computing (self**other) %
2118 modulo with unbounded precision, but is computed more
2119 efficiently. It is always exact.
2120 """
2121
2122 if modulo is not None:
2123 return self._power_modulo(other, modulo, context)
2124
2125 other = _convert_other(other)
2126 if other is NotImplemented:
2127 return other
2128
2129 if context is None:
2130 context = getcontext()
2131
2132 # either argument is a NaN => result is NaN
2133 ans = self._check_nans(other, context)
2134 if ans:
2135 return ans
2136
2137 # 0**0 = NaN (!), x**0 = 1 for nonzero x (including +/-Infinity)
2138 if not other:
2139 if not self:
2140 return context._raise_error(InvalidOperation, '0 ** 0')
2141 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002142 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002143
2144 # result has sign 1 iff self._sign is 1 and other is an odd integer
2145 result_sign = 0
2146 if self._sign == 1:
2147 if other._isinteger():
2148 if not other._iseven():
2149 result_sign = 1
2150 else:
2151 # -ve**noninteger = NaN
2152 # (-0)**noninteger = 0**noninteger
2153 if self:
2154 return context._raise_error(InvalidOperation,
2155 'x ** y with x negative and y not an integer')
2156 # negate self, without doing any unwanted rounding
Facundo Batista72bc54f2007-11-23 17:59:00 +00002157 self = self.copy_negate()
Facundo Batista353750c2007-09-13 18:13:15 +00002158
2159 # 0**(+ve or Inf)= 0; 0**(-ve or -Inf) = Infinity
2160 if not self:
2161 if other._sign == 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002162 return _dec_from_triple(result_sign, '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00002163 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002164 return _SignedInfinity[result_sign]
Facundo Batista353750c2007-09-13 18:13:15 +00002165
2166 # Inf**(+ve or Inf) = Inf; Inf**(-ve or -Inf) = 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002167 if self._isinfinity():
Facundo Batista353750c2007-09-13 18:13:15 +00002168 if other._sign == 0:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002169 return _SignedInfinity[result_sign]
Facundo Batista353750c2007-09-13 18:13:15 +00002170 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002171 return _dec_from_triple(result_sign, '0', 0)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002172
Facundo Batista353750c2007-09-13 18:13:15 +00002173 # 1**other = 1, but the choice of exponent and the flags
2174 # depend on the exponent of self, and on whether other is a
2175 # positive integer, a negative integer, or neither
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002176 if self == _One:
Facundo Batista353750c2007-09-13 18:13:15 +00002177 if other._isinteger():
2178 # exp = max(self._exp*max(int(other), 0),
2179 # 1-context.prec) but evaluating int(other) directly
2180 # is dangerous until we know other is small (other
2181 # could be 1e999999999)
2182 if other._sign == 1:
2183 multiplier = 0
2184 elif other > context.prec:
2185 multiplier = context.prec
2186 else:
2187 multiplier = int(other)
Martin v. Löwiscfe31282006-07-19 17:18:32 +00002188
Facundo Batista353750c2007-09-13 18:13:15 +00002189 exp = self._exp * multiplier
2190 if exp < 1-context.prec:
2191 exp = 1-context.prec
2192 context._raise_error(Rounded)
2193 else:
2194 context._raise_error(Inexact)
2195 context._raise_error(Rounded)
2196 exp = 1-context.prec
2197
Facundo Batista72bc54f2007-11-23 17:59:00 +00002198 return _dec_from_triple(result_sign, '1'+'0'*-exp, exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002199
2200 # compute adjusted exponent of self
2201 self_adj = self.adjusted()
2202
2203 # self ** infinity is infinity if self > 1, 0 if self < 1
2204 # self ** -infinity is infinity if self < 1, 0 if self > 1
2205 if other._isinfinity():
2206 if (other._sign == 0) == (self_adj < 0):
Facundo Batista72bc54f2007-11-23 17:59:00 +00002207 return _dec_from_triple(result_sign, '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00002208 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002209 return _SignedInfinity[result_sign]
Facundo Batista353750c2007-09-13 18:13:15 +00002210
2211 # from here on, the result always goes through the call
2212 # to _fix at the end of this function.
2213 ans = None
2214
2215 # crude test to catch cases of extreme overflow/underflow. If
2216 # log10(self)*other >= 10**bound and bound >= len(str(Emax))
2217 # then 10**bound >= 10**len(str(Emax)) >= Emax+1 and hence
2218 # self**other >= 10**(Emax+1), so overflow occurs. The test
2219 # for underflow is similar.
2220 bound = self._log10_exp_bound() + other.adjusted()
2221 if (self_adj >= 0) == (other._sign == 0):
2222 # self > 1 and other +ve, or self < 1 and other -ve
2223 # possibility of overflow
2224 if bound >= len(str(context.Emax)):
Facundo Batista72bc54f2007-11-23 17:59:00 +00002225 ans = _dec_from_triple(result_sign, '1', context.Emax+1)
Facundo Batista353750c2007-09-13 18:13:15 +00002226 else:
2227 # self > 1 and other -ve, or self < 1 and other +ve
2228 # possibility of underflow to 0
2229 Etiny = context.Etiny()
2230 if bound >= len(str(-Etiny)):
Facundo Batista72bc54f2007-11-23 17:59:00 +00002231 ans = _dec_from_triple(result_sign, '1', Etiny-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002232
2233 # try for an exact result with precision +1
2234 if ans is None:
2235 ans = self._power_exact(other, context.prec + 1)
2236 if ans is not None and result_sign == 1:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002237 ans = _dec_from_triple(1, ans._int, ans._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002238
2239 # usual case: inexact result, x**y computed directly as exp(y*log(x))
2240 if ans is None:
2241 p = context.prec
2242 x = _WorkRep(self)
2243 xc, xe = x.int, x.exp
2244 y = _WorkRep(other)
2245 yc, ye = y.int, y.exp
2246 if y.sign == 1:
2247 yc = -yc
2248
2249 # compute correctly rounded result: start with precision +3,
2250 # then increase precision until result is unambiguously roundable
2251 extra = 3
2252 while True:
2253 coeff, exp = _dpower(xc, xe, yc, ye, p+extra)
2254 if coeff % (5*10**(len(str(coeff))-p-1)):
2255 break
2256 extra += 3
2257
Facundo Batista72bc54f2007-11-23 17:59:00 +00002258 ans = _dec_from_triple(result_sign, str(coeff), exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002259
2260 # the specification says that for non-integer other we need to
2261 # raise Inexact, even when the result is actually exact. In
2262 # the same way, we need to raise Underflow here if the result
2263 # is subnormal. (The call to _fix will take care of raising
2264 # Rounded and Subnormal, as usual.)
2265 if not other._isinteger():
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002266 context._raise_error(Inexact)
Facundo Batista353750c2007-09-13 18:13:15 +00002267 # pad with zeros up to length context.prec+1 if necessary
2268 if len(ans._int) <= context.prec:
2269 expdiff = context.prec+1 - len(ans._int)
Facundo Batista72bc54f2007-11-23 17:59:00 +00002270 ans = _dec_from_triple(ans._sign, ans._int+'0'*expdiff,
2271 ans._exp-expdiff)
Facundo Batista353750c2007-09-13 18:13:15 +00002272 if ans.adjusted() < context.Emin:
2273 context._raise_error(Underflow)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002274
Facundo Batista353750c2007-09-13 18:13:15 +00002275 # unlike exp, ln and log10, the power function respects the
2276 # rounding mode; no need to use ROUND_HALF_EVEN here
2277 ans = ans._fix(context)
2278 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002279
2280 def __rpow__(self, other, context=None):
2281 """Swaps self/other and returns __pow__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002282 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00002283 if other is NotImplemented:
2284 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002285 return other.__pow__(self, context=context)
2286
2287 def normalize(self, context=None):
2288 """Normalize- strip trailing 0s, change anything equal to 0 to 0e0"""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002289
Facundo Batista353750c2007-09-13 18:13:15 +00002290 if context is None:
2291 context = getcontext()
2292
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002293 if self._is_special:
2294 ans = self._check_nans(context=context)
2295 if ans:
2296 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002297
Raymond Hettingerdab988d2004-10-09 07:10:44 +00002298 dup = self._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002299 if dup._isinfinity():
2300 return dup
2301
2302 if not dup:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002303 return _dec_from_triple(dup._sign, '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00002304 exp_max = [context.Emax, context.Etop()][context._clamp]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002305 end = len(dup._int)
2306 exp = dup._exp
Facundo Batista72bc54f2007-11-23 17:59:00 +00002307 while dup._int[end-1] == '0' and exp < exp_max:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002308 exp += 1
2309 end -= 1
Facundo Batista72bc54f2007-11-23 17:59:00 +00002310 return _dec_from_triple(dup._sign, dup._int[:end], exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002311
Facundo Batistabd2fe832007-09-13 18:42:09 +00002312 def quantize(self, exp, rounding=None, context=None, watchexp=True):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002313 """Quantize self so its exponent is the same as that of exp.
2314
2315 Similar to self._rescale(exp._exp) but with error checking.
2316 """
Facundo Batistabd2fe832007-09-13 18:42:09 +00002317 exp = _convert_other(exp, raiseit=True)
2318
Facundo Batista353750c2007-09-13 18:13:15 +00002319 if context is None:
2320 context = getcontext()
2321 if rounding is None:
2322 rounding = context.rounding
2323
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002324 if self._is_special or exp._is_special:
2325 ans = self._check_nans(exp, context)
2326 if ans:
2327 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002328
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002329 if exp._isinfinity() or self._isinfinity():
2330 if exp._isinfinity() and self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00002331 return Decimal(self) # if both are inf, it is OK
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002332 return context._raise_error(InvalidOperation,
2333 'quantize with one INF')
Facundo Batista353750c2007-09-13 18:13:15 +00002334
Facundo Batistabd2fe832007-09-13 18:42:09 +00002335 # if we're not watching exponents, do a simple rescale
2336 if not watchexp:
2337 ans = self._rescale(exp._exp, rounding)
2338 # raise Inexact and Rounded where appropriate
2339 if ans._exp > self._exp:
2340 context._raise_error(Rounded)
2341 if ans != self:
2342 context._raise_error(Inexact)
2343 return ans
2344
Facundo Batista353750c2007-09-13 18:13:15 +00002345 # exp._exp should be between Etiny and Emax
2346 if not (context.Etiny() <= exp._exp <= context.Emax):
2347 return context._raise_error(InvalidOperation,
2348 'target exponent out of bounds in quantize')
2349
2350 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002351 ans = _dec_from_triple(self._sign, '0', exp._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002352 return ans._fix(context)
2353
2354 self_adjusted = self.adjusted()
2355 if self_adjusted > context.Emax:
2356 return context._raise_error(InvalidOperation,
2357 'exponent of quantize result too large for current context')
2358 if self_adjusted - exp._exp + 1 > context.prec:
2359 return context._raise_error(InvalidOperation,
2360 'quantize result has too many digits for current context')
2361
2362 ans = self._rescale(exp._exp, rounding)
2363 if ans.adjusted() > context.Emax:
2364 return context._raise_error(InvalidOperation,
2365 'exponent of quantize result too large for current context')
2366 if len(ans._int) > context.prec:
2367 return context._raise_error(InvalidOperation,
2368 'quantize result has too many digits for current context')
2369
2370 # raise appropriate flags
2371 if ans._exp > self._exp:
2372 context._raise_error(Rounded)
2373 if ans != self:
2374 context._raise_error(Inexact)
2375 if ans and ans.adjusted() < context.Emin:
2376 context._raise_error(Subnormal)
2377
2378 # call to fix takes care of any necessary folddown
2379 ans = ans._fix(context)
2380 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002381
2382 def same_quantum(self, other):
Facundo Batista1a191df2007-10-02 17:01:24 +00002383 """Return True if self and other have the same exponent; otherwise
2384 return False.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002385
Facundo Batista1a191df2007-10-02 17:01:24 +00002386 If either operand is a special value, the following rules are used:
2387 * return True if both operands are infinities
2388 * return True if both operands are NaNs
2389 * otherwise, return False.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002390 """
Facundo Batista1a191df2007-10-02 17:01:24 +00002391 other = _convert_other(other, raiseit=True)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002392 if self._is_special or other._is_special:
Facundo Batista1a191df2007-10-02 17:01:24 +00002393 return (self.is_nan() and other.is_nan() or
2394 self.is_infinite() and other.is_infinite())
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002395 return self._exp == other._exp
2396
Facundo Batista353750c2007-09-13 18:13:15 +00002397 def _rescale(self, exp, rounding):
2398 """Rescale self so that the exponent is exp, either by padding with zeros
2399 or by truncating digits, using the given rounding mode.
2400
2401 Specials are returned without change. This operation is
2402 quiet: it raises no flags, and uses no information from the
2403 context.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002404
2405 exp = exp to scale to (an integer)
Facundo Batista353750c2007-09-13 18:13:15 +00002406 rounding = rounding mode
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002407 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002408 if self._is_special:
Facundo Batista6c398da2007-09-17 17:30:13 +00002409 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002410 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002411 return _dec_from_triple(self._sign, '0', exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002412
Facundo Batista353750c2007-09-13 18:13:15 +00002413 if self._exp >= exp:
2414 # pad answer with zeros if necessary
Facundo Batista72bc54f2007-11-23 17:59:00 +00002415 return _dec_from_triple(self._sign,
2416 self._int + '0'*(self._exp - exp), exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002417
Facundo Batista353750c2007-09-13 18:13:15 +00002418 # too many digits; round and lose data. If self.adjusted() <
2419 # exp-1, replace self by 10**(exp-1) before rounding
2420 digits = len(self._int) + self._exp - exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002421 if digits < 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002422 self = _dec_from_triple(self._sign, '1', exp-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002423 digits = 0
2424 this_function = getattr(self, self._pick_rounding_function[rounding])
Facundo Batista2ec74152007-12-03 17:55:00 +00002425 changed = this_function(digits)
2426 coeff = self._int[:digits] or '0'
2427 if changed == 1:
2428 coeff = str(int(coeff)+1)
2429 return _dec_from_triple(self._sign, coeff, exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002430
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00002431 def _round(self, places, rounding):
2432 """Round a nonzero, nonspecial Decimal to a fixed number of
2433 significant figures, using the given rounding mode.
2434
2435 Infinities, NaNs and zeros are returned unaltered.
2436
2437 This operation is quiet: it raises no flags, and uses no
2438 information from the context.
2439
2440 """
2441 if places <= 0:
2442 raise ValueError("argument should be at least 1 in _round")
2443 if self._is_special or not self:
2444 return Decimal(self)
2445 ans = self._rescale(self.adjusted()+1-places, rounding)
2446 # it can happen that the rescale alters the adjusted exponent;
2447 # for example when rounding 99.97 to 3 significant figures.
2448 # When this happens we end up with an extra 0 at the end of
2449 # the number; a second rescale fixes this.
2450 if ans.adjusted() != self.adjusted():
2451 ans = ans._rescale(ans.adjusted()+1-places, rounding)
2452 return ans
2453
Facundo Batista353750c2007-09-13 18:13:15 +00002454 def to_integral_exact(self, rounding=None, context=None):
2455 """Rounds to a nearby integer.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002456
Facundo Batista353750c2007-09-13 18:13:15 +00002457 If no rounding mode is specified, take the rounding mode from
2458 the context. This method raises the Rounded and Inexact flags
2459 when appropriate.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002460
Facundo Batista353750c2007-09-13 18:13:15 +00002461 See also: to_integral_value, which does exactly the same as
2462 this method except that it doesn't raise Inexact or Rounded.
2463 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002464 if self._is_special:
2465 ans = self._check_nans(context=context)
2466 if ans:
2467 return ans
Facundo Batista6c398da2007-09-17 17:30:13 +00002468 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002469 if self._exp >= 0:
Facundo Batista6c398da2007-09-17 17:30:13 +00002470 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00002471 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002472 return _dec_from_triple(self._sign, '0', 0)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002473 if context is None:
2474 context = getcontext()
Facundo Batista353750c2007-09-13 18:13:15 +00002475 if rounding is None:
2476 rounding = context.rounding
2477 context._raise_error(Rounded)
2478 ans = self._rescale(0, rounding)
2479 if ans != self:
2480 context._raise_error(Inexact)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002481 return ans
2482
Facundo Batista353750c2007-09-13 18:13:15 +00002483 def to_integral_value(self, rounding=None, context=None):
2484 """Rounds to the nearest integer, without raising inexact, rounded."""
2485 if context is None:
2486 context = getcontext()
2487 if rounding is None:
2488 rounding = context.rounding
2489 if self._is_special:
2490 ans = self._check_nans(context=context)
2491 if ans:
2492 return ans
Facundo Batista6c398da2007-09-17 17:30:13 +00002493 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00002494 if self._exp >= 0:
Facundo Batista6c398da2007-09-17 17:30:13 +00002495 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00002496 else:
2497 return self._rescale(0, rounding)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002498
Facundo Batista353750c2007-09-13 18:13:15 +00002499 # the method name changed, but we provide also the old one, for compatibility
2500 to_integral = to_integral_value
2501
2502 def sqrt(self, context=None):
2503 """Return the square root of self."""
Mark Dickinson3b24ccb2008-03-25 14:33:23 +00002504 if context is None:
2505 context = getcontext()
2506
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002507 if self._is_special:
2508 ans = self._check_nans(context=context)
2509 if ans:
2510 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002511
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002512 if self._isinfinity() and self._sign == 0:
2513 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002514
2515 if not self:
Facundo Batista353750c2007-09-13 18:13:15 +00002516 # exponent = self._exp // 2. sqrt(-0) = -0
Facundo Batista72bc54f2007-11-23 17:59:00 +00002517 ans = _dec_from_triple(self._sign, '0', self._exp // 2)
Facundo Batista353750c2007-09-13 18:13:15 +00002518 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002519
2520 if self._sign == 1:
2521 return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0')
2522
Facundo Batista353750c2007-09-13 18:13:15 +00002523 # At this point self represents a positive number. Let p be
2524 # the desired precision and express self in the form c*100**e
2525 # with c a positive real number and e an integer, c and e
2526 # being chosen so that 100**(p-1) <= c < 100**p. Then the
2527 # (exact) square root of self is sqrt(c)*10**e, and 10**(p-1)
2528 # <= sqrt(c) < 10**p, so the closest representable Decimal at
2529 # precision p is n*10**e where n = round_half_even(sqrt(c)),
2530 # the closest integer to sqrt(c) with the even integer chosen
2531 # in the case of a tie.
2532 #
2533 # To ensure correct rounding in all cases, we use the
2534 # following trick: we compute the square root to an extra
2535 # place (precision p+1 instead of precision p), rounding down.
2536 # Then, if the result is inexact and its last digit is 0 or 5,
2537 # we increase the last digit to 1 or 6 respectively; if it's
2538 # exact we leave the last digit alone. Now the final round to
2539 # p places (or fewer in the case of underflow) will round
2540 # correctly and raise the appropriate flags.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002541
Facundo Batista353750c2007-09-13 18:13:15 +00002542 # use an extra digit of precision
2543 prec = context.prec+1
2544
2545 # write argument in the form c*100**e where e = self._exp//2
2546 # is the 'ideal' exponent, to be used if the square root is
2547 # exactly representable. l is the number of 'digits' of c in
2548 # base 100, so that 100**(l-1) <= c < 100**l.
2549 op = _WorkRep(self)
2550 e = op.exp >> 1
2551 if op.exp & 1:
2552 c = op.int * 10
2553 l = (len(self._int) >> 1) + 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002554 else:
Facundo Batista353750c2007-09-13 18:13:15 +00002555 c = op.int
2556 l = len(self._int)+1 >> 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002557
Facundo Batista353750c2007-09-13 18:13:15 +00002558 # rescale so that c has exactly prec base 100 'digits'
2559 shift = prec-l
2560 if shift >= 0:
2561 c *= 100**shift
2562 exact = True
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002563 else:
Facundo Batista353750c2007-09-13 18:13:15 +00002564 c, remainder = divmod(c, 100**-shift)
2565 exact = not remainder
2566 e -= shift
Martin v. Löwiscfe31282006-07-19 17:18:32 +00002567
Facundo Batista353750c2007-09-13 18:13:15 +00002568 # find n = floor(sqrt(c)) using Newton's method
2569 n = 10**prec
2570 while True:
2571 q = c//n
2572 if n <= q:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002573 break
Facundo Batista353750c2007-09-13 18:13:15 +00002574 else:
2575 n = n + q >> 1
2576 exact = exact and n*n == c
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002577
Facundo Batista353750c2007-09-13 18:13:15 +00002578 if exact:
2579 # result is exact; rescale to use ideal exponent e
2580 if shift >= 0:
2581 # assert n % 10**shift == 0
2582 n //= 10**shift
2583 else:
2584 n *= 10**-shift
2585 e += shift
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002586 else:
Facundo Batista353750c2007-09-13 18:13:15 +00002587 # result is not exact; fix last digit as described above
2588 if n % 5 == 0:
2589 n += 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002590
Facundo Batista72bc54f2007-11-23 17:59:00 +00002591 ans = _dec_from_triple(0, str(n), e)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002592
Facundo Batista353750c2007-09-13 18:13:15 +00002593 # round, and fit to current context
2594 context = context._shallow_copy()
2595 rounding = context._set_rounding(ROUND_HALF_EVEN)
Raymond Hettingerdab988d2004-10-09 07:10:44 +00002596 ans = ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00002597 context.rounding = rounding
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002598
Facundo Batista353750c2007-09-13 18:13:15 +00002599 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002600
2601 def max(self, other, context=None):
2602 """Returns the larger value.
2603
Facundo Batista353750c2007-09-13 18:13:15 +00002604 Like max(self, other) except if one is not a number, returns
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002605 NaN (and signals if one is sNaN). Also rounds.
2606 """
Facundo Batista353750c2007-09-13 18:13:15 +00002607 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002608
Facundo Batista6c398da2007-09-17 17:30:13 +00002609 if context is None:
2610 context = getcontext()
2611
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002612 if self._is_special or other._is_special:
Facundo Batista59c58842007-04-10 12:58:45 +00002613 # If one operand is a quiet NaN and the other is number, then the
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002614 # number is always returned
2615 sn = self._isnan()
2616 on = other._isnan()
2617 if sn or on:
Facundo Batistae29d4352008-12-11 04:19:46 +00002618 if on == 1 and sn == 0:
2619 return self._fix(context)
2620 if sn == 1 and on == 0:
2621 return other._fix(context)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002622 return self._check_nans(other, context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002623
Mark Dickinson2fc92632008-02-06 22:10:50 +00002624 c = self._cmp(other)
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002625 if c == 0:
Facundo Batista59c58842007-04-10 12:58:45 +00002626 # If both operands are finite and equal in numerical value
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002627 # then an ordering is applied:
2628 #
Facundo Batista59c58842007-04-10 12:58:45 +00002629 # If the signs differ then max returns the operand with the
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002630 # positive sign and min returns the operand with the negative sign
2631 #
Facundo Batista59c58842007-04-10 12:58:45 +00002632 # If the signs are the same then the exponent is used to select
Facundo Batista353750c2007-09-13 18:13:15 +00002633 # the result. This is exactly the ordering used in compare_total.
2634 c = self.compare_total(other)
2635
2636 if c == -1:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002637 ans = other
Facundo Batista353750c2007-09-13 18:13:15 +00002638 else:
2639 ans = self
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002640
Facundo Batistae64acfa2007-12-17 14:18:42 +00002641 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002642
2643 def min(self, other, context=None):
2644 """Returns the smaller value.
2645
Facundo Batista59c58842007-04-10 12:58:45 +00002646 Like min(self, other) except if one is not a number, returns
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002647 NaN (and signals if one is sNaN). Also rounds.
2648 """
Facundo Batista353750c2007-09-13 18:13:15 +00002649 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002650
Facundo Batista6c398da2007-09-17 17:30:13 +00002651 if context is None:
2652 context = getcontext()
2653
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002654 if self._is_special or other._is_special:
Facundo Batista59c58842007-04-10 12:58:45 +00002655 # If one operand is a quiet NaN and the other is number, then the
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002656 # number is always returned
2657 sn = self._isnan()
2658 on = other._isnan()
2659 if sn or on:
Facundo Batistae29d4352008-12-11 04:19:46 +00002660 if on == 1 and sn == 0:
2661 return self._fix(context)
2662 if sn == 1 and on == 0:
2663 return other._fix(context)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002664 return self._check_nans(other, context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002665
Mark Dickinson2fc92632008-02-06 22:10:50 +00002666 c = self._cmp(other)
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002667 if c == 0:
Facundo Batista353750c2007-09-13 18:13:15 +00002668 c = self.compare_total(other)
2669
2670 if c == -1:
2671 ans = self
2672 else:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002673 ans = other
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002674
Facundo Batistae64acfa2007-12-17 14:18:42 +00002675 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002676
2677 def _isinteger(self):
2678 """Returns whether self is an integer"""
Facundo Batista353750c2007-09-13 18:13:15 +00002679 if self._is_special:
2680 return False
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002681 if self._exp >= 0:
2682 return True
2683 rest = self._int[self._exp:]
Facundo Batista72bc54f2007-11-23 17:59:00 +00002684 return rest == '0'*len(rest)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002685
2686 def _iseven(self):
Facundo Batista353750c2007-09-13 18:13:15 +00002687 """Returns True if self is even. Assumes self is an integer."""
2688 if not self or self._exp > 0:
2689 return True
Facundo Batista72bc54f2007-11-23 17:59:00 +00002690 return self._int[-1+self._exp] in '02468'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002691
2692 def adjusted(self):
2693 """Return the adjusted exponent of self"""
2694 try:
2695 return self._exp + len(self._int) - 1
Facundo Batista59c58842007-04-10 12:58:45 +00002696 # If NaN or Infinity, self._exp is string
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002697 except TypeError:
2698 return 0
2699
Facundo Batista353750c2007-09-13 18:13:15 +00002700 def canonical(self, context=None):
2701 """Returns the same Decimal object.
2702
2703 As we do not have different encodings for the same number, the
2704 received object already is in its canonical form.
2705 """
2706 return self
2707
2708 def compare_signal(self, other, context=None):
2709 """Compares self to the other operand numerically.
2710
2711 It's pretty much like compare(), but all NaNs signal, with signaling
2712 NaNs taking precedence over quiet NaNs.
2713 """
Mark Dickinson2fc92632008-02-06 22:10:50 +00002714 other = _convert_other(other, raiseit = True)
2715 ans = self._compare_check_nans(other, context)
2716 if ans:
2717 return ans
Facundo Batista353750c2007-09-13 18:13:15 +00002718 return self.compare(other, context=context)
2719
2720 def compare_total(self, other):
2721 """Compares self to other using the abstract representations.
2722
2723 This is not like the standard compare, which use their numerical
2724 value. Note that a total ordering is defined for all possible abstract
2725 representations.
2726 """
2727 # if one is negative and the other is positive, it's easy
2728 if self._sign and not other._sign:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002729 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002730 if not self._sign and other._sign:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002731 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002732 sign = self._sign
2733
2734 # let's handle both NaN types
2735 self_nan = self._isnan()
2736 other_nan = other._isnan()
2737 if self_nan or other_nan:
2738 if self_nan == other_nan:
Mark Dickinson7a7739d2009-08-28 13:25:02 +00002739 # compare payloads as though they're integers
2740 self_key = len(self._int), self._int
2741 other_key = len(other._int), other._int
2742 if self_key < other_key:
Facundo Batista353750c2007-09-13 18:13:15 +00002743 if sign:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002744 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002745 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002746 return _NegativeOne
Mark Dickinson7a7739d2009-08-28 13:25:02 +00002747 if self_key > other_key:
Facundo Batista353750c2007-09-13 18:13:15 +00002748 if sign:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002749 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002750 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002751 return _One
2752 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002753
2754 if sign:
2755 if self_nan == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002756 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002757 if other_nan == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002758 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002759 if self_nan == 2:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002760 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002761 if other_nan == 2:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002762 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002763 else:
2764 if self_nan == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002765 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002766 if other_nan == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002767 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002768 if self_nan == 2:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002769 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002770 if other_nan == 2:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002771 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002772
2773 if self < other:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002774 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002775 if self > other:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002776 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002777
2778 if self._exp < other._exp:
2779 if sign:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002780 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002781 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002782 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002783 if self._exp > other._exp:
2784 if sign:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002785 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002786 else:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002787 return _One
2788 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002789
2790
2791 def compare_total_mag(self, other):
2792 """Compares self to other using abstract repr., ignoring sign.
2793
2794 Like compare_total, but with operand's sign ignored and assumed to be 0.
2795 """
2796 s = self.copy_abs()
2797 o = other.copy_abs()
2798 return s.compare_total(o)
2799
2800 def copy_abs(self):
2801 """Returns a copy with the sign set to 0. """
Facundo Batista72bc54f2007-11-23 17:59:00 +00002802 return _dec_from_triple(0, self._int, self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002803
2804 def copy_negate(self):
2805 """Returns a copy with the sign inverted."""
2806 if self._sign:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002807 return _dec_from_triple(0, self._int, self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002808 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002809 return _dec_from_triple(1, self._int, self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002810
2811 def copy_sign(self, other):
2812 """Returns self with the sign of other."""
Facundo Batista72bc54f2007-11-23 17:59:00 +00002813 return _dec_from_triple(other._sign, self._int,
2814 self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002815
2816 def exp(self, context=None):
2817 """Returns e ** self."""
2818
2819 if context is None:
2820 context = getcontext()
2821
2822 # exp(NaN) = NaN
2823 ans = self._check_nans(context=context)
2824 if ans:
2825 return ans
2826
2827 # exp(-Infinity) = 0
2828 if self._isinfinity() == -1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002829 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002830
2831 # exp(0) = 1
2832 if not self:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002833 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002834
2835 # exp(Infinity) = Infinity
2836 if self._isinfinity() == 1:
2837 return Decimal(self)
2838
2839 # the result is now guaranteed to be inexact (the true
2840 # mathematical result is transcendental). There's no need to
2841 # raise Rounded and Inexact here---they'll always be raised as
2842 # a result of the call to _fix.
2843 p = context.prec
2844 adj = self.adjusted()
2845
2846 # we only need to do any computation for quite a small range
2847 # of adjusted exponents---for example, -29 <= adj <= 10 for
2848 # the default context. For smaller exponent the result is
2849 # indistinguishable from 1 at the given precision, while for
2850 # larger exponent the result either overflows or underflows.
2851 if self._sign == 0 and adj > len(str((context.Emax+1)*3)):
2852 # overflow
Facundo Batista72bc54f2007-11-23 17:59:00 +00002853 ans = _dec_from_triple(0, '1', context.Emax+1)
Facundo Batista353750c2007-09-13 18:13:15 +00002854 elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)):
2855 # underflow to 0
Facundo Batista72bc54f2007-11-23 17:59:00 +00002856 ans = _dec_from_triple(0, '1', context.Etiny()-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002857 elif self._sign == 0 and adj < -p:
2858 # p+1 digits; final round will raise correct flags
Facundo Batista72bc54f2007-11-23 17:59:00 +00002859 ans = _dec_from_triple(0, '1' + '0'*(p-1) + '1', -p)
Facundo Batista353750c2007-09-13 18:13:15 +00002860 elif self._sign == 1 and adj < -p-1:
2861 # p+1 digits; final round will raise correct flags
Facundo Batista72bc54f2007-11-23 17:59:00 +00002862 ans = _dec_from_triple(0, '9'*(p+1), -p-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002863 # general case
2864 else:
2865 op = _WorkRep(self)
2866 c, e = op.int, op.exp
2867 if op.sign == 1:
2868 c = -c
2869
2870 # compute correctly rounded result: increase precision by
2871 # 3 digits at a time until we get an unambiguously
2872 # roundable result
2873 extra = 3
2874 while True:
2875 coeff, exp = _dexp(c, e, p+extra)
2876 if coeff % (5*10**(len(str(coeff))-p-1)):
2877 break
2878 extra += 3
2879
Facundo Batista72bc54f2007-11-23 17:59:00 +00002880 ans = _dec_from_triple(0, str(coeff), exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002881
2882 # at this stage, ans should round correctly with *any*
2883 # rounding mode, not just with ROUND_HALF_EVEN
2884 context = context._shallow_copy()
2885 rounding = context._set_rounding(ROUND_HALF_EVEN)
2886 ans = ans._fix(context)
2887 context.rounding = rounding
2888
2889 return ans
2890
2891 def is_canonical(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002892 """Return True if self is canonical; otherwise return False.
2893
2894 Currently, the encoding of a Decimal instance is always
2895 canonical, so this method returns True for any Decimal.
2896 """
2897 return True
Facundo Batista353750c2007-09-13 18:13:15 +00002898
2899 def is_finite(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002900 """Return True if self is finite; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00002901
Facundo Batista1a191df2007-10-02 17:01:24 +00002902 A Decimal instance is considered finite if it is neither
2903 infinite nor a NaN.
Facundo Batista353750c2007-09-13 18:13:15 +00002904 """
Facundo Batista1a191df2007-10-02 17:01:24 +00002905 return not self._is_special
Facundo Batista353750c2007-09-13 18:13:15 +00002906
2907 def is_infinite(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002908 """Return True if self is infinite; otherwise return False."""
2909 return self._exp == 'F'
Facundo Batista353750c2007-09-13 18:13:15 +00002910
2911 def is_nan(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002912 """Return True if self is a qNaN or sNaN; otherwise return False."""
2913 return self._exp in ('n', 'N')
Facundo Batista353750c2007-09-13 18:13:15 +00002914
2915 def is_normal(self, context=None):
Facundo Batista1a191df2007-10-02 17:01:24 +00002916 """Return True if self is a normal number; otherwise return False."""
2917 if self._is_special or not self:
2918 return False
Facundo Batista353750c2007-09-13 18:13:15 +00002919 if context is None:
2920 context = getcontext()
Facundo Batista1a191df2007-10-02 17:01:24 +00002921 return context.Emin <= self.adjusted() <= context.Emax
Facundo Batista353750c2007-09-13 18:13:15 +00002922
2923 def is_qnan(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002924 """Return True if self is a quiet NaN; otherwise return False."""
2925 return self._exp == 'n'
Facundo Batista353750c2007-09-13 18:13:15 +00002926
2927 def is_signed(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002928 """Return True if self is negative; otherwise return False."""
2929 return self._sign == 1
Facundo Batista353750c2007-09-13 18:13:15 +00002930
2931 def is_snan(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002932 """Return True if self is a signaling NaN; otherwise return False."""
2933 return self._exp == 'N'
Facundo Batista353750c2007-09-13 18:13:15 +00002934
2935 def is_subnormal(self, context=None):
Facundo Batista1a191df2007-10-02 17:01:24 +00002936 """Return True if self is subnormal; otherwise return False."""
2937 if self._is_special or not self:
2938 return False
Facundo Batista353750c2007-09-13 18:13:15 +00002939 if context is None:
2940 context = getcontext()
Facundo Batista1a191df2007-10-02 17:01:24 +00002941 return self.adjusted() < context.Emin
Facundo Batista353750c2007-09-13 18:13:15 +00002942
2943 def is_zero(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002944 """Return True if self is a zero; otherwise return False."""
Facundo Batista72bc54f2007-11-23 17:59:00 +00002945 return not self._is_special and self._int == '0'
Facundo Batista353750c2007-09-13 18:13:15 +00002946
2947 def _ln_exp_bound(self):
2948 """Compute a lower bound for the adjusted exponent of self.ln().
2949 In other words, compute r such that self.ln() >= 10**r. Assumes
2950 that self is finite and positive and that self != 1.
2951 """
2952
2953 # for 0.1 <= x <= 10 we use the inequalities 1-1/x <= ln(x) <= x-1
2954 adj = self._exp + len(self._int) - 1
2955 if adj >= 1:
2956 # argument >= 10; we use 23/10 = 2.3 as a lower bound for ln(10)
2957 return len(str(adj*23//10)) - 1
2958 if adj <= -2:
2959 # argument <= 0.1
2960 return len(str((-1-adj)*23//10)) - 1
2961 op = _WorkRep(self)
2962 c, e = op.int, op.exp
2963 if adj == 0:
2964 # 1 < self < 10
2965 num = str(c-10**-e)
2966 den = str(c)
2967 return len(num) - len(den) - (num < den)
2968 # adj == -1, 0.1 <= self < 1
2969 return e + len(str(10**-e - c)) - 1
2970
2971
2972 def ln(self, context=None):
2973 """Returns the natural (base e) logarithm of self."""
2974
2975 if context is None:
2976 context = getcontext()
2977
2978 # ln(NaN) = NaN
2979 ans = self._check_nans(context=context)
2980 if ans:
2981 return ans
2982
2983 # ln(0.0) == -Infinity
2984 if not self:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002985 return _NegativeInfinity
Facundo Batista353750c2007-09-13 18:13:15 +00002986
2987 # ln(Infinity) = Infinity
2988 if self._isinfinity() == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002989 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00002990
2991 # ln(1.0) == 0.0
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00002992 if self == _One:
2993 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002994
2995 # ln(negative) raises InvalidOperation
2996 if self._sign == 1:
2997 return context._raise_error(InvalidOperation,
2998 'ln of a negative value')
2999
3000 # result is irrational, so necessarily inexact
3001 op = _WorkRep(self)
3002 c, e = op.int, op.exp
3003 p = context.prec
3004
3005 # correctly rounded result: repeatedly increase precision by 3
3006 # until we get an unambiguously roundable result
3007 places = p - self._ln_exp_bound() + 2 # at least p+3 places
3008 while True:
3009 coeff = _dlog(c, e, places)
3010 # assert len(str(abs(coeff)))-p >= 1
3011 if coeff % (5*10**(len(str(abs(coeff)))-p-1)):
3012 break
3013 places += 3
Facundo Batista72bc54f2007-11-23 17:59:00 +00003014 ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)
Facundo Batista353750c2007-09-13 18:13:15 +00003015
3016 context = context._shallow_copy()
3017 rounding = context._set_rounding(ROUND_HALF_EVEN)
3018 ans = ans._fix(context)
3019 context.rounding = rounding
3020 return ans
3021
3022 def _log10_exp_bound(self):
3023 """Compute a lower bound for the adjusted exponent of self.log10().
3024 In other words, find r such that self.log10() >= 10**r.
3025 Assumes that self is finite and positive and that self != 1.
3026 """
3027
3028 # For x >= 10 or x < 0.1 we only need a bound on the integer
3029 # part of log10(self), and this comes directly from the
3030 # exponent of x. For 0.1 <= x <= 10 we use the inequalities
3031 # 1-1/x <= log(x) <= x-1. If x > 1 we have |log10(x)| >
3032 # (1-1/x)/2.31 > 0. If x < 1 then |log10(x)| > (1-x)/2.31 > 0
3033
3034 adj = self._exp + len(self._int) - 1
3035 if adj >= 1:
3036 # self >= 10
3037 return len(str(adj))-1
3038 if adj <= -2:
3039 # self < 0.1
3040 return len(str(-1-adj))-1
3041 op = _WorkRep(self)
3042 c, e = op.int, op.exp
3043 if adj == 0:
3044 # 1 < self < 10
3045 num = str(c-10**-e)
3046 den = str(231*c)
3047 return len(num) - len(den) - (num < den) + 2
3048 # adj == -1, 0.1 <= self < 1
3049 num = str(10**-e-c)
3050 return len(num) + e - (num < "231") - 1
3051
3052 def log10(self, context=None):
3053 """Returns the base 10 logarithm of self."""
3054
3055 if context is None:
3056 context = getcontext()
3057
3058 # log10(NaN) = NaN
3059 ans = self._check_nans(context=context)
3060 if ans:
3061 return ans
3062
3063 # log10(0.0) == -Infinity
3064 if not self:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00003065 return _NegativeInfinity
Facundo Batista353750c2007-09-13 18:13:15 +00003066
3067 # log10(Infinity) = Infinity
3068 if self._isinfinity() == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00003069 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00003070
3071 # log10(negative or -Infinity) raises InvalidOperation
3072 if self._sign == 1:
3073 return context._raise_error(InvalidOperation,
3074 'log10 of a negative value')
3075
3076 # log10(10**n) = n
Facundo Batista72bc54f2007-11-23 17:59:00 +00003077 if self._int[0] == '1' and self._int[1:] == '0'*(len(self._int) - 1):
Facundo Batista353750c2007-09-13 18:13:15 +00003078 # answer may need rounding
3079 ans = Decimal(self._exp + len(self._int) - 1)
3080 else:
3081 # result is irrational, so necessarily inexact
3082 op = _WorkRep(self)
3083 c, e = op.int, op.exp
3084 p = context.prec
3085
3086 # correctly rounded result: repeatedly increase precision
3087 # until result is unambiguously roundable
3088 places = p-self._log10_exp_bound()+2
3089 while True:
3090 coeff = _dlog10(c, e, places)
3091 # assert len(str(abs(coeff)))-p >= 1
3092 if coeff % (5*10**(len(str(abs(coeff)))-p-1)):
3093 break
3094 places += 3
Facundo Batista72bc54f2007-11-23 17:59:00 +00003095 ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)
Facundo Batista353750c2007-09-13 18:13:15 +00003096
3097 context = context._shallow_copy()
3098 rounding = context._set_rounding(ROUND_HALF_EVEN)
3099 ans = ans._fix(context)
3100 context.rounding = rounding
3101 return ans
3102
3103 def logb(self, context=None):
3104 """ Returns the exponent of the magnitude of self's MSD.
3105
3106 The result is the integer which is the exponent of the magnitude
3107 of the most significant digit of self (as though it were truncated
3108 to a single digit while maintaining the value of that digit and
3109 without limiting the resulting exponent).
3110 """
3111 # logb(NaN) = NaN
3112 ans = self._check_nans(context=context)
3113 if ans:
3114 return ans
3115
3116 if context is None:
3117 context = getcontext()
3118
3119 # logb(+/-Inf) = +Inf
3120 if self._isinfinity():
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00003121 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00003122
3123 # logb(0) = -Inf, DivisionByZero
3124 if not self:
Facundo Batistacce8df22007-09-18 16:53:18 +00003125 return context._raise_error(DivisionByZero, 'logb(0)', 1)
Facundo Batista353750c2007-09-13 18:13:15 +00003126
3127 # otherwise, simply return the adjusted exponent of self, as a
3128 # Decimal. Note that no attempt is made to fit the result
3129 # into the current context.
3130 return Decimal(self.adjusted())
3131
3132 def _islogical(self):
3133 """Return True if self is a logical operand.
3134
Andrew M. Kuchlingc8acc882008-01-16 00:32:03 +00003135 For being logical, it must be a finite number with a sign of 0,
Facundo Batista353750c2007-09-13 18:13:15 +00003136 an exponent of 0, and a coefficient whose digits must all be
3137 either 0 or 1.
3138 """
3139 if self._sign != 0 or self._exp != 0:
3140 return False
3141 for dig in self._int:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003142 if dig not in '01':
Facundo Batista353750c2007-09-13 18:13:15 +00003143 return False
3144 return True
3145
3146 def _fill_logical(self, context, opa, opb):
3147 dif = context.prec - len(opa)
3148 if dif > 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003149 opa = '0'*dif + opa
Facundo Batista353750c2007-09-13 18:13:15 +00003150 elif dif < 0:
3151 opa = opa[-context.prec:]
3152 dif = context.prec - len(opb)
3153 if dif > 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003154 opb = '0'*dif + opb
Facundo Batista353750c2007-09-13 18:13:15 +00003155 elif dif < 0:
3156 opb = opb[-context.prec:]
3157 return opa, opb
3158
3159 def logical_and(self, other, context=None):
3160 """Applies an 'and' operation between self and other's digits."""
3161 if context is None:
3162 context = getcontext()
3163 if not self._islogical() or not other._islogical():
3164 return context._raise_error(InvalidOperation)
3165
3166 # fill to context.prec
3167 (opa, opb) = self._fill_logical(context, self._int, other._int)
3168
3169 # make the operation, and clean starting zeroes
Facundo Batista72bc54f2007-11-23 17:59:00 +00003170 result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)])
3171 return _dec_from_triple(0, result.lstrip('0') or '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00003172
3173 def logical_invert(self, context=None):
3174 """Invert all its digits."""
3175 if context is None:
3176 context = getcontext()
Facundo Batista72bc54f2007-11-23 17:59:00 +00003177 return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0),
3178 context)
Facundo Batista353750c2007-09-13 18:13:15 +00003179
3180 def logical_or(self, other, context=None):
3181 """Applies an 'or' operation between self and other's digits."""
3182 if context is None:
3183 context = getcontext()
3184 if not self._islogical() or not other._islogical():
3185 return context._raise_error(InvalidOperation)
3186
3187 # fill to context.prec
3188 (opa, opb) = self._fill_logical(context, self._int, other._int)
3189
3190 # make the operation, and clean starting zeroes
Mark Dickinson65808ff2009-01-04 21:22:02 +00003191 result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)])
Facundo Batista72bc54f2007-11-23 17:59:00 +00003192 return _dec_from_triple(0, result.lstrip('0') or '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00003193
3194 def logical_xor(self, other, context=None):
3195 """Applies an 'xor' operation between self and other's digits."""
3196 if context is None:
3197 context = getcontext()
3198 if not self._islogical() or not other._islogical():
3199 return context._raise_error(InvalidOperation)
3200
3201 # fill to context.prec
3202 (opa, opb) = self._fill_logical(context, self._int, other._int)
3203
3204 # make the operation, and clean starting zeroes
Mark Dickinson65808ff2009-01-04 21:22:02 +00003205 result = "".join([str(int(a)^int(b)) for a,b in zip(opa,opb)])
Facundo Batista72bc54f2007-11-23 17:59:00 +00003206 return _dec_from_triple(0, result.lstrip('0') or '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00003207
3208 def max_mag(self, other, context=None):
3209 """Compares the values numerically with their sign ignored."""
3210 other = _convert_other(other, raiseit=True)
3211
Facundo Batista6c398da2007-09-17 17:30:13 +00003212 if context is None:
3213 context = getcontext()
3214
Facundo Batista353750c2007-09-13 18:13:15 +00003215 if self._is_special or other._is_special:
3216 # If one operand is a quiet NaN and the other is number, then the
3217 # number is always returned
3218 sn = self._isnan()
3219 on = other._isnan()
3220 if sn or on:
Facundo Batistae29d4352008-12-11 04:19:46 +00003221 if on == 1 and sn == 0:
3222 return self._fix(context)
3223 if sn == 1 and on == 0:
3224 return other._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003225 return self._check_nans(other, context)
3226
Mark Dickinson2fc92632008-02-06 22:10:50 +00003227 c = self.copy_abs()._cmp(other.copy_abs())
Facundo Batista353750c2007-09-13 18:13:15 +00003228 if c == 0:
3229 c = self.compare_total(other)
3230
3231 if c == -1:
3232 ans = other
3233 else:
3234 ans = self
3235
Facundo Batistae64acfa2007-12-17 14:18:42 +00003236 return ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003237
3238 def min_mag(self, other, context=None):
3239 """Compares the values numerically with their sign ignored."""
3240 other = _convert_other(other, raiseit=True)
3241
Facundo Batista6c398da2007-09-17 17:30:13 +00003242 if context is None:
3243 context = getcontext()
3244
Facundo Batista353750c2007-09-13 18:13:15 +00003245 if self._is_special or other._is_special:
3246 # If one operand is a quiet NaN and the other is number, then the
3247 # number is always returned
3248 sn = self._isnan()
3249 on = other._isnan()
3250 if sn or on:
Facundo Batistae29d4352008-12-11 04:19:46 +00003251 if on == 1 and sn == 0:
3252 return self._fix(context)
3253 if sn == 1 and on == 0:
3254 return other._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003255 return self._check_nans(other, context)
3256
Mark Dickinson2fc92632008-02-06 22:10:50 +00003257 c = self.copy_abs()._cmp(other.copy_abs())
Facundo Batista353750c2007-09-13 18:13:15 +00003258 if c == 0:
3259 c = self.compare_total(other)
3260
3261 if c == -1:
3262 ans = self
3263 else:
3264 ans = other
3265
Facundo Batistae64acfa2007-12-17 14:18:42 +00003266 return ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003267
3268 def next_minus(self, context=None):
3269 """Returns the largest representable number smaller than itself."""
3270 if context is None:
3271 context = getcontext()
3272
3273 ans = self._check_nans(context=context)
3274 if ans:
3275 return ans
3276
3277 if self._isinfinity() == -1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00003278 return _NegativeInfinity
Facundo Batista353750c2007-09-13 18:13:15 +00003279 if self._isinfinity() == 1:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003280 return _dec_from_triple(0, '9'*context.prec, context.Etop())
Facundo Batista353750c2007-09-13 18:13:15 +00003281
3282 context = context.copy()
3283 context._set_rounding(ROUND_FLOOR)
3284 context._ignore_all_flags()
3285 new_self = self._fix(context)
3286 if new_self != self:
3287 return new_self
Facundo Batista72bc54f2007-11-23 17:59:00 +00003288 return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),
3289 context)
Facundo Batista353750c2007-09-13 18:13:15 +00003290
3291 def next_plus(self, context=None):
3292 """Returns the smallest representable number larger than itself."""
3293 if context is None:
3294 context = getcontext()
3295
3296 ans = self._check_nans(context=context)
3297 if ans:
3298 return ans
3299
3300 if self._isinfinity() == 1:
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00003301 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00003302 if self._isinfinity() == -1:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003303 return _dec_from_triple(1, '9'*context.prec, context.Etop())
Facundo Batista353750c2007-09-13 18:13:15 +00003304
3305 context = context.copy()
3306 context._set_rounding(ROUND_CEILING)
3307 context._ignore_all_flags()
3308 new_self = self._fix(context)
3309 if new_self != self:
3310 return new_self
Facundo Batista72bc54f2007-11-23 17:59:00 +00003311 return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),
3312 context)
Facundo Batista353750c2007-09-13 18:13:15 +00003313
3314 def next_toward(self, other, context=None):
3315 """Returns the number closest to self, in the direction towards other.
3316
3317 The result is the closest representable number to self
3318 (excluding self) that is in the direction towards other,
3319 unless both have the same value. If the two operands are
3320 numerically equal, then the result is a copy of self with the
3321 sign set to be the same as the sign of other.
3322 """
3323 other = _convert_other(other, raiseit=True)
3324
3325 if context is None:
3326 context = getcontext()
3327
3328 ans = self._check_nans(other, context)
3329 if ans:
3330 return ans
3331
Mark Dickinson2fc92632008-02-06 22:10:50 +00003332 comparison = self._cmp(other)
Facundo Batista353750c2007-09-13 18:13:15 +00003333 if comparison == 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003334 return self.copy_sign(other)
Facundo Batista353750c2007-09-13 18:13:15 +00003335
3336 if comparison == -1:
3337 ans = self.next_plus(context)
3338 else: # comparison == 1
3339 ans = self.next_minus(context)
3340
3341 # decide which flags to raise using value of ans
3342 if ans._isinfinity():
3343 context._raise_error(Overflow,
3344 'Infinite result from next_toward',
3345 ans._sign)
3346 context._raise_error(Rounded)
3347 context._raise_error(Inexact)
3348 elif ans.adjusted() < context.Emin:
3349 context._raise_error(Underflow)
3350 context._raise_error(Subnormal)
3351 context._raise_error(Rounded)
3352 context._raise_error(Inexact)
3353 # if precision == 1 then we don't raise Clamped for a
3354 # result 0E-Etiny.
3355 if not ans:
3356 context._raise_error(Clamped)
3357
3358 return ans
3359
3360 def number_class(self, context=None):
3361 """Returns an indication of the class of self.
3362
3363 The class is one of the following strings:
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00003364 sNaN
3365 NaN
Facundo Batista353750c2007-09-13 18:13:15 +00003366 -Infinity
3367 -Normal
3368 -Subnormal
3369 -Zero
3370 +Zero
3371 +Subnormal
3372 +Normal
3373 +Infinity
3374 """
3375 if self.is_snan():
3376 return "sNaN"
3377 if self.is_qnan():
3378 return "NaN"
3379 inf = self._isinfinity()
3380 if inf == 1:
3381 return "+Infinity"
3382 if inf == -1:
3383 return "-Infinity"
3384 if self.is_zero():
3385 if self._sign:
3386 return "-Zero"
3387 else:
3388 return "+Zero"
3389 if context is None:
3390 context = getcontext()
3391 if self.is_subnormal(context=context):
3392 if self._sign:
3393 return "-Subnormal"
3394 else:
3395 return "+Subnormal"
3396 # just a normal, regular, boring number, :)
3397 if self._sign:
3398 return "-Normal"
3399 else:
3400 return "+Normal"
3401
3402 def radix(self):
3403 """Just returns 10, as this is Decimal, :)"""
3404 return Decimal(10)
3405
3406 def rotate(self, other, context=None):
3407 """Returns a rotated copy of self, value-of-other times."""
3408 if context is None:
3409 context = getcontext()
3410
3411 ans = self._check_nans(other, context)
3412 if ans:
3413 return ans
3414
3415 if other._exp != 0:
3416 return context._raise_error(InvalidOperation)
3417 if not (-context.prec <= int(other) <= context.prec):
3418 return context._raise_error(InvalidOperation)
3419
3420 if self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00003421 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003422
3423 # get values, pad if necessary
3424 torot = int(other)
3425 rotdig = self._int
3426 topad = context.prec - len(rotdig)
3427 if topad:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003428 rotdig = '0'*topad + rotdig
Facundo Batista353750c2007-09-13 18:13:15 +00003429
3430 # let's rotate!
3431 rotated = rotdig[torot:] + rotdig[:torot]
Facundo Batista72bc54f2007-11-23 17:59:00 +00003432 return _dec_from_triple(self._sign,
3433 rotated.lstrip('0') or '0', self._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00003434
3435 def scaleb (self, other, context=None):
3436 """Returns self operand after adding the second value to its exp."""
3437 if context is None:
3438 context = getcontext()
3439
3440 ans = self._check_nans(other, context)
3441 if ans:
3442 return ans
3443
3444 if other._exp != 0:
3445 return context._raise_error(InvalidOperation)
3446 liminf = -2 * (context.Emax + context.prec)
3447 limsup = 2 * (context.Emax + context.prec)
3448 if not (liminf <= int(other) <= limsup):
3449 return context._raise_error(InvalidOperation)
3450
3451 if self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00003452 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003453
Facundo Batista72bc54f2007-11-23 17:59:00 +00003454 d = _dec_from_triple(self._sign, self._int, self._exp + int(other))
Facundo Batista353750c2007-09-13 18:13:15 +00003455 d = d._fix(context)
3456 return d
3457
3458 def shift(self, other, context=None):
3459 """Returns a shifted copy of self, value-of-other times."""
3460 if context is None:
3461 context = getcontext()
3462
3463 ans = self._check_nans(other, context)
3464 if ans:
3465 return ans
3466
3467 if other._exp != 0:
3468 return context._raise_error(InvalidOperation)
3469 if not (-context.prec <= int(other) <= context.prec):
3470 return context._raise_error(InvalidOperation)
3471
3472 if self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00003473 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003474
3475 # get values, pad if necessary
3476 torot = int(other)
3477 if not torot:
Facundo Batista6c398da2007-09-17 17:30:13 +00003478 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003479 rotdig = self._int
3480 topad = context.prec - len(rotdig)
3481 if topad:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003482 rotdig = '0'*topad + rotdig
Facundo Batista353750c2007-09-13 18:13:15 +00003483
3484 # let's shift!
3485 if torot < 0:
3486 rotated = rotdig[:torot]
3487 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003488 rotated = rotdig + '0'*torot
Facundo Batista353750c2007-09-13 18:13:15 +00003489 rotated = rotated[-context.prec:]
3490
Facundo Batista72bc54f2007-11-23 17:59:00 +00003491 return _dec_from_triple(self._sign,
3492 rotated.lstrip('0') or '0', self._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00003493
Facundo Batista59c58842007-04-10 12:58:45 +00003494 # Support for pickling, copy, and deepcopy
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003495 def __reduce__(self):
3496 return (self.__class__, (str(self),))
3497
3498 def __copy__(self):
3499 if type(self) == Decimal:
Martin v. Löwiscfe31282006-07-19 17:18:32 +00003500 return self # I'm immutable; therefore I am my own clone
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003501 return self.__class__(str(self))
3502
3503 def __deepcopy__(self, memo):
3504 if type(self) == Decimal:
Martin v. Löwiscfe31282006-07-19 17:18:32 +00003505 return self # My components are also immutable
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003506 return self.__class__(str(self))
3507
Mark Dickinson277859d2009-03-17 23:03:46 +00003508 # PEP 3101 support. the _localeconv keyword argument should be
3509 # considered private: it's provided for ease of testing only.
3510 def __format__(self, specifier, context=None, _localeconv=None):
Mark Dickinsonf4da7772008-02-29 03:29:17 +00003511 """Format a Decimal instance according to the given specifier.
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003512
3513 The specifier should be a standard format specifier, with the
3514 form described in PEP 3101. Formatting types 'e', 'E', 'f',
Mark Dickinson277859d2009-03-17 23:03:46 +00003515 'F', 'g', 'G', 'n' and '%' are supported. If the formatting
3516 type is omitted it defaults to 'g' or 'G', depending on the
3517 value of context.capitals.
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003518 """
3519
3520 # Note: PEP 3101 says that if the type is not present then
3521 # there should be at least one digit after the decimal point.
3522 # We take the liberty of ignoring this requirement for
3523 # Decimal---it's presumably there to make sure that
3524 # format(float, '') behaves similarly to str(float).
3525 if context is None:
3526 context = getcontext()
3527
Mark Dickinson277859d2009-03-17 23:03:46 +00003528 spec = _parse_format_specifier(specifier, _localeconv=_localeconv)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003529
Mark Dickinson277859d2009-03-17 23:03:46 +00003530 # special values don't care about the type or precision
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003531 if self._is_special:
Mark Dickinson277859d2009-03-17 23:03:46 +00003532 sign = _format_sign(self._sign, spec)
3533 body = str(self.copy_abs())
3534 return _format_align(sign, body, spec)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003535
3536 # a type of None defaults to 'g' or 'G', depending on context
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003537 if spec['type'] is None:
3538 spec['type'] = ['g', 'G'][context.capitals]
Mark Dickinson277859d2009-03-17 23:03:46 +00003539
3540 # if type is '%', adjust exponent of self accordingly
3541 if spec['type'] == '%':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003542 self = _dec_from_triple(self._sign, self._int, self._exp+2)
3543
3544 # round if necessary, taking rounding mode from the context
3545 rounding = context.rounding
3546 precision = spec['precision']
3547 if precision is not None:
3548 if spec['type'] in 'eE':
3549 self = self._round(precision+1, rounding)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003550 elif spec['type'] in 'fF%':
3551 self = self._rescale(-precision, rounding)
Mark Dickinson277859d2009-03-17 23:03:46 +00003552 elif spec['type'] in 'gG' and len(self._int) > precision:
3553 self = self._round(precision, rounding)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003554 # special case: zeros with a positive exponent can't be
3555 # represented in fixed point; rescale them to 0e0.
Mark Dickinson277859d2009-03-17 23:03:46 +00003556 if not self and self._exp > 0 and spec['type'] in 'fF%':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003557 self = self._rescale(0, rounding)
3558
3559 # figure out placement of the decimal point
3560 leftdigits = self._exp + len(self._int)
Mark Dickinson277859d2009-03-17 23:03:46 +00003561 if spec['type'] in 'eE':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003562 if not self and precision is not None:
3563 dotplace = 1 - precision
3564 else:
3565 dotplace = 1
Mark Dickinson277859d2009-03-17 23:03:46 +00003566 elif spec['type'] in 'fF%':
3567 dotplace = leftdigits
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003568 elif spec['type'] in 'gG':
3569 if self._exp <= 0 and leftdigits > -6:
3570 dotplace = leftdigits
3571 else:
3572 dotplace = 1
3573
Mark Dickinson277859d2009-03-17 23:03:46 +00003574 # find digits before and after decimal point, and get exponent
3575 if dotplace < 0:
3576 intpart = '0'
3577 fracpart = '0'*(-dotplace) + self._int
3578 elif dotplace > len(self._int):
3579 intpart = self._int + '0'*(dotplace-len(self._int))
3580 fracpart = ''
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003581 else:
Mark Dickinson277859d2009-03-17 23:03:46 +00003582 intpart = self._int[:dotplace] or '0'
3583 fracpart = self._int[dotplace:]
3584 exp = leftdigits-dotplace
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003585
Mark Dickinson277859d2009-03-17 23:03:46 +00003586 # done with the decimal-specific stuff; hand over the rest
3587 # of the formatting to the _format_number function
3588 return _format_number(self._sign, intpart, fracpart, exp, spec)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003589
Facundo Batista72bc54f2007-11-23 17:59:00 +00003590def _dec_from_triple(sign, coefficient, exponent, special=False):
3591 """Create a decimal instance directly, without any validation,
3592 normalization (e.g. removal of leading zeros) or argument
3593 conversion.
3594
3595 This function is for *internal use only*.
3596 """
3597
3598 self = object.__new__(Decimal)
3599 self._sign = sign
3600 self._int = coefficient
3601 self._exp = exponent
3602 self._is_special = special
3603
3604 return self
3605
Raymond Hettinger2c8585b2009-02-03 03:37:03 +00003606# Register Decimal as a kind of Number (an abstract base class).
3607# However, do not register it as Real (because Decimals are not
3608# interoperable with floats).
3609_numbers.Number.register(Decimal)
3610
3611
Facundo Batista59c58842007-04-10 12:58:45 +00003612##### Context class #######################################################
Raymond Hettingerd9c0a7a2004-07-03 10:02:28 +00003613
Martin v. Löwiscfe31282006-07-19 17:18:32 +00003614
3615# get rounding method function:
Facundo Batista59c58842007-04-10 12:58:45 +00003616rounding_functions = [name for name in Decimal.__dict__.keys()
3617 if name.startswith('_round_')]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003618for name in rounding_functions:
Facundo Batista59c58842007-04-10 12:58:45 +00003619 # name is like _round_half_even, goes to the global ROUND_HALF_EVEN value.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003620 globalname = name[1:].upper()
3621 val = globals()[globalname]
3622 Decimal._pick_rounding_function[val] = name
3623
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003624del name, val, globalname, rounding_functions
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003625
Nick Coghlanced12182006-09-02 03:54:17 +00003626class _ContextManager(object):
Nick Coghlan8b6999b2006-08-31 12:00:43 +00003627 """Context manager class to support localcontext().
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003628
Nick Coghlanced12182006-09-02 03:54:17 +00003629 Sets a copy of the supplied context in __enter__() and restores
Nick Coghlan8b6999b2006-08-31 12:00:43 +00003630 the previous decimal context in __exit__()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003631 """
3632 def __init__(self, new_context):
Nick Coghlanced12182006-09-02 03:54:17 +00003633 self.new_context = new_context.copy()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003634 def __enter__(self):
3635 self.saved_context = getcontext()
3636 setcontext(self.new_context)
3637 return self.new_context
3638 def __exit__(self, t, v, tb):
3639 setcontext(self.saved_context)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003640
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003641class Context(object):
3642 """Contains the context for a Decimal instance.
3643
3644 Contains:
3645 prec - precision (for use in rounding, division, square roots..)
Facundo Batista59c58842007-04-10 12:58:45 +00003646 rounding - rounding type (how you round)
Raymond Hettingerbf440692004-07-10 14:14:37 +00003647 traps - If traps[exception] = 1, then the exception is
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003648 raised when it is caused. Otherwise, a value is
3649 substituted in.
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003650 flags - When an exception is caused, flags[exception] is set.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003651 (Whether or not the trap_enabler is set)
3652 Should be reset by user of Decimal instance.
Raymond Hettinger0ea241e2004-07-04 13:53:24 +00003653 Emin - Minimum exponent
3654 Emax - Maximum exponent
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003655 capitals - If 1, 1*10^1 is printed as 1E+1.
3656 If 0, printed as 1e1
Raymond Hettingere0f15812004-07-05 05:36:39 +00003657 _clamp - If 1, change exponents if too high (Default 0)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003658 """
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003659
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003660 def __init__(self, prec=None, rounding=None,
Raymond Hettingerabf8a562004-10-12 09:12:16 +00003661 traps=None, flags=None,
Raymond Hettinger0ea241e2004-07-04 13:53:24 +00003662 Emin=None, Emax=None,
Raymond Hettingere0f15812004-07-05 05:36:39 +00003663 capitals=None, _clamp=0,
Raymond Hettingerabf8a562004-10-12 09:12:16 +00003664 _ignored_flags=None):
3665 if flags is None:
3666 flags = []
3667 if _ignored_flags is None:
3668 _ignored_flags = []
Raymond Hettingerbf440692004-07-10 14:14:37 +00003669 if not isinstance(flags, dict):
Mark Dickinson71f3b852008-05-04 02:25:46 +00003670 flags = dict([(s, int(s in flags)) for s in _signals])
Raymond Hettingerb91af522004-07-14 16:35:30 +00003671 del s
Raymond Hettingerbf440692004-07-10 14:14:37 +00003672 if traps is not None and not isinstance(traps, dict):
Mark Dickinson71f3b852008-05-04 02:25:46 +00003673 traps = dict([(s, int(s in traps)) for s in _signals])
Raymond Hettingerb91af522004-07-14 16:35:30 +00003674 del s
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003675 for name, val in locals().items():
3676 if val is None:
Raymond Hettingereb260842005-06-07 18:52:34 +00003677 setattr(self, name, _copy.copy(getattr(DefaultContext, name)))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003678 else:
3679 setattr(self, name, val)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003680 del self.self
3681
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003682 def __repr__(self):
Raymond Hettingerbf440692004-07-10 14:14:37 +00003683 """Show the current context."""
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003684 s = []
Facundo Batista59c58842007-04-10 12:58:45 +00003685 s.append('Context(prec=%(prec)d, rounding=%(rounding)s, '
3686 'Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d'
3687 % vars(self))
3688 names = [f.__name__ for f, v in self.flags.items() if v]
3689 s.append('flags=[' + ', '.join(names) + ']')
3690 names = [t.__name__ for t, v in self.traps.items() if v]
3691 s.append('traps=[' + ', '.join(names) + ']')
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003692 return ', '.join(s) + ')'
3693
Raymond Hettingerd9c0a7a2004-07-03 10:02:28 +00003694 def clear_flags(self):
3695 """Reset all flags to zero"""
3696 for flag in self.flags:
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003697 self.flags[flag] = 0
Raymond Hettingerd9c0a7a2004-07-03 10:02:28 +00003698
Raymond Hettinger9fce44b2004-08-08 04:03:24 +00003699 def _shallow_copy(self):
3700 """Returns a shallow copy from self."""
Facundo Batistae64acfa2007-12-17 14:18:42 +00003701 nc = Context(self.prec, self.rounding, self.traps,
3702 self.flags, self.Emin, self.Emax,
3703 self.capitals, self._clamp, self._ignored_flags)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003704 return nc
Raymond Hettinger9fce44b2004-08-08 04:03:24 +00003705
3706 def copy(self):
3707 """Returns a deep copy from self."""
Facundo Batista59c58842007-04-10 12:58:45 +00003708 nc = Context(self.prec, self.rounding, self.traps.copy(),
Facundo Batistae64acfa2007-12-17 14:18:42 +00003709 self.flags.copy(), self.Emin, self.Emax,
3710 self.capitals, self._clamp, self._ignored_flags)
Raymond Hettinger9fce44b2004-08-08 04:03:24 +00003711 return nc
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003712 __copy__ = copy
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003713
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003714 def _raise_error(self, condition, explanation = None, *args):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003715 """Handles an error
3716
3717 If the flag is in _ignored_flags, returns the default response.
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003718 Otherwise, it sets the flag, then, if the corresponding
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003719 trap_enabler is set, it reaises the exception. Otherwise, it returns
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003720 the default value after setting the flag.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003721 """
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003722 error = _condition_map.get(condition, condition)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003723 if error in self._ignored_flags:
Facundo Batista59c58842007-04-10 12:58:45 +00003724 # Don't touch the flag
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003725 return error().handle(self, *args)
3726
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003727 self.flags[error] = 1
Raymond Hettingerbf440692004-07-10 14:14:37 +00003728 if not self.traps[error]:
Facundo Batista59c58842007-04-10 12:58:45 +00003729 # The errors define how to handle themselves.
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003730 return condition().handle(self, *args)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003731
3732 # Errors should only be risked on copies of the context
Facundo Batista59c58842007-04-10 12:58:45 +00003733 # self._ignored_flags = []
Mark Dickinson8aca9d02008-05-04 02:05:06 +00003734 raise error(explanation)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003735
3736 def _ignore_all_flags(self):
3737 """Ignore all flags, if they are raised"""
Raymond Hettingerfed52962004-07-14 15:41:57 +00003738 return self._ignore_flags(*_signals)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003739
3740 def _ignore_flags(self, *flags):
3741 """Ignore the flags, if they are raised"""
3742 # Do not mutate-- This way, copies of a context leave the original
3743 # alone.
3744 self._ignored_flags = (self._ignored_flags + list(flags))
3745 return list(flags)
3746
3747 def _regard_flags(self, *flags):
3748 """Stop ignoring the flags, if they are raised"""
3749 if flags and isinstance(flags[0], (tuple,list)):
3750 flags = flags[0]
3751 for flag in flags:
3752 self._ignored_flags.remove(flag)
3753
Nick Coghlan53663a62008-07-15 14:27:37 +00003754 # We inherit object.__hash__, so we must deny this explicitly
3755 __hash__ = None
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003756
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003757 def Etiny(self):
3758 """Returns Etiny (= Emin - prec + 1)"""
3759 return int(self.Emin - self.prec + 1)
3760
3761 def Etop(self):
Raymond Hettingere0f15812004-07-05 05:36:39 +00003762 """Returns maximum exponent (= Emax - prec + 1)"""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003763 return int(self.Emax - self.prec + 1)
3764
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003765 def _set_rounding(self, type):
3766 """Sets the rounding type.
3767
3768 Sets the rounding type, and returns the current (previous)
3769 rounding type. Often used like:
3770
3771 context = context.copy()
3772 # so you don't change the calling context
3773 # if an error occurs in the middle.
3774 rounding = context._set_rounding(ROUND_UP)
3775 val = self.__sub__(other, context=context)
3776 context._set_rounding(rounding)
3777
3778 This will make it round up for that operation.
3779 """
3780 rounding = self.rounding
3781 self.rounding= type
3782 return rounding
3783
Raymond Hettingerfed52962004-07-14 15:41:57 +00003784 def create_decimal(self, num='0'):
Mark Dickinson59bc20b2008-01-12 01:56:00 +00003785 """Creates a new Decimal instance but using self as context.
3786
3787 This method implements the to-number operation of the
3788 IBM Decimal specification."""
3789
3790 if isinstance(num, basestring) and num != num.strip():
3791 return self._raise_error(ConversionSyntax,
3792 "no trailing or leading whitespace is "
3793 "permitted.")
3794
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003795 d = Decimal(num, context=self)
Facundo Batista353750c2007-09-13 18:13:15 +00003796 if d._isnan() and len(d._int) > self.prec - self._clamp:
3797 return self._raise_error(ConversionSyntax,
3798 "diagnostic info too long in NaN")
Raymond Hettingerdab988d2004-10-09 07:10:44 +00003799 return d._fix(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003800
Raymond Hettingerf4d85972009-01-03 19:02:23 +00003801 def create_decimal_from_float(self, f):
3802 """Creates a new Decimal instance from a float but rounding using self
3803 as the context.
3804
3805 >>> context = Context(prec=5, rounding=ROUND_DOWN)
3806 >>> context.create_decimal_from_float(3.1415926535897932)
3807 Decimal('3.1415')
3808 >>> context = Context(prec=5, traps=[Inexact])
3809 >>> context.create_decimal_from_float(3.1415926535897932)
3810 Traceback (most recent call last):
3811 ...
3812 Inexact: None
3813
3814 """
3815 d = Decimal.from_float(f) # An exact conversion
3816 return d._fix(self) # Apply the context rounding
3817
Facundo Batista59c58842007-04-10 12:58:45 +00003818 # Methods
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003819 def abs(self, a):
3820 """Returns the absolute value of the operand.
3821
3822 If the operand is negative, the result is the same as using the minus
Facundo Batista59c58842007-04-10 12:58:45 +00003823 operation on the operand. Otherwise, the result is the same as using
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003824 the plus operation on the operand.
3825
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003826 >>> ExtendedContext.abs(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003827 Decimal('2.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003828 >>> ExtendedContext.abs(Decimal('-100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003829 Decimal('100')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003830 >>> ExtendedContext.abs(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003831 Decimal('101.5')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003832 >>> ExtendedContext.abs(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003833 Decimal('101.5')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003834 """
3835 return a.__abs__(context=self)
3836
3837 def add(self, a, b):
3838 """Return the sum of the two operands.
3839
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003840 >>> ExtendedContext.add(Decimal('12'), Decimal('7.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003841 Decimal('19.00')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003842 >>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003843 Decimal('1.02E+4')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003844 """
3845 return a.__add__(b, context=self)
3846
3847 def _apply(self, a):
Raymond Hettingerdab988d2004-10-09 07:10:44 +00003848 return str(a._fix(self))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003849
Facundo Batista353750c2007-09-13 18:13:15 +00003850 def canonical(self, a):
3851 """Returns the same Decimal object.
3852
3853 As we do not have different encodings for the same number, the
3854 received object already is in its canonical form.
3855
3856 >>> ExtendedContext.canonical(Decimal('2.50'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003857 Decimal('2.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003858 """
3859 return a.canonical(context=self)
3860
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003861 def compare(self, a, b):
3862 """Compares values numerically.
3863
3864 If the signs of the operands differ, a value representing each operand
3865 ('-1' if the operand is less than zero, '0' if the operand is zero or
3866 negative zero, or '1' if the operand is greater than zero) is used in
3867 place of that operand for the comparison instead of the actual
3868 operand.
3869
3870 The comparison is then effected by subtracting the second operand from
3871 the first and then returning a value according to the result of the
3872 subtraction: '-1' if the result is less than zero, '0' if the result is
3873 zero or negative zero, or '1' if the result is greater than zero.
3874
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003875 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003876 Decimal('-1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003877 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003878 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003879 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003880 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003881 >>> ExtendedContext.compare(Decimal('3'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003882 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003883 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003884 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003885 >>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003886 Decimal('-1')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003887 """
3888 return a.compare(b, context=self)
3889
Facundo Batista353750c2007-09-13 18:13:15 +00003890 def compare_signal(self, a, b):
3891 """Compares the values of the two operands numerically.
3892
3893 It's pretty much like compare(), but all NaNs signal, with signaling
3894 NaNs taking precedence over quiet NaNs.
3895
3896 >>> c = ExtendedContext
3897 >>> c.compare_signal(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003898 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003899 >>> c.compare_signal(Decimal('2.1'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003900 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00003901 >>> c.flags[InvalidOperation] = 0
3902 >>> print c.flags[InvalidOperation]
3903 0
3904 >>> c.compare_signal(Decimal('NaN'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003905 Decimal('NaN')
Facundo Batista353750c2007-09-13 18:13:15 +00003906 >>> print c.flags[InvalidOperation]
3907 1
3908 >>> c.flags[InvalidOperation] = 0
3909 >>> print c.flags[InvalidOperation]
3910 0
3911 >>> c.compare_signal(Decimal('sNaN'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003912 Decimal('NaN')
Facundo Batista353750c2007-09-13 18:13:15 +00003913 >>> print c.flags[InvalidOperation]
3914 1
3915 """
3916 return a.compare_signal(b, context=self)
3917
3918 def compare_total(self, a, b):
3919 """Compares two operands using their abstract representation.
3920
3921 This is not like the standard compare, which use their numerical
3922 value. Note that a total ordering is defined for all possible abstract
3923 representations.
3924
3925 >>> ExtendedContext.compare_total(Decimal('12.73'), Decimal('127.9'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003926 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003927 >>> ExtendedContext.compare_total(Decimal('-127'), Decimal('12'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003928 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003929 >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003930 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003931 >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.30'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003932 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00003933 >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('12.300'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003934 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00003935 >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('NaN'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003936 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003937 """
3938 return a.compare_total(b)
3939
3940 def compare_total_mag(self, a, b):
3941 """Compares two operands using their abstract representation ignoring sign.
3942
3943 Like compare_total, but with operand's sign ignored and assumed to be 0.
3944 """
3945 return a.compare_total_mag(b)
3946
3947 def copy_abs(self, a):
3948 """Returns a copy of the operand with the sign set to 0.
3949
3950 >>> ExtendedContext.copy_abs(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003951 Decimal('2.1')
Facundo Batista353750c2007-09-13 18:13:15 +00003952 >>> ExtendedContext.copy_abs(Decimal('-100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003953 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00003954 """
3955 return a.copy_abs()
3956
3957 def copy_decimal(self, a):
3958 """Returns a copy of the decimal objet.
3959
3960 >>> ExtendedContext.copy_decimal(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003961 Decimal('2.1')
Facundo Batista353750c2007-09-13 18:13:15 +00003962 >>> ExtendedContext.copy_decimal(Decimal('-1.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003963 Decimal('-1.00')
Facundo Batista353750c2007-09-13 18:13:15 +00003964 """
Facundo Batista6c398da2007-09-17 17:30:13 +00003965 return Decimal(a)
Facundo Batista353750c2007-09-13 18:13:15 +00003966
3967 def copy_negate(self, a):
3968 """Returns a copy of the operand with the sign inverted.
3969
3970 >>> ExtendedContext.copy_negate(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003971 Decimal('-101.5')
Facundo Batista353750c2007-09-13 18:13:15 +00003972 >>> ExtendedContext.copy_negate(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003973 Decimal('101.5')
Facundo Batista353750c2007-09-13 18:13:15 +00003974 """
3975 return a.copy_negate()
3976
3977 def copy_sign(self, a, b):
3978 """Copies the second operand's sign to the first one.
3979
3980 In detail, it returns a copy of the first operand with the sign
3981 equal to the sign of the second operand.
3982
3983 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003984 Decimal('1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003985 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003986 Decimal('1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003987 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003988 Decimal('-1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003989 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003990 Decimal('-1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003991 """
3992 return a.copy_sign(b)
3993
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003994 def divide(self, a, b):
3995 """Decimal division in a specified context.
3996
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003997 >>> ExtendedContext.divide(Decimal('1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003998 Decimal('0.333333333')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003999 >>> ExtendedContext.divide(Decimal('2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004000 Decimal('0.666666667')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004001 >>> ExtendedContext.divide(Decimal('5'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004002 Decimal('2.5')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004003 >>> ExtendedContext.divide(Decimal('1'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004004 Decimal('0.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004005 >>> ExtendedContext.divide(Decimal('12'), Decimal('12'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004006 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004007 >>> ExtendedContext.divide(Decimal('8.00'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004008 Decimal('4.00')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004009 >>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004010 Decimal('1.20')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004011 >>> ExtendedContext.divide(Decimal('1000'), Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004012 Decimal('10')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004013 >>> ExtendedContext.divide(Decimal('1000'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004014 Decimal('1000')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004015 >>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004016 Decimal('1.20E+6')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004017 """
4018 return a.__div__(b, context=self)
4019
4020 def divide_int(self, a, b):
4021 """Divides two numbers and returns the integer part of the result.
4022
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004023 >>> ExtendedContext.divide_int(Decimal('2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004024 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004025 >>> ExtendedContext.divide_int(Decimal('10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004026 Decimal('3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004027 >>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004028 Decimal('3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004029 """
4030 return a.__floordiv__(b, context=self)
4031
4032 def divmod(self, a, b):
4033 return a.__divmod__(b, context=self)
4034
Facundo Batista353750c2007-09-13 18:13:15 +00004035 def exp(self, a):
4036 """Returns e ** a.
4037
4038 >>> c = ExtendedContext.copy()
4039 >>> c.Emin = -999
4040 >>> c.Emax = 999
4041 >>> c.exp(Decimal('-Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004042 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004043 >>> c.exp(Decimal('-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004044 Decimal('0.367879441')
Facundo Batista353750c2007-09-13 18:13:15 +00004045 >>> c.exp(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004046 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004047 >>> c.exp(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004048 Decimal('2.71828183')
Facundo Batista353750c2007-09-13 18:13:15 +00004049 >>> c.exp(Decimal('0.693147181'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004050 Decimal('2.00000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004051 >>> c.exp(Decimal('+Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004052 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004053 """
4054 return a.exp(context=self)
4055
4056 def fma(self, a, b, c):
4057 """Returns a multiplied by b, plus c.
4058
4059 The first two operands are multiplied together, using multiply,
4060 the third operand is then added to the result of that
4061 multiplication, using add, all with only one final rounding.
4062
4063 >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004064 Decimal('22')
Facundo Batista353750c2007-09-13 18:13:15 +00004065 >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004066 Decimal('-8')
Facundo Batista353750c2007-09-13 18:13:15 +00004067 >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004068 Decimal('1.38435736E+12')
Facundo Batista353750c2007-09-13 18:13:15 +00004069 """
4070 return a.fma(b, c, context=self)
4071
4072 def is_canonical(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004073 """Return True if the operand is canonical; otherwise return False.
4074
4075 Currently, the encoding of a Decimal instance is always
4076 canonical, so this method returns True for any Decimal.
Facundo Batista353750c2007-09-13 18:13:15 +00004077
4078 >>> ExtendedContext.is_canonical(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004079 True
Facundo Batista353750c2007-09-13 18:13:15 +00004080 """
Facundo Batista1a191df2007-10-02 17:01:24 +00004081 return a.is_canonical()
Facundo Batista353750c2007-09-13 18:13:15 +00004082
4083 def is_finite(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004084 """Return True if the operand is finite; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004085
Facundo Batista1a191df2007-10-02 17:01:24 +00004086 A Decimal instance is considered finite if it is neither
4087 infinite nor a NaN.
Facundo Batista353750c2007-09-13 18:13:15 +00004088
4089 >>> ExtendedContext.is_finite(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004090 True
Facundo Batista353750c2007-09-13 18:13:15 +00004091 >>> ExtendedContext.is_finite(Decimal('-0.3'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004092 True
Facundo Batista353750c2007-09-13 18:13:15 +00004093 >>> ExtendedContext.is_finite(Decimal('0'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004094 True
Facundo Batista353750c2007-09-13 18:13:15 +00004095 >>> ExtendedContext.is_finite(Decimal('Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004096 False
Facundo Batista353750c2007-09-13 18:13:15 +00004097 >>> ExtendedContext.is_finite(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004098 False
Facundo Batista353750c2007-09-13 18:13:15 +00004099 """
4100 return a.is_finite()
4101
4102 def is_infinite(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004103 """Return True if the operand is infinite; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004104
4105 >>> ExtendedContext.is_infinite(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004106 False
Facundo Batista353750c2007-09-13 18:13:15 +00004107 >>> ExtendedContext.is_infinite(Decimal('-Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004108 True
Facundo Batista353750c2007-09-13 18:13:15 +00004109 >>> ExtendedContext.is_infinite(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004110 False
Facundo Batista353750c2007-09-13 18:13:15 +00004111 """
4112 return a.is_infinite()
4113
4114 def is_nan(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004115 """Return True if the operand is a qNaN or sNaN;
4116 otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004117
4118 >>> ExtendedContext.is_nan(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004119 False
Facundo Batista353750c2007-09-13 18:13:15 +00004120 >>> ExtendedContext.is_nan(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004121 True
Facundo Batista353750c2007-09-13 18:13:15 +00004122 >>> ExtendedContext.is_nan(Decimal('-sNaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004123 True
Facundo Batista353750c2007-09-13 18:13:15 +00004124 """
4125 return a.is_nan()
4126
4127 def is_normal(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004128 """Return True if the operand is a normal number;
4129 otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004130
4131 >>> c = ExtendedContext.copy()
4132 >>> c.Emin = -999
4133 >>> c.Emax = 999
4134 >>> c.is_normal(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004135 True
Facundo Batista353750c2007-09-13 18:13:15 +00004136 >>> c.is_normal(Decimal('0.1E-999'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004137 False
Facundo Batista353750c2007-09-13 18:13:15 +00004138 >>> c.is_normal(Decimal('0.00'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004139 False
Facundo Batista353750c2007-09-13 18:13:15 +00004140 >>> c.is_normal(Decimal('-Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004141 False
Facundo Batista353750c2007-09-13 18:13:15 +00004142 >>> c.is_normal(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004143 False
Facundo Batista353750c2007-09-13 18:13:15 +00004144 """
4145 return a.is_normal(context=self)
4146
4147 def is_qnan(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004148 """Return True if the operand is a quiet NaN; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004149
4150 >>> ExtendedContext.is_qnan(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004151 False
Facundo Batista353750c2007-09-13 18:13:15 +00004152 >>> ExtendedContext.is_qnan(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004153 True
Facundo Batista353750c2007-09-13 18:13:15 +00004154 >>> ExtendedContext.is_qnan(Decimal('sNaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004155 False
Facundo Batista353750c2007-09-13 18:13:15 +00004156 """
4157 return a.is_qnan()
4158
4159 def is_signed(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004160 """Return True if the operand is negative; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004161
4162 >>> ExtendedContext.is_signed(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004163 False
Facundo Batista353750c2007-09-13 18:13:15 +00004164 >>> ExtendedContext.is_signed(Decimal('-12'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004165 True
Facundo Batista353750c2007-09-13 18:13:15 +00004166 >>> ExtendedContext.is_signed(Decimal('-0'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004167 True
Facundo Batista353750c2007-09-13 18:13:15 +00004168 """
4169 return a.is_signed()
4170
4171 def is_snan(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004172 """Return True if the operand is a signaling NaN;
4173 otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004174
4175 >>> ExtendedContext.is_snan(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004176 False
Facundo Batista353750c2007-09-13 18:13:15 +00004177 >>> ExtendedContext.is_snan(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004178 False
Facundo Batista353750c2007-09-13 18:13:15 +00004179 >>> ExtendedContext.is_snan(Decimal('sNaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004180 True
Facundo Batista353750c2007-09-13 18:13:15 +00004181 """
4182 return a.is_snan()
4183
4184 def is_subnormal(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004185 """Return True if the operand is subnormal; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004186
4187 >>> c = ExtendedContext.copy()
4188 >>> c.Emin = -999
4189 >>> c.Emax = 999
4190 >>> c.is_subnormal(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004191 False
Facundo Batista353750c2007-09-13 18:13:15 +00004192 >>> c.is_subnormal(Decimal('0.1E-999'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004193 True
Facundo Batista353750c2007-09-13 18:13:15 +00004194 >>> c.is_subnormal(Decimal('0.00'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004195 False
Facundo Batista353750c2007-09-13 18:13:15 +00004196 >>> c.is_subnormal(Decimal('-Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004197 False
Facundo Batista353750c2007-09-13 18:13:15 +00004198 >>> c.is_subnormal(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004199 False
Facundo Batista353750c2007-09-13 18:13:15 +00004200 """
4201 return a.is_subnormal(context=self)
4202
4203 def is_zero(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004204 """Return True if the operand is a zero; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004205
4206 >>> ExtendedContext.is_zero(Decimal('0'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004207 True
Facundo Batista353750c2007-09-13 18:13:15 +00004208 >>> ExtendedContext.is_zero(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004209 False
Facundo Batista353750c2007-09-13 18:13:15 +00004210 >>> ExtendedContext.is_zero(Decimal('-0E+2'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004211 True
Facundo Batista353750c2007-09-13 18:13:15 +00004212 """
4213 return a.is_zero()
4214
4215 def ln(self, a):
4216 """Returns the natural (base e) logarithm of the operand.
4217
4218 >>> c = ExtendedContext.copy()
4219 >>> c.Emin = -999
4220 >>> c.Emax = 999
4221 >>> c.ln(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004222 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004223 >>> c.ln(Decimal('1.000'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004224 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004225 >>> c.ln(Decimal('2.71828183'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004226 Decimal('1.00000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004227 >>> c.ln(Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004228 Decimal('2.30258509')
Facundo Batista353750c2007-09-13 18:13:15 +00004229 >>> c.ln(Decimal('+Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004230 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004231 """
4232 return a.ln(context=self)
4233
4234 def log10(self, a):
4235 """Returns the base 10 logarithm of the operand.
4236
4237 >>> c = ExtendedContext.copy()
4238 >>> c.Emin = -999
4239 >>> c.Emax = 999
4240 >>> c.log10(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004241 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004242 >>> c.log10(Decimal('0.001'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004243 Decimal('-3')
Facundo Batista353750c2007-09-13 18:13:15 +00004244 >>> c.log10(Decimal('1.000'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004245 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004246 >>> c.log10(Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004247 Decimal('0.301029996')
Facundo Batista353750c2007-09-13 18:13:15 +00004248 >>> c.log10(Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004249 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004250 >>> c.log10(Decimal('70'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004251 Decimal('1.84509804')
Facundo Batista353750c2007-09-13 18:13:15 +00004252 >>> c.log10(Decimal('+Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004253 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004254 """
4255 return a.log10(context=self)
4256
4257 def logb(self, a):
4258 """ Returns the exponent of the magnitude of the operand's MSD.
4259
4260 The result is the integer which is the exponent of the magnitude
4261 of the most significant digit of the operand (as though the
4262 operand were truncated to a single digit while maintaining the
4263 value of that digit and without limiting the resulting exponent).
4264
4265 >>> ExtendedContext.logb(Decimal('250'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004266 Decimal('2')
Facundo Batista353750c2007-09-13 18:13:15 +00004267 >>> ExtendedContext.logb(Decimal('2.50'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004268 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004269 >>> ExtendedContext.logb(Decimal('0.03'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004270 Decimal('-2')
Facundo Batista353750c2007-09-13 18:13:15 +00004271 >>> ExtendedContext.logb(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004272 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004273 """
4274 return a.logb(context=self)
4275
4276 def logical_and(self, a, b):
4277 """Applies the logical operation 'and' between each operand's digits.
4278
4279 The operands must be both logical numbers.
4280
4281 >>> ExtendedContext.logical_and(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004282 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004283 >>> ExtendedContext.logical_and(Decimal('0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004284 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004285 >>> ExtendedContext.logical_and(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004286 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004287 >>> ExtendedContext.logical_and(Decimal('1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004288 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004289 >>> ExtendedContext.logical_and(Decimal('1100'), Decimal('1010'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004290 Decimal('1000')
Facundo Batista353750c2007-09-13 18:13:15 +00004291 >>> ExtendedContext.logical_and(Decimal('1111'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004292 Decimal('10')
Facundo Batista353750c2007-09-13 18:13:15 +00004293 """
4294 return a.logical_and(b, context=self)
4295
4296 def logical_invert(self, a):
4297 """Invert all the digits in the operand.
4298
4299 The operand must be a logical number.
4300
4301 >>> ExtendedContext.logical_invert(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004302 Decimal('111111111')
Facundo Batista353750c2007-09-13 18:13:15 +00004303 >>> ExtendedContext.logical_invert(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004304 Decimal('111111110')
Facundo Batista353750c2007-09-13 18:13:15 +00004305 >>> ExtendedContext.logical_invert(Decimal('111111111'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004306 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004307 >>> ExtendedContext.logical_invert(Decimal('101010101'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004308 Decimal('10101010')
Facundo Batista353750c2007-09-13 18:13:15 +00004309 """
4310 return a.logical_invert(context=self)
4311
4312 def logical_or(self, a, b):
4313 """Applies the logical operation 'or' between each operand's digits.
4314
4315 The operands must be both logical numbers.
4316
4317 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004318 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004319 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004320 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004321 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004322 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004323 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004324 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004325 >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004326 Decimal('1110')
Facundo Batista353750c2007-09-13 18:13:15 +00004327 >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004328 Decimal('1110')
Facundo Batista353750c2007-09-13 18:13:15 +00004329 """
4330 return a.logical_or(b, context=self)
4331
4332 def logical_xor(self, a, b):
4333 """Applies the logical operation 'xor' between each operand's digits.
4334
4335 The operands must be both logical numbers.
4336
4337 >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004338 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004339 >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004340 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004341 >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004342 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004343 >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004344 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004345 >>> ExtendedContext.logical_xor(Decimal('1100'), Decimal('1010'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004346 Decimal('110')
Facundo Batista353750c2007-09-13 18:13:15 +00004347 >>> ExtendedContext.logical_xor(Decimal('1111'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004348 Decimal('1101')
Facundo Batista353750c2007-09-13 18:13:15 +00004349 """
4350 return a.logical_xor(b, context=self)
4351
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004352 def max(self, a,b):
4353 """max compares two values numerically and returns the maximum.
4354
4355 If either operand is a NaN then the general rules apply.
Andrew M. Kuchlingc8acc882008-01-16 00:32:03 +00004356 Otherwise, the operands are compared as though by the compare
Facundo Batista59c58842007-04-10 12:58:45 +00004357 operation. If they are numerically equal then the left-hand operand
4358 is chosen as the result. Otherwise the maximum (closer to positive
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004359 infinity) of the two operands is chosen as the result.
4360
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004361 >>> ExtendedContext.max(Decimal('3'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004362 Decimal('3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004363 >>> ExtendedContext.max(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004364 Decimal('3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004365 >>> ExtendedContext.max(Decimal('1.0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004366 Decimal('1')
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00004367 >>> ExtendedContext.max(Decimal('7'), Decimal('NaN'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004368 Decimal('7')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004369 """
4370 return a.max(b, context=self)
4371
Facundo Batista353750c2007-09-13 18:13:15 +00004372 def max_mag(self, a, b):
4373 """Compares the values numerically with their sign ignored."""
4374 return a.max_mag(b, context=self)
4375
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004376 def min(self, a,b):
4377 """min compares two values numerically and returns the minimum.
4378
4379 If either operand is a NaN then the general rules apply.
Andrew M. Kuchlingc8acc882008-01-16 00:32:03 +00004380 Otherwise, the operands are compared as though by the compare
Facundo Batista59c58842007-04-10 12:58:45 +00004381 operation. If they are numerically equal then the left-hand operand
4382 is chosen as the result. Otherwise the minimum (closer to negative
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004383 infinity) of the two operands is chosen as the result.
4384
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004385 >>> ExtendedContext.min(Decimal('3'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004386 Decimal('2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004387 >>> ExtendedContext.min(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004388 Decimal('-10')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004389 >>> ExtendedContext.min(Decimal('1.0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004390 Decimal('1.0')
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00004391 >>> ExtendedContext.min(Decimal('7'), Decimal('NaN'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004392 Decimal('7')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004393 """
4394 return a.min(b, context=self)
4395
Facundo Batista353750c2007-09-13 18:13:15 +00004396 def min_mag(self, a, b):
4397 """Compares the values numerically with their sign ignored."""
4398 return a.min_mag(b, context=self)
4399
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004400 def minus(self, a):
4401 """Minus corresponds to unary prefix minus in Python.
4402
4403 The operation is evaluated using the same rules as subtract; the
4404 operation minus(a) is calculated as subtract('0', a) where the '0'
4405 has the same exponent as the operand.
4406
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004407 >>> ExtendedContext.minus(Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004408 Decimal('-1.3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004409 >>> ExtendedContext.minus(Decimal('-1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004410 Decimal('1.3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004411 """
4412 return a.__neg__(context=self)
4413
4414 def multiply(self, a, b):
4415 """multiply multiplies two operands.
4416
Martin v. Löwiscfe31282006-07-19 17:18:32 +00004417 If either operand is a special value then the general rules apply.
4418 Otherwise, the operands are multiplied together ('long multiplication'),
4419 resulting in a number which may be as long as the sum of the lengths
4420 of the two operands.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004421
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004422 >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004423 Decimal('3.60')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004424 >>> ExtendedContext.multiply(Decimal('7'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004425 Decimal('21')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004426 >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004427 Decimal('0.72')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004428 >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004429 Decimal('-0.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004430 >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004431 Decimal('4.28135971E+11')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004432 """
4433 return a.__mul__(b, context=self)
4434
Facundo Batista353750c2007-09-13 18:13:15 +00004435 def next_minus(self, a):
4436 """Returns the largest representable number smaller than a.
4437
4438 >>> c = ExtendedContext.copy()
4439 >>> c.Emin = -999
4440 >>> c.Emax = 999
4441 >>> ExtendedContext.next_minus(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004442 Decimal('0.999999999')
Facundo Batista353750c2007-09-13 18:13:15 +00004443 >>> c.next_minus(Decimal('1E-1007'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004444 Decimal('0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004445 >>> ExtendedContext.next_minus(Decimal('-1.00000003'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004446 Decimal('-1.00000004')
Facundo Batista353750c2007-09-13 18:13:15 +00004447 >>> c.next_minus(Decimal('Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004448 Decimal('9.99999999E+999')
Facundo Batista353750c2007-09-13 18:13:15 +00004449 """
4450 return a.next_minus(context=self)
4451
4452 def next_plus(self, a):
4453 """Returns the smallest representable number larger than a.
4454
4455 >>> c = ExtendedContext.copy()
4456 >>> c.Emin = -999
4457 >>> c.Emax = 999
4458 >>> ExtendedContext.next_plus(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004459 Decimal('1.00000001')
Facundo Batista353750c2007-09-13 18:13:15 +00004460 >>> c.next_plus(Decimal('-1E-1007'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004461 Decimal('-0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004462 >>> ExtendedContext.next_plus(Decimal('-1.00000003'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004463 Decimal('-1.00000002')
Facundo Batista353750c2007-09-13 18:13:15 +00004464 >>> c.next_plus(Decimal('-Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004465 Decimal('-9.99999999E+999')
Facundo Batista353750c2007-09-13 18:13:15 +00004466 """
4467 return a.next_plus(context=self)
4468
4469 def next_toward(self, a, b):
4470 """Returns the number closest to a, in direction towards b.
4471
4472 The result is the closest representable number from the first
4473 operand (but not the first operand) that is in the direction
4474 towards the second operand, unless the operands have the same
4475 value.
4476
4477 >>> c = ExtendedContext.copy()
4478 >>> c.Emin = -999
4479 >>> c.Emax = 999
4480 >>> c.next_toward(Decimal('1'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004481 Decimal('1.00000001')
Facundo Batista353750c2007-09-13 18:13:15 +00004482 >>> c.next_toward(Decimal('-1E-1007'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004483 Decimal('-0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004484 >>> c.next_toward(Decimal('-1.00000003'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004485 Decimal('-1.00000002')
Facundo Batista353750c2007-09-13 18:13:15 +00004486 >>> c.next_toward(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004487 Decimal('0.999999999')
Facundo Batista353750c2007-09-13 18:13:15 +00004488 >>> c.next_toward(Decimal('1E-1007'), Decimal('-100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004489 Decimal('0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004490 >>> c.next_toward(Decimal('-1.00000003'), Decimal('-10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004491 Decimal('-1.00000004')
Facundo Batista353750c2007-09-13 18:13:15 +00004492 >>> c.next_toward(Decimal('0.00'), Decimal('-0.0000'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004493 Decimal('-0.00')
Facundo Batista353750c2007-09-13 18:13:15 +00004494 """
4495 return a.next_toward(b, context=self)
4496
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004497 def normalize(self, a):
Raymond Hettingere0f15812004-07-05 05:36:39 +00004498 """normalize reduces an operand to its simplest form.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004499
4500 Essentially a plus operation with all trailing zeros removed from the
4501 result.
4502
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004503 >>> ExtendedContext.normalize(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004504 Decimal('2.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004505 >>> ExtendedContext.normalize(Decimal('-2.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004506 Decimal('-2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004507 >>> ExtendedContext.normalize(Decimal('1.200'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004508 Decimal('1.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004509 >>> ExtendedContext.normalize(Decimal('-120'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004510 Decimal('-1.2E+2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004511 >>> ExtendedContext.normalize(Decimal('120.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004512 Decimal('1.2E+2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004513 >>> ExtendedContext.normalize(Decimal('0.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004514 Decimal('0')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004515 """
4516 return a.normalize(context=self)
4517
Facundo Batista353750c2007-09-13 18:13:15 +00004518 def number_class(self, a):
4519 """Returns an indication of the class of the operand.
4520
4521 The class is one of the following strings:
4522 -sNaN
4523 -NaN
4524 -Infinity
4525 -Normal
4526 -Subnormal
4527 -Zero
4528 +Zero
4529 +Subnormal
4530 +Normal
4531 +Infinity
4532
4533 >>> c = Context(ExtendedContext)
4534 >>> c.Emin = -999
4535 >>> c.Emax = 999
4536 >>> c.number_class(Decimal('Infinity'))
4537 '+Infinity'
4538 >>> c.number_class(Decimal('1E-10'))
4539 '+Normal'
4540 >>> c.number_class(Decimal('2.50'))
4541 '+Normal'
4542 >>> c.number_class(Decimal('0.1E-999'))
4543 '+Subnormal'
4544 >>> c.number_class(Decimal('0'))
4545 '+Zero'
4546 >>> c.number_class(Decimal('-0'))
4547 '-Zero'
4548 >>> c.number_class(Decimal('-0.1E-999'))
4549 '-Subnormal'
4550 >>> c.number_class(Decimal('-1E-10'))
4551 '-Normal'
4552 >>> c.number_class(Decimal('-2.50'))
4553 '-Normal'
4554 >>> c.number_class(Decimal('-Infinity'))
4555 '-Infinity'
4556 >>> c.number_class(Decimal('NaN'))
4557 'NaN'
4558 >>> c.number_class(Decimal('-NaN'))
4559 'NaN'
4560 >>> c.number_class(Decimal('sNaN'))
4561 'sNaN'
4562 """
4563 return a.number_class(context=self)
4564
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004565 def plus(self, a):
4566 """Plus corresponds to unary prefix plus in Python.
4567
4568 The operation is evaluated using the same rules as add; the
4569 operation plus(a) is calculated as add('0', a) where the '0'
4570 has the same exponent as the operand.
4571
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004572 >>> ExtendedContext.plus(Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004573 Decimal('1.3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004574 >>> ExtendedContext.plus(Decimal('-1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004575 Decimal('-1.3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004576 """
4577 return a.__pos__(context=self)
4578
4579 def power(self, a, b, modulo=None):
4580 """Raises a to the power of b, to modulo if given.
4581
Facundo Batista353750c2007-09-13 18:13:15 +00004582 With two arguments, compute a**b. If a is negative then b
4583 must be integral. The result will be inexact unless b is
4584 integral and the result is finite and can be expressed exactly
4585 in 'precision' digits.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004586
Facundo Batista353750c2007-09-13 18:13:15 +00004587 With three arguments, compute (a**b) % modulo. For the
4588 three argument form, the following restrictions on the
4589 arguments hold:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004590
Facundo Batista353750c2007-09-13 18:13:15 +00004591 - all three arguments must be integral
4592 - b must be nonnegative
4593 - at least one of a or b must be nonzero
4594 - modulo must be nonzero and have at most 'precision' digits
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004595
Facundo Batista353750c2007-09-13 18:13:15 +00004596 The result of pow(a, b, modulo) is identical to the result
4597 that would be obtained by computing (a**b) % modulo with
4598 unbounded precision, but is computed more efficiently. It is
4599 always exact.
4600
4601 >>> c = ExtendedContext.copy()
4602 >>> c.Emin = -999
4603 >>> c.Emax = 999
4604 >>> c.power(Decimal('2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004605 Decimal('8')
Facundo Batista353750c2007-09-13 18:13:15 +00004606 >>> c.power(Decimal('-2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004607 Decimal('-8')
Facundo Batista353750c2007-09-13 18:13:15 +00004608 >>> c.power(Decimal('2'), Decimal('-3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004609 Decimal('0.125')
Facundo Batista353750c2007-09-13 18:13:15 +00004610 >>> c.power(Decimal('1.7'), Decimal('8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004611 Decimal('69.7575744')
Facundo Batista353750c2007-09-13 18:13:15 +00004612 >>> c.power(Decimal('10'), Decimal('0.301029996'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004613 Decimal('2.00000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004614 >>> c.power(Decimal('Infinity'), Decimal('-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004615 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004616 >>> c.power(Decimal('Infinity'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004617 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004618 >>> c.power(Decimal('Infinity'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004619 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004620 >>> c.power(Decimal('-Infinity'), Decimal('-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004621 Decimal('-0')
Facundo Batista353750c2007-09-13 18:13:15 +00004622 >>> c.power(Decimal('-Infinity'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004623 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004624 >>> c.power(Decimal('-Infinity'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004625 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004626 >>> c.power(Decimal('-Infinity'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004627 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004628 >>> c.power(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004629 Decimal('NaN')
Facundo Batista353750c2007-09-13 18:13:15 +00004630
4631 >>> c.power(Decimal('3'), Decimal('7'), Decimal('16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004632 Decimal('11')
Facundo Batista353750c2007-09-13 18:13:15 +00004633 >>> c.power(Decimal('-3'), Decimal('7'), Decimal('16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004634 Decimal('-11')
Facundo Batista353750c2007-09-13 18:13:15 +00004635 >>> c.power(Decimal('-3'), Decimal('8'), Decimal('16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004636 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004637 >>> c.power(Decimal('3'), Decimal('7'), Decimal('-16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004638 Decimal('11')
Facundo Batista353750c2007-09-13 18:13:15 +00004639 >>> c.power(Decimal('23E12345'), Decimal('67E189'), Decimal('123456789'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004640 Decimal('11729830')
Facundo Batista353750c2007-09-13 18:13:15 +00004641 >>> c.power(Decimal('-0'), Decimal('17'), Decimal('1729'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004642 Decimal('-0')
Facundo Batista353750c2007-09-13 18:13:15 +00004643 >>> c.power(Decimal('-23'), Decimal('0'), Decimal('65537'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004644 Decimal('1')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004645 """
4646 return a.__pow__(b, modulo, context=self)
4647
4648 def quantize(self, a, b):
Facundo Batista59c58842007-04-10 12:58:45 +00004649 """Returns a value equal to 'a' (rounded), having the exponent of 'b'.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004650
4651 The coefficient of the result is derived from that of the left-hand
Facundo Batista59c58842007-04-10 12:58:45 +00004652 operand. It may be rounded using the current rounding setting (if the
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004653 exponent is being increased), multiplied by a positive power of ten (if
4654 the exponent is being decreased), or is unchanged (if the exponent is
4655 already equal to that of the right-hand operand).
4656
4657 Unlike other operations, if the length of the coefficient after the
4658 quantize operation would be greater than precision then an Invalid
Facundo Batista59c58842007-04-10 12:58:45 +00004659 operation condition is raised. This guarantees that, unless there is
4660 an error condition, the exponent of the result of a quantize is always
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004661 equal to that of the right-hand operand.
4662
4663 Also unlike other operations, quantize will never raise Underflow, even
4664 if the result is subnormal and inexact.
4665
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004666 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004667 Decimal('2.170')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004668 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004669 Decimal('2.17')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004670 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004671 Decimal('2.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004672 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004673 Decimal('2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004674 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004675 Decimal('0E+1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004676 >>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004677 Decimal('-Infinity')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004678 >>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004679 Decimal('NaN')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004680 >>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004681 Decimal('-0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004682 >>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004683 Decimal('-0E+5')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004684 >>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004685 Decimal('NaN')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004686 >>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004687 Decimal('NaN')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004688 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004689 Decimal('217.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004690 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004691 Decimal('217')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004692 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004693 Decimal('2.2E+2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004694 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004695 Decimal('2E+2')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004696 """
4697 return a.quantize(b, context=self)
4698
Facundo Batista353750c2007-09-13 18:13:15 +00004699 def radix(self):
4700 """Just returns 10, as this is Decimal, :)
4701
4702 >>> ExtendedContext.radix()
Raymond Hettingerabe32372008-02-14 02:41:22 +00004703 Decimal('10')
Facundo Batista353750c2007-09-13 18:13:15 +00004704 """
4705 return Decimal(10)
4706
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004707 def remainder(self, a, b):
4708 """Returns the remainder from integer division.
4709
4710 The result is the residue of the dividend after the operation of
Facundo Batista59c58842007-04-10 12:58:45 +00004711 calculating integer division as described for divide-integer, rounded
Neal Norwitz0d4c06e2007-04-25 06:30:05 +00004712 to precision digits if necessary. The sign of the result, if
Facundo Batista59c58842007-04-10 12:58:45 +00004713 non-zero, is the same as that of the original dividend.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004714
4715 This operation will fail under the same conditions as integer division
4716 (that is, if integer division on the same two operands would fail, the
4717 remainder cannot be calculated).
4718
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004719 >>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004720 Decimal('2.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004721 >>> ExtendedContext.remainder(Decimal('10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004722 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004723 >>> ExtendedContext.remainder(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004724 Decimal('-1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004725 >>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004726 Decimal('0.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004727 >>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004728 Decimal('0.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004729 >>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004730 Decimal('1.0')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004731 """
4732 return a.__mod__(b, context=self)
4733
4734 def remainder_near(self, a, b):
4735 """Returns to be "a - b * n", where n is the integer nearest the exact
4736 value of "x / b" (if two integers are equally near then the even one
Facundo Batista59c58842007-04-10 12:58:45 +00004737 is chosen). If the result is equal to 0 then its sign will be the
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004738 sign of a.
4739
4740 This operation will fail under the same conditions as integer division
4741 (that is, if integer division on the same two operands would fail, the
4742 remainder cannot be calculated).
4743
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004744 >>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004745 Decimal('-0.9')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004746 >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004747 Decimal('-2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004748 >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004749 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004750 >>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004751 Decimal('-1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004752 >>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004753 Decimal('0.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004754 >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004755 Decimal('0.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004756 >>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004757 Decimal('-0.3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004758 """
4759 return a.remainder_near(b, context=self)
4760
Facundo Batista353750c2007-09-13 18:13:15 +00004761 def rotate(self, a, b):
4762 """Returns a rotated copy of a, b times.
4763
4764 The coefficient of the result is a rotated copy of the digits in
4765 the coefficient of the first operand. The number of places of
4766 rotation is taken from the absolute value of the second operand,
4767 with the rotation being to the left if the second operand is
4768 positive or to the right otherwise.
4769
4770 >>> ExtendedContext.rotate(Decimal('34'), Decimal('8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004771 Decimal('400000003')
Facundo Batista353750c2007-09-13 18:13:15 +00004772 >>> ExtendedContext.rotate(Decimal('12'), Decimal('9'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004773 Decimal('12')
Facundo Batista353750c2007-09-13 18:13:15 +00004774 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004775 Decimal('891234567')
Facundo Batista353750c2007-09-13 18:13:15 +00004776 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004777 Decimal('123456789')
Facundo Batista353750c2007-09-13 18:13:15 +00004778 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004779 Decimal('345678912')
Facundo Batista353750c2007-09-13 18:13:15 +00004780 """
4781 return a.rotate(b, context=self)
4782
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004783 def same_quantum(self, a, b):
4784 """Returns True if the two operands have the same exponent.
4785
4786 The result is never affected by either the sign or the coefficient of
4787 either operand.
4788
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004789 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004790 False
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004791 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004792 True
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004793 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004794 False
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004795 >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004796 True
4797 """
4798 return a.same_quantum(b)
4799
Facundo Batista353750c2007-09-13 18:13:15 +00004800 def scaleb (self, a, b):
4801 """Returns the first operand after adding the second value its exp.
4802
4803 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004804 Decimal('0.0750')
Facundo Batista353750c2007-09-13 18:13:15 +00004805 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004806 Decimal('7.50')
Facundo Batista353750c2007-09-13 18:13:15 +00004807 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004808 Decimal('7.50E+3')
Facundo Batista353750c2007-09-13 18:13:15 +00004809 """
4810 return a.scaleb (b, context=self)
4811
4812 def shift(self, a, b):
4813 """Returns a shifted copy of a, b times.
4814
4815 The coefficient of the result is a shifted copy of the digits
4816 in the coefficient of the first operand. The number of places
4817 to shift is taken from the absolute value of the second operand,
4818 with the shift being to the left if the second operand is
4819 positive or to the right otherwise. Digits shifted into the
4820 coefficient are zeros.
4821
4822 >>> ExtendedContext.shift(Decimal('34'), Decimal('8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004823 Decimal('400000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004824 >>> ExtendedContext.shift(Decimal('12'), Decimal('9'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004825 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004826 >>> ExtendedContext.shift(Decimal('123456789'), Decimal('-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004827 Decimal('1234567')
Facundo Batista353750c2007-09-13 18:13:15 +00004828 >>> ExtendedContext.shift(Decimal('123456789'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004829 Decimal('123456789')
Facundo Batista353750c2007-09-13 18:13:15 +00004830 >>> ExtendedContext.shift(Decimal('123456789'), Decimal('+2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004831 Decimal('345678900')
Facundo Batista353750c2007-09-13 18:13:15 +00004832 """
4833 return a.shift(b, context=self)
4834
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004835 def sqrt(self, a):
Facundo Batista59c58842007-04-10 12:58:45 +00004836 """Square root of a non-negative number to context precision.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004837
4838 If the result must be inexact, it is rounded using the round-half-even
4839 algorithm.
4840
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004841 >>> ExtendedContext.sqrt(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004842 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004843 >>> ExtendedContext.sqrt(Decimal('-0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004844 Decimal('-0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004845 >>> ExtendedContext.sqrt(Decimal('0.39'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004846 Decimal('0.624499800')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004847 >>> ExtendedContext.sqrt(Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004848 Decimal('10')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004849 >>> ExtendedContext.sqrt(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004850 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004851 >>> ExtendedContext.sqrt(Decimal('1.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004852 Decimal('1.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004853 >>> ExtendedContext.sqrt(Decimal('1.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004854 Decimal('1.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004855 >>> ExtendedContext.sqrt(Decimal('7'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004856 Decimal('2.64575131')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004857 >>> ExtendedContext.sqrt(Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004858 Decimal('3.16227766')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004859 >>> ExtendedContext.prec
Raymond Hettinger6ea48452004-07-03 12:26:21 +00004860 9
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004861 """
4862 return a.sqrt(context=self)
4863
4864 def subtract(self, a, b):
Georg Brandlf33d01d2005-08-22 19:35:18 +00004865 """Return the difference between the two operands.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004866
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004867 >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004868 Decimal('0.23')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004869 >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004870 Decimal('0.00')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004871 >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004872 Decimal('-0.77')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004873 """
4874 return a.__sub__(b, context=self)
4875
4876 def to_eng_string(self, a):
4877 """Converts a number to a string, using scientific notation.
4878
4879 The operation is not affected by the context.
4880 """
4881 return a.to_eng_string(context=self)
4882
4883 def to_sci_string(self, a):
4884 """Converts a number to a string, using scientific notation.
4885
4886 The operation is not affected by the context.
4887 """
4888 return a.__str__(context=self)
4889
Facundo Batista353750c2007-09-13 18:13:15 +00004890 def to_integral_exact(self, a):
4891 """Rounds to an integer.
4892
4893 When the operand has a negative exponent, the result is the same
4894 as using the quantize() operation using the given operand as the
4895 left-hand-operand, 1E+0 as the right-hand-operand, and the precision
4896 of the operand as the precision setting; Inexact and Rounded flags
4897 are allowed in this operation. The rounding mode is taken from the
4898 context.
4899
4900 >>> ExtendedContext.to_integral_exact(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004901 Decimal('2')
Facundo Batista353750c2007-09-13 18:13:15 +00004902 >>> ExtendedContext.to_integral_exact(Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004903 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004904 >>> ExtendedContext.to_integral_exact(Decimal('100.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004905 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004906 >>> ExtendedContext.to_integral_exact(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004907 Decimal('102')
Facundo Batista353750c2007-09-13 18:13:15 +00004908 >>> ExtendedContext.to_integral_exact(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004909 Decimal('-102')
Facundo Batista353750c2007-09-13 18:13:15 +00004910 >>> ExtendedContext.to_integral_exact(Decimal('10E+5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004911 Decimal('1.0E+6')
Facundo Batista353750c2007-09-13 18:13:15 +00004912 >>> ExtendedContext.to_integral_exact(Decimal('7.89E+77'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004913 Decimal('7.89E+77')
Facundo Batista353750c2007-09-13 18:13:15 +00004914 >>> ExtendedContext.to_integral_exact(Decimal('-Inf'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004915 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004916 """
4917 return a.to_integral_exact(context=self)
4918
4919 def to_integral_value(self, a):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004920 """Rounds to an integer.
4921
4922 When the operand has a negative exponent, the result is the same
4923 as using the quantize() operation using the given operand as the
4924 left-hand-operand, 1E+0 as the right-hand-operand, and the precision
4925 of the operand as the precision setting, except that no flags will
Facundo Batista59c58842007-04-10 12:58:45 +00004926 be set. The rounding mode is taken from the context.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004927
Facundo Batista353750c2007-09-13 18:13:15 +00004928 >>> ExtendedContext.to_integral_value(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004929 Decimal('2')
Facundo Batista353750c2007-09-13 18:13:15 +00004930 >>> ExtendedContext.to_integral_value(Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004931 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004932 >>> ExtendedContext.to_integral_value(Decimal('100.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004933 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004934 >>> ExtendedContext.to_integral_value(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004935 Decimal('102')
Facundo Batista353750c2007-09-13 18:13:15 +00004936 >>> ExtendedContext.to_integral_value(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004937 Decimal('-102')
Facundo Batista353750c2007-09-13 18:13:15 +00004938 >>> ExtendedContext.to_integral_value(Decimal('10E+5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004939 Decimal('1.0E+6')
Facundo Batista353750c2007-09-13 18:13:15 +00004940 >>> ExtendedContext.to_integral_value(Decimal('7.89E+77'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004941 Decimal('7.89E+77')
Facundo Batista353750c2007-09-13 18:13:15 +00004942 >>> ExtendedContext.to_integral_value(Decimal('-Inf'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004943 Decimal('-Infinity')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004944 """
Facundo Batista353750c2007-09-13 18:13:15 +00004945 return a.to_integral_value(context=self)
4946
4947 # the method name changed, but we provide also the old one, for compatibility
4948 to_integral = to_integral_value
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004949
4950class _WorkRep(object):
4951 __slots__ = ('sign','int','exp')
Raymond Hettinger17931de2004-10-27 06:21:46 +00004952 # sign: 0 or 1
Raymond Hettinger636a6b12004-09-19 01:54:09 +00004953 # int: int or long
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004954 # exp: None, int, or string
4955
4956 def __init__(self, value=None):
4957 if value is None:
4958 self.sign = None
Raymond Hettinger636a6b12004-09-19 01:54:09 +00004959 self.int = 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004960 self.exp = None
Raymond Hettinger17931de2004-10-27 06:21:46 +00004961 elif isinstance(value, Decimal):
4962 self.sign = value._sign
Facundo Batista72bc54f2007-11-23 17:59:00 +00004963 self.int = int(value._int)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004964 self.exp = value._exp
Raymond Hettinger17931de2004-10-27 06:21:46 +00004965 else:
4966 # assert isinstance(value, tuple)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004967 self.sign = value[0]
4968 self.int = value[1]
4969 self.exp = value[2]
4970
4971 def __repr__(self):
4972 return "(%r, %r, %r)" % (self.sign, self.int, self.exp)
4973
4974 __str__ = __repr__
4975
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004976
4977
Facundo Batistae64acfa2007-12-17 14:18:42 +00004978def _normalize(op1, op2, prec = 0):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004979 """Normalizes op1, op2 to have the same exp and length of coefficient.
4980
4981 Done during addition.
4982 """
Facundo Batista353750c2007-09-13 18:13:15 +00004983 if op1.exp < op2.exp:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004984 tmp = op2
4985 other = op1
4986 else:
4987 tmp = op1
4988 other = op2
4989
Facundo Batista353750c2007-09-13 18:13:15 +00004990 # Let exp = min(tmp.exp - 1, tmp.adjusted() - precision - 1).
4991 # Then adding 10**exp to tmp has the same effect (after rounding)
4992 # as adding any positive quantity smaller than 10**exp; similarly
4993 # for subtraction. So if other is smaller than 10**exp we replace
4994 # it with 10**exp. This avoids tmp.exp - other.exp getting too large.
Facundo Batistae64acfa2007-12-17 14:18:42 +00004995 tmp_len = len(str(tmp.int))
4996 other_len = len(str(other.int))
4997 exp = tmp.exp + min(-1, tmp_len - prec - 2)
4998 if other_len + other.exp - 1 < exp:
4999 other.int = 1
5000 other.exp = exp
Raymond Hettinger636a6b12004-09-19 01:54:09 +00005001
Facundo Batista353750c2007-09-13 18:13:15 +00005002 tmp.int *= 10 ** (tmp.exp - other.exp)
5003 tmp.exp = other.exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005004 return op1, op2
5005
Facundo Batista353750c2007-09-13 18:13:15 +00005006##### Integer arithmetic functions used by ln, log10, exp and __pow__ #####
5007
5008# This function from Tim Peters was taken from here:
5009# http://mail.python.org/pipermail/python-list/1999-July/007758.html
5010# The correction being in the function definition is for speed, and
5011# the whole function is not resolved with math.log because of avoiding
5012# the use of floats.
5013def _nbits(n, correction = {
5014 '0': 4, '1': 3, '2': 2, '3': 2,
5015 '4': 1, '5': 1, '6': 1, '7': 1,
5016 '8': 0, '9': 0, 'a': 0, 'b': 0,
5017 'c': 0, 'd': 0, 'e': 0, 'f': 0}):
5018 """Number of bits in binary representation of the positive integer n,
5019 or 0 if n == 0.
5020 """
5021 if n < 0:
5022 raise ValueError("The argument to _nbits should be nonnegative.")
5023 hex_n = "%x" % n
5024 return 4*len(hex_n) - correction[hex_n[0]]
5025
5026def _sqrt_nearest(n, a):
5027 """Closest integer to the square root of the positive integer n. a is
5028 an initial approximation to the square root. Any positive integer
5029 will do for a, but the closer a is to the square root of n the
5030 faster convergence will be.
5031
5032 """
5033 if n <= 0 or a <= 0:
5034 raise ValueError("Both arguments to _sqrt_nearest should be positive.")
5035
5036 b=0
5037 while a != b:
5038 b, a = a, a--n//a>>1
5039 return a
5040
5041def _rshift_nearest(x, shift):
5042 """Given an integer x and a nonnegative integer shift, return closest
5043 integer to x / 2**shift; use round-to-even in case of a tie.
5044
5045 """
5046 b, q = 1L << shift, x >> shift
5047 return q + (2*(x & (b-1)) + (q&1) > b)
5048
5049def _div_nearest(a, b):
5050 """Closest integer to a/b, a and b positive integers; rounds to even
5051 in the case of a tie.
5052
5053 """
5054 q, r = divmod(a, b)
5055 return q + (2*r + (q&1) > b)
5056
5057def _ilog(x, M, L = 8):
5058 """Integer approximation to M*log(x/M), with absolute error boundable
5059 in terms only of x/M.
5060
5061 Given positive integers x and M, return an integer approximation to
5062 M * log(x/M). For L = 8 and 0.1 <= x/M <= 10 the difference
5063 between the approximation and the exact result is at most 22. For
5064 L = 8 and 1.0 <= x/M <= 10.0 the difference is at most 15. In
5065 both cases these are upper bounds on the error; it will usually be
5066 much smaller."""
5067
5068 # The basic algorithm is the following: let log1p be the function
5069 # log1p(x) = log(1+x). Then log(x/M) = log1p((x-M)/M). We use
5070 # the reduction
5071 #
5072 # log1p(y) = 2*log1p(y/(1+sqrt(1+y)))
5073 #
5074 # repeatedly until the argument to log1p is small (< 2**-L in
5075 # absolute value). For small y we can use the Taylor series
5076 # expansion
5077 #
5078 # log1p(y) ~ y - y**2/2 + y**3/3 - ... - (-y)**T/T
5079 #
5080 # truncating at T such that y**T is small enough. The whole
5081 # computation is carried out in a form of fixed-point arithmetic,
5082 # with a real number z being represented by an integer
5083 # approximation to z*M. To avoid loss of precision, the y below
5084 # is actually an integer approximation to 2**R*y*M, where R is the
5085 # number of reductions performed so far.
5086
5087 y = x-M
5088 # argument reduction; R = number of reductions performed
5089 R = 0
5090 while (R <= L and long(abs(y)) << L-R >= M or
5091 R > L and abs(y) >> R-L >= M):
5092 y = _div_nearest(long(M*y) << 1,
5093 M + _sqrt_nearest(M*(M+_rshift_nearest(y, R)), M))
5094 R += 1
5095
5096 # Taylor series with T terms
5097 T = -int(-10*len(str(M))//(3*L))
5098 yshift = _rshift_nearest(y, R)
5099 w = _div_nearest(M, T)
5100 for k in xrange(T-1, 0, -1):
5101 w = _div_nearest(M, k) - _div_nearest(yshift*w, M)
5102
5103 return _div_nearest(w*y, M)
5104
5105def _dlog10(c, e, p):
5106 """Given integers c, e and p with c > 0, p >= 0, compute an integer
5107 approximation to 10**p * log10(c*10**e), with an absolute error of
5108 at most 1. Assumes that c*10**e is not exactly 1."""
5109
5110 # increase precision by 2; compensate for this by dividing
5111 # final result by 100
5112 p += 2
5113
5114 # write c*10**e as d*10**f with either:
5115 # f >= 0 and 1 <= d <= 10, or
5116 # f <= 0 and 0.1 <= d <= 1.
5117 # Thus for c*10**e close to 1, f = 0
5118 l = len(str(c))
5119 f = e+l - (e+l >= 1)
5120
5121 if p > 0:
5122 M = 10**p
5123 k = e+p-f
5124 if k >= 0:
5125 c *= 10**k
5126 else:
5127 c = _div_nearest(c, 10**-k)
5128
5129 log_d = _ilog(c, M) # error < 5 + 22 = 27
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005130 log_10 = _log10_digits(p) # error < 1
Facundo Batista353750c2007-09-13 18:13:15 +00005131 log_d = _div_nearest(log_d*M, log_10)
5132 log_tenpower = f*M # exact
5133 else:
5134 log_d = 0 # error < 2.31
Neal Norwitz18aa3882008-08-24 05:04:52 +00005135 log_tenpower = _div_nearest(f, 10**-p) # error < 0.5
Facundo Batista353750c2007-09-13 18:13:15 +00005136
5137 return _div_nearest(log_tenpower+log_d, 100)
5138
5139def _dlog(c, e, p):
5140 """Given integers c, e and p with c > 0, compute an integer
5141 approximation to 10**p * log(c*10**e), with an absolute error of
5142 at most 1. Assumes that c*10**e is not exactly 1."""
5143
5144 # Increase precision by 2. The precision increase is compensated
5145 # for at the end with a division by 100.
5146 p += 2
5147
5148 # rewrite c*10**e as d*10**f with either f >= 0 and 1 <= d <= 10,
5149 # or f <= 0 and 0.1 <= d <= 1. Then we can compute 10**p * log(c*10**e)
5150 # as 10**p * log(d) + 10**p*f * log(10).
5151 l = len(str(c))
5152 f = e+l - (e+l >= 1)
5153
5154 # compute approximation to 10**p*log(d), with error < 27
5155 if p > 0:
5156 k = e+p-f
5157 if k >= 0:
5158 c *= 10**k
5159 else:
5160 c = _div_nearest(c, 10**-k) # error of <= 0.5 in c
5161
5162 # _ilog magnifies existing error in c by a factor of at most 10
5163 log_d = _ilog(c, 10**p) # error < 5 + 22 = 27
5164 else:
5165 # p <= 0: just approximate the whole thing by 0; error < 2.31
5166 log_d = 0
5167
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005168 # compute approximation to f*10**p*log(10), with error < 11.
Facundo Batista353750c2007-09-13 18:13:15 +00005169 if f:
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005170 extra = len(str(abs(f)))-1
5171 if p + extra >= 0:
5172 # error in f * _log10_digits(p+extra) < |f| * 1 = |f|
5173 # after division, error < |f|/10**extra + 0.5 < 10 + 0.5 < 11
5174 f_log_ten = _div_nearest(f*_log10_digits(p+extra), 10**extra)
Facundo Batista353750c2007-09-13 18:13:15 +00005175 else:
5176 f_log_ten = 0
5177 else:
5178 f_log_ten = 0
5179
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005180 # error in sum < 11+27 = 38; error after division < 0.38 + 0.5 < 1
Facundo Batista353750c2007-09-13 18:13:15 +00005181 return _div_nearest(f_log_ten + log_d, 100)
5182
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005183class _Log10Memoize(object):
5184 """Class to compute, store, and allow retrieval of, digits of the
5185 constant log(10) = 2.302585.... This constant is needed by
5186 Decimal.ln, Decimal.log10, Decimal.exp and Decimal.__pow__."""
5187 def __init__(self):
5188 self.digits = "23025850929940456840179914546843642076011014886"
5189
5190 def getdigits(self, p):
5191 """Given an integer p >= 0, return floor(10**p)*log(10).
5192
5193 For example, self.getdigits(3) returns 2302.
5194 """
5195 # digits are stored as a string, for quick conversion to
5196 # integer in the case that we've already computed enough
5197 # digits; the stored digits should always be correct
5198 # (truncated, not rounded to nearest).
5199 if p < 0:
5200 raise ValueError("p should be nonnegative")
5201
5202 if p >= len(self.digits):
5203 # compute p+3, p+6, p+9, ... digits; continue until at
5204 # least one of the extra digits is nonzero
5205 extra = 3
5206 while True:
5207 # compute p+extra digits, correct to within 1ulp
5208 M = 10**(p+extra+2)
5209 digits = str(_div_nearest(_ilog(10*M, M), 100))
5210 if digits[-extra:] != '0'*extra:
5211 break
5212 extra += 3
5213 # keep all reliable digits so far; remove trailing zeros
5214 # and next nonzero digit
5215 self.digits = digits.rstrip('0')[:-1]
5216 return int(self.digits[:p+1])
5217
5218_log10_digits = _Log10Memoize().getdigits
5219
Facundo Batista353750c2007-09-13 18:13:15 +00005220def _iexp(x, M, L=8):
5221 """Given integers x and M, M > 0, such that x/M is small in absolute
5222 value, compute an integer approximation to M*exp(x/M). For 0 <=
5223 x/M <= 2.4, the absolute error in the result is bounded by 60 (and
5224 is usually much smaller)."""
5225
5226 # Algorithm: to compute exp(z) for a real number z, first divide z
5227 # by a suitable power R of 2 so that |z/2**R| < 2**-L. Then
5228 # compute expm1(z/2**R) = exp(z/2**R) - 1 using the usual Taylor
5229 # series
5230 #
5231 # expm1(x) = x + x**2/2! + x**3/3! + ...
5232 #
5233 # Now use the identity
5234 #
5235 # expm1(2x) = expm1(x)*(expm1(x)+2)
5236 #
5237 # R times to compute the sequence expm1(z/2**R),
5238 # expm1(z/2**(R-1)), ... , exp(z/2), exp(z).
5239
5240 # Find R such that x/2**R/M <= 2**-L
5241 R = _nbits((long(x)<<L)//M)
5242
5243 # Taylor series. (2**L)**T > M
5244 T = -int(-10*len(str(M))//(3*L))
5245 y = _div_nearest(x, T)
5246 Mshift = long(M)<<R
5247 for i in xrange(T-1, 0, -1):
5248 y = _div_nearest(x*(Mshift + y), Mshift * i)
5249
5250 # Expansion
5251 for k in xrange(R-1, -1, -1):
5252 Mshift = long(M)<<(k+2)
5253 y = _div_nearest(y*(y+Mshift), Mshift)
5254
5255 return M+y
5256
5257def _dexp(c, e, p):
5258 """Compute an approximation to exp(c*10**e), with p decimal places of
5259 precision.
5260
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005261 Returns integers d, f such that:
Facundo Batista353750c2007-09-13 18:13:15 +00005262
5263 10**(p-1) <= d <= 10**p, and
5264 (d-1)*10**f < exp(c*10**e) < (d+1)*10**f
5265
5266 In other words, d*10**f is an approximation to exp(c*10**e) with p
5267 digits of precision, and with an error in d of at most 1. This is
5268 almost, but not quite, the same as the error being < 1ulp: when d
5269 = 10**(p-1) the error could be up to 10 ulp."""
5270
5271 # we'll call iexp with M = 10**(p+2), giving p+3 digits of precision
5272 p += 2
5273
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005274 # compute log(10) with extra precision = adjusted exponent of c*10**e
Facundo Batista353750c2007-09-13 18:13:15 +00005275 extra = max(0, e + len(str(c)) - 1)
5276 q = p + extra
Facundo Batista353750c2007-09-13 18:13:15 +00005277
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005278 # compute quotient c*10**e/(log(10)) = c*10**(e+q)/(log(10)*10**q),
Facundo Batista353750c2007-09-13 18:13:15 +00005279 # rounding down
5280 shift = e+q
5281 if shift >= 0:
5282 cshift = c*10**shift
5283 else:
5284 cshift = c//10**-shift
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005285 quot, rem = divmod(cshift, _log10_digits(q))
Facundo Batista353750c2007-09-13 18:13:15 +00005286
5287 # reduce remainder back to original precision
5288 rem = _div_nearest(rem, 10**extra)
5289
5290 # error in result of _iexp < 120; error after division < 0.62
5291 return _div_nearest(_iexp(rem, 10**p), 1000), quot - p + 3
5292
5293def _dpower(xc, xe, yc, ye, p):
5294 """Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and
5295 y = yc*10**ye, compute x**y. Returns a pair of integers (c, e) such that:
5296
5297 10**(p-1) <= c <= 10**p, and
5298 (c-1)*10**e < x**y < (c+1)*10**e
5299
5300 in other words, c*10**e is an approximation to x**y with p digits
5301 of precision, and with an error in c of at most 1. (This is
5302 almost, but not quite, the same as the error being < 1ulp: when c
5303 == 10**(p-1) we can only guarantee error < 10ulp.)
5304
5305 We assume that: x is positive and not equal to 1, and y is nonzero.
5306 """
5307
5308 # Find b such that 10**(b-1) <= |y| <= 10**b
5309 b = len(str(abs(yc))) + ye
5310
5311 # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point
5312 lxc = _dlog(xc, xe, p+b+1)
5313
5314 # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1)
5315 shift = ye-b
5316 if shift >= 0:
5317 pc = lxc*yc*10**shift
5318 else:
5319 pc = _div_nearest(lxc*yc, 10**-shift)
5320
5321 if pc == 0:
5322 # we prefer a result that isn't exactly 1; this makes it
5323 # easier to compute a correctly rounded result in __pow__
5324 if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1:
5325 coeff, exp = 10**(p-1)+1, 1-p
5326 else:
5327 coeff, exp = 10**p-1, -p
5328 else:
5329 coeff, exp = _dexp(pc, -(p+1), p+1)
5330 coeff = _div_nearest(coeff, 10)
5331 exp += 1
5332
5333 return coeff, exp
5334
5335def _log10_lb(c, correction = {
5336 '1': 100, '2': 70, '3': 53, '4': 40, '5': 31,
5337 '6': 23, '7': 16, '8': 10, '9': 5}):
5338 """Compute a lower bound for 100*log10(c) for a positive integer c."""
5339 if c <= 0:
5340 raise ValueError("The argument to _log10_lb should be nonnegative.")
5341 str_c = str(c)
5342 return 100*len(str_c) - correction[str_c[0]]
5343
Facundo Batista59c58842007-04-10 12:58:45 +00005344##### Helper Functions ####################################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005345
Facundo Batista353750c2007-09-13 18:13:15 +00005346def _convert_other(other, raiseit=False):
Raymond Hettinger636a6b12004-09-19 01:54:09 +00005347 """Convert other to Decimal.
5348
5349 Verifies that it's ok to use in an implicit construction.
5350 """
5351 if isinstance(other, Decimal):
5352 return other
5353 if isinstance(other, (int, long)):
5354 return Decimal(other)
Facundo Batista353750c2007-09-13 18:13:15 +00005355 if raiseit:
5356 raise TypeError("Unable to convert %s to Decimal" % other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00005357 return NotImplemented
Raymond Hettinger636a6b12004-09-19 01:54:09 +00005358
Facundo Batista59c58842007-04-10 12:58:45 +00005359##### Setup Specific Contexts ############################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005360
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005361# The default context prototype used by Context()
Raymond Hettingerfed52962004-07-14 15:41:57 +00005362# Is mutable, so that new contexts can have different default values
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005363
5364DefaultContext = Context(
Raymond Hettinger6ea48452004-07-03 12:26:21 +00005365 prec=28, rounding=ROUND_HALF_EVEN,
Raymond Hettingerbf440692004-07-10 14:14:37 +00005366 traps=[DivisionByZero, Overflow, InvalidOperation],
5367 flags=[],
Raymond Hettinger99148e72004-07-14 19:56:56 +00005368 Emax=999999999,
5369 Emin=-999999999,
Raymond Hettingere0f15812004-07-05 05:36:39 +00005370 capitals=1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005371)
5372
5373# Pre-made alternate contexts offered by the specification
5374# Don't change these; the user should be able to select these
5375# contexts and be able to reproduce results from other implementations
5376# of the spec.
5377
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00005378BasicContext = Context(
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005379 prec=9, rounding=ROUND_HALF_UP,
Raymond Hettingerbf440692004-07-10 14:14:37 +00005380 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow],
5381 flags=[],
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005382)
5383
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00005384ExtendedContext = Context(
Raymond Hettinger6ea48452004-07-03 12:26:21 +00005385 prec=9, rounding=ROUND_HALF_EVEN,
Raymond Hettingerbf440692004-07-10 14:14:37 +00005386 traps=[],
5387 flags=[],
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005388)
5389
5390
Facundo Batista72bc54f2007-11-23 17:59:00 +00005391##### crud for parsing strings #############################################
Mark Dickinson6a123cb2008-02-24 18:12:36 +00005392#
Facundo Batista72bc54f2007-11-23 17:59:00 +00005393# Regular expression used for parsing numeric strings. Additional
5394# comments:
5395#
5396# 1. Uncomment the two '\s*' lines to allow leading and/or trailing
5397# whitespace. But note that the specification disallows whitespace in
5398# a numeric string.
5399#
5400# 2. For finite numbers (not infinities and NaNs) the body of the
5401# number between the optional sign and the optional exponent must have
5402# at least one decimal digit, possibly after the decimal point. The
5403# lookahead expression '(?=\d|\.\d)' checks this.
Facundo Batista72bc54f2007-11-23 17:59:00 +00005404
5405import re
Mark Dickinson70c32892008-07-02 09:37:01 +00005406_parser = re.compile(r""" # A numeric string consists of:
Facundo Batista72bc54f2007-11-23 17:59:00 +00005407# \s*
Mark Dickinson70c32892008-07-02 09:37:01 +00005408 (?P<sign>[-+])? # an optional sign, followed by either...
Facundo Batista72bc54f2007-11-23 17:59:00 +00005409 (
Mark Dickinson4326ad82009-08-02 10:59:36 +00005410 (?=\d|\.\d) # ...a number (with at least one digit)
5411 (?P<int>\d*) # having a (possibly empty) integer part
5412 (\.(?P<frac>\d*))? # followed by an optional fractional part
5413 (E(?P<exp>[-+]?\d+))? # followed by an optional exponent, or...
Facundo Batista72bc54f2007-11-23 17:59:00 +00005414 |
Mark Dickinson70c32892008-07-02 09:37:01 +00005415 Inf(inity)? # ...an infinity, or...
Facundo Batista72bc54f2007-11-23 17:59:00 +00005416 |
Mark Dickinson70c32892008-07-02 09:37:01 +00005417 (?P<signal>s)? # ...an (optionally signaling)
5418 NaN # NaN
Mark Dickinson4326ad82009-08-02 10:59:36 +00005419 (?P<diag>\d*) # with (possibly empty) diagnostic info.
Facundo Batista72bc54f2007-11-23 17:59:00 +00005420 )
5421# \s*
Mark Dickinson59bc20b2008-01-12 01:56:00 +00005422 \Z
Mark Dickinson4326ad82009-08-02 10:59:36 +00005423""", re.VERBOSE | re.IGNORECASE | re.UNICODE).match
Facundo Batista72bc54f2007-11-23 17:59:00 +00005424
Facundo Batista2ec74152007-12-03 17:55:00 +00005425_all_zeros = re.compile('0*$').match
5426_exact_half = re.compile('50*$').match
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005427
5428##### PEP3101 support functions ##############################################
Mark Dickinson277859d2009-03-17 23:03:46 +00005429# The functions in this section have little to do with the Decimal
5430# class, and could potentially be reused or adapted for other pure
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005431# Python numeric classes that want to implement __format__
5432#
5433# A format specifier for Decimal looks like:
5434#
Mark Dickinson277859d2009-03-17 23:03:46 +00005435# [[fill]align][sign][0][minimumwidth][,][.precision][type]
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005436
5437_parse_format_specifier_regex = re.compile(r"""\A
5438(?:
5439 (?P<fill>.)?
5440 (?P<align>[<>=^])
5441)?
5442(?P<sign>[-+ ])?
5443(?P<zeropad>0)?
5444(?P<minimumwidth>(?!0)\d+)?
Mark Dickinson277859d2009-03-17 23:03:46 +00005445(?P<thousands_sep>,)?
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005446(?:\.(?P<precision>0|(?!0)\d+))?
Mark Dickinson277859d2009-03-17 23:03:46 +00005447(?P<type>[eEfFgGn%])?
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005448\Z
5449""", re.VERBOSE)
5450
Facundo Batista72bc54f2007-11-23 17:59:00 +00005451del re
5452
Mark Dickinson277859d2009-03-17 23:03:46 +00005453# The locale module is only needed for the 'n' format specifier. The
5454# rest of the PEP 3101 code functions quite happily without it, so we
5455# don't care too much if locale isn't present.
5456try:
5457 import locale as _locale
5458except ImportError:
5459 pass
5460
5461def _parse_format_specifier(format_spec, _localeconv=None):
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005462 """Parse and validate a format specifier.
5463
5464 Turns a standard numeric format specifier into a dict, with the
5465 following entries:
5466
5467 fill: fill character to pad field to minimum width
5468 align: alignment type, either '<', '>', '=' or '^'
5469 sign: either '+', '-' or ' '
5470 minimumwidth: nonnegative integer giving minimum width
Mark Dickinson277859d2009-03-17 23:03:46 +00005471 zeropad: boolean, indicating whether to pad with zeros
5472 thousands_sep: string to use as thousands separator, or ''
5473 grouping: grouping for thousands separators, in format
5474 used by localeconv
5475 decimal_point: string to use for decimal point
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005476 precision: nonnegative integer giving precision, or None
5477 type: one of the characters 'eEfFgG%', or None
Mark Dickinson277859d2009-03-17 23:03:46 +00005478 unicode: boolean (always True for Python 3.x)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005479
5480 """
5481 m = _parse_format_specifier_regex.match(format_spec)
5482 if m is None:
5483 raise ValueError("Invalid format specifier: " + format_spec)
5484
5485 # get the dictionary
5486 format_dict = m.groupdict()
5487
Mark Dickinson277859d2009-03-17 23:03:46 +00005488 # zeropad; defaults for fill and alignment. If zero padding
5489 # is requested, the fill and align fields should be absent.
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005490 fill = format_dict['fill']
5491 align = format_dict['align']
Mark Dickinson277859d2009-03-17 23:03:46 +00005492 format_dict['zeropad'] = (format_dict['zeropad'] is not None)
5493 if format_dict['zeropad']:
5494 if fill is not None:
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005495 raise ValueError("Fill character conflicts with '0'"
5496 " in format specifier: " + format_spec)
Mark Dickinson277859d2009-03-17 23:03:46 +00005497 if align is not None:
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005498 raise ValueError("Alignment conflicts with '0' in "
5499 "format specifier: " + format_spec)
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005500 format_dict['fill'] = fill or ' '
5501 format_dict['align'] = align or '<'
5502
Mark Dickinson277859d2009-03-17 23:03:46 +00005503 # default sign handling: '-' for negative, '' for positive
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005504 if format_dict['sign'] is None:
5505 format_dict['sign'] = '-'
5506
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005507 # minimumwidth defaults to 0; precision remains None if not given
5508 format_dict['minimumwidth'] = int(format_dict['minimumwidth'] or '0')
5509 if format_dict['precision'] is not None:
5510 format_dict['precision'] = int(format_dict['precision'])
5511
5512 # if format type is 'g' or 'G' then a precision of 0 makes little
5513 # sense; convert it to 1. Same if format type is unspecified.
5514 if format_dict['precision'] == 0:
5515 if format_dict['type'] in 'gG' or format_dict['type'] is None:
5516 format_dict['precision'] = 1
5517
Mark Dickinson277859d2009-03-17 23:03:46 +00005518 # determine thousands separator, grouping, and decimal separator, and
5519 # add appropriate entries to format_dict
5520 if format_dict['type'] == 'n':
5521 # apart from separators, 'n' behaves just like 'g'
5522 format_dict['type'] = 'g'
5523 if _localeconv is None:
5524 _localeconv = _locale.localeconv()
5525 if format_dict['thousands_sep'] is not None:
5526 raise ValueError("Explicit thousands separator conflicts with "
5527 "'n' type in format specifier: " + format_spec)
5528 format_dict['thousands_sep'] = _localeconv['thousands_sep']
5529 format_dict['grouping'] = _localeconv['grouping']
5530 format_dict['decimal_point'] = _localeconv['decimal_point']
5531 else:
5532 if format_dict['thousands_sep'] is None:
5533 format_dict['thousands_sep'] = ''
5534 format_dict['grouping'] = [3, 0]
5535 format_dict['decimal_point'] = '.'
5536
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005537 # record whether return type should be str or unicode
5538 format_dict['unicode'] = isinstance(format_spec, unicode)
5539
5540 return format_dict
5541
Mark Dickinson277859d2009-03-17 23:03:46 +00005542def _format_align(sign, body, spec):
5543 """Given an unpadded, non-aligned numeric string 'body' and sign
5544 string 'sign', add padding and aligment conforming to the given
5545 format specifier dictionary 'spec' (as produced by
5546 parse_format_specifier).
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005547
Mark Dickinson277859d2009-03-17 23:03:46 +00005548 Also converts result to unicode if necessary.
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005549
5550 """
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005551 # how much extra space do we have to play with?
Mark Dickinson277859d2009-03-17 23:03:46 +00005552 minimumwidth = spec['minimumwidth']
5553 fill = spec['fill']
5554 padding = fill*(minimumwidth - len(sign) - len(body))
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005555
Mark Dickinson277859d2009-03-17 23:03:46 +00005556 align = spec['align']
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005557 if align == '<':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005558 result = sign + body + padding
Mark Dickinsonb065e522009-03-17 18:01:03 +00005559 elif align == '>':
5560 result = padding + sign + body
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005561 elif align == '=':
5562 result = sign + padding + body
Mark Dickinson277859d2009-03-17 23:03:46 +00005563 elif align == '^':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005564 half = len(padding)//2
5565 result = padding[:half] + sign + body + padding[half:]
Mark Dickinson277859d2009-03-17 23:03:46 +00005566 else:
5567 raise ValueError('Unrecognised alignment field')
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005568
5569 # make sure that result is unicode if necessary
Mark Dickinson277859d2009-03-17 23:03:46 +00005570 if spec['unicode']:
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005571 result = unicode(result)
5572
5573 return result
Facundo Batista72bc54f2007-11-23 17:59:00 +00005574
Mark Dickinson277859d2009-03-17 23:03:46 +00005575def _group_lengths(grouping):
5576 """Convert a localeconv-style grouping into a (possibly infinite)
5577 iterable of integers representing group lengths.
5578
5579 """
5580 # The result from localeconv()['grouping'], and the input to this
5581 # function, should be a list of integers in one of the
5582 # following three forms:
5583 #
5584 # (1) an empty list, or
5585 # (2) nonempty list of positive integers + [0]
5586 # (3) list of positive integers + [locale.CHAR_MAX], or
5587
5588 from itertools import chain, repeat
5589 if not grouping:
5590 return []
5591 elif grouping[-1] == 0 and len(grouping) >= 2:
5592 return chain(grouping[:-1], repeat(grouping[-2]))
5593 elif grouping[-1] == _locale.CHAR_MAX:
5594 return grouping[:-1]
5595 else:
5596 raise ValueError('unrecognised format for grouping')
5597
5598def _insert_thousands_sep(digits, spec, min_width=1):
5599 """Insert thousands separators into a digit string.
5600
5601 spec is a dictionary whose keys should include 'thousands_sep' and
5602 'grouping'; typically it's the result of parsing the format
5603 specifier using _parse_format_specifier.
5604
5605 The min_width keyword argument gives the minimum length of the
5606 result, which will be padded on the left with zeros if necessary.
5607
5608 If necessary, the zero padding adds an extra '0' on the left to
5609 avoid a leading thousands separator. For example, inserting
5610 commas every three digits in '123456', with min_width=8, gives
5611 '0,123,456', even though that has length 9.
5612
5613 """
5614
5615 sep = spec['thousands_sep']
5616 grouping = spec['grouping']
5617
5618 groups = []
5619 for l in _group_lengths(grouping):
Mark Dickinson277859d2009-03-17 23:03:46 +00005620 if l <= 0:
5621 raise ValueError("group length should be positive")
5622 # max(..., 1) forces at least 1 digit to the left of a separator
5623 l = min(max(len(digits), min_width, 1), l)
5624 groups.append('0'*(l - len(digits)) + digits[-l:])
5625 digits = digits[:-l]
5626 min_width -= l
5627 if not digits and min_width <= 0:
5628 break
Mark Dickinsonb14514a2009-03-18 08:22:51 +00005629 min_width -= len(sep)
Mark Dickinson277859d2009-03-17 23:03:46 +00005630 else:
5631 l = max(len(digits), min_width, 1)
5632 groups.append('0'*(l - len(digits)) + digits[-l:])
5633 return sep.join(reversed(groups))
5634
5635def _format_sign(is_negative, spec):
5636 """Determine sign character."""
5637
5638 if is_negative:
5639 return '-'
5640 elif spec['sign'] in ' +':
5641 return spec['sign']
5642 else:
5643 return ''
5644
5645def _format_number(is_negative, intpart, fracpart, exp, spec):
5646 """Format a number, given the following data:
5647
5648 is_negative: true if the number is negative, else false
5649 intpart: string of digits that must appear before the decimal point
5650 fracpart: string of digits that must come after the point
5651 exp: exponent, as an integer
5652 spec: dictionary resulting from parsing the format specifier
5653
5654 This function uses the information in spec to:
5655 insert separators (decimal separator and thousands separators)
5656 format the sign
5657 format the exponent
5658 add trailing '%' for the '%' type
5659 zero-pad if necessary
5660 fill and align if necessary
5661 """
5662
5663 sign = _format_sign(is_negative, spec)
5664
5665 if fracpart:
5666 fracpart = spec['decimal_point'] + fracpart
5667
5668 if exp != 0 or spec['type'] in 'eE':
5669 echar = {'E': 'E', 'e': 'e', 'G': 'E', 'g': 'e'}[spec['type']]
5670 fracpart += "{0}{1:+}".format(echar, exp)
5671 if spec['type'] == '%':
5672 fracpart += '%'
5673
5674 if spec['zeropad']:
5675 min_width = spec['minimumwidth'] - len(fracpart) - len(sign)
5676 else:
5677 min_width = 0
5678 intpart = _insert_thousands_sep(intpart, spec, min_width)
5679
5680 return _format_align(sign, intpart+fracpart, spec)
5681
5682
Facundo Batista59c58842007-04-10 12:58:45 +00005683##### Useful Constants (internal use only) ################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005684
Facundo Batista59c58842007-04-10 12:58:45 +00005685# Reusable defaults
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00005686_Infinity = Decimal('Inf')
5687_NegativeInfinity = Decimal('-Inf')
Mark Dickinsonc5de0962009-01-02 23:07:08 +00005688_NaN = Decimal('NaN')
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00005689_Zero = Decimal(0)
5690_One = Decimal(1)
5691_NegativeOne = Decimal(-1)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005692
Raymond Hettingerb7e835b2009-01-03 19:08:10 +00005693# _SignedInfinity[sign] is infinity w/ that sign
5694_SignedInfinity = (_Infinity, _NegativeInfinity)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005695
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005696
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005697
5698if __name__ == '__main__':
5699 import doctest, sys
5700 doctest.testmod(sys.modules[__name__])