blob: d589fd779f9744dcc532114f1227d835f61b4826 [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 Hettingereb260842005-06-07 18:52:34 +0000137import copy as _copy
Raymond Hettinger45fd4762009-02-03 03:42:07 +0000138import numbers as _numbers
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000139
Raymond Hettinger097a1902008-01-11 02:24:13 +0000140try:
141 from collections import namedtuple as _namedtuple
142 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
143except ImportError:
144 DecimalTuple = lambda *args: args
145
Facundo Batista59c58842007-04-10 12:58:45 +0000146# Rounding
Raymond Hettinger0ea241e2004-07-04 13:53:24 +0000147ROUND_DOWN = 'ROUND_DOWN'
148ROUND_HALF_UP = 'ROUND_HALF_UP'
149ROUND_HALF_EVEN = 'ROUND_HALF_EVEN'
150ROUND_CEILING = 'ROUND_CEILING'
151ROUND_FLOOR = 'ROUND_FLOOR'
152ROUND_UP = 'ROUND_UP'
153ROUND_HALF_DOWN = 'ROUND_HALF_DOWN'
Facundo Batista353750c2007-09-13 18:13:15 +0000154ROUND_05UP = 'ROUND_05UP'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000155
Facundo Batista59c58842007-04-10 12:58:45 +0000156# Errors
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000157
158class DecimalException(ArithmeticError):
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000159 """Base exception class.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000160
161 Used exceptions derive from this.
162 If an exception derives from another exception besides this (such as
163 Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
164 called if the others are present. This isn't actually used for
165 anything, though.
166
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000167 handle -- Called when context._raise_error is called and the
168 trap_enabler is set. First argument is self, second is the
169 context. More arguments can be given, those being after
170 the explanation in _raise_error (For example,
171 context._raise_error(NewError, '(-x)!', self._sign) would
172 call NewError().handle(context, self._sign).)
173
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000174 To define a new exception, it should be sufficient to have it derive
175 from DecimalException.
176 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000177 def handle(self, context, *args):
178 pass
179
180
181class Clamped(DecimalException):
182 """Exponent of a 0 changed to fit bounds.
183
184 This occurs and signals clamped if the exponent of a result has been
185 altered in order to fit the constraints of a specific concrete
Facundo Batista59c58842007-04-10 12:58:45 +0000186 representation. This may occur when the exponent of a zero result would
187 be outside the bounds of a representation, or when a large normal
188 number would have an encoded exponent that cannot be represented. In
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000189 this latter case, the exponent is reduced to fit and the corresponding
190 number of zero digits are appended to the coefficient ("fold-down").
191 """
192
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000193class InvalidOperation(DecimalException):
194 """An invalid operation was performed.
195
196 Various bad things cause this:
197
198 Something creates a signaling NaN
199 -INF + INF
Facundo Batista59c58842007-04-10 12:58:45 +0000200 0 * (+-)INF
201 (+-)INF / (+-)INF
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000202 x % 0
203 (+-)INF % x
204 x._rescale( non-integer )
205 sqrt(-x) , x > 0
206 0 ** 0
207 x ** (non-integer)
208 x ** (+-)INF
209 An operand is invalid
Facundo Batista353750c2007-09-13 18:13:15 +0000210
211 The result of the operation after these is a quiet positive NaN,
212 except when the cause is a signaling NaN, in which case the result is
213 also a quiet NaN, but with the original sign, and an optional
214 diagnostic information.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000215 """
216 def handle(self, context, *args):
217 if args:
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000218 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
219 return ans._fix_nan(context)
Mark Dickinsonfd6032d2009-01-02 23:16:51 +0000220 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000221
222class ConversionSyntax(InvalidOperation):
223 """Trying to convert badly formed string.
224
225 This occurs and signals invalid-operation if an string is being
226 converted to a number and it does not conform to the numeric string
Facundo Batista59c58842007-04-10 12:58:45 +0000227 syntax. The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000228 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000229 def handle(self, context, *args):
Mark Dickinsonfd6032d2009-01-02 23:16:51 +0000230 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000231
232class DivisionByZero(DecimalException, ZeroDivisionError):
233 """Division by 0.
234
235 This occurs and signals division-by-zero if division of a finite number
236 by zero was attempted (during a divide-integer or divide operation, or a
237 power operation with negative right-hand operand), and the dividend was
238 not zero.
239
240 The result of the operation is [sign,inf], where sign is the exclusive
241 or of the signs of the operands for divide, or is 1 for an odd power of
242 -0, for power.
243 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000244
Facundo Batistacce8df22007-09-18 16:53:18 +0000245 def handle(self, context, sign, *args):
Mark Dickinsone4d46b22009-01-03 12:09:22 +0000246 return _SignedInfinity[sign]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000247
248class DivisionImpossible(InvalidOperation):
249 """Cannot perform the division adequately.
250
251 This occurs and signals invalid-operation if the integer result of a
252 divide-integer or remainder operation had too many digits (would be
Facundo Batista59c58842007-04-10 12:58:45 +0000253 longer than precision). The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000254 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000255
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000256 def handle(self, context, *args):
Mark Dickinsonfd6032d2009-01-02 23:16:51 +0000257 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000258
259class DivisionUndefined(InvalidOperation, ZeroDivisionError):
260 """Undefined result of division.
261
262 This occurs and signals invalid-operation if division by zero was
263 attempted (during a divide-integer, divide, or remainder operation), and
Facundo Batista59c58842007-04-10 12:58:45 +0000264 the dividend is also zero. The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000265 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000266
Facundo Batistacce8df22007-09-18 16:53:18 +0000267 def handle(self, context, *args):
Mark Dickinsonfd6032d2009-01-02 23:16:51 +0000268 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000269
270class Inexact(DecimalException):
271 """Had to round, losing information.
272
273 This occurs and signals inexact whenever the result of an operation is
274 not exact (that is, it needed to be rounded and any discarded digits
Facundo Batista59c58842007-04-10 12:58:45 +0000275 were non-zero), or if an overflow or underflow condition occurs. The
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000276 result in all cases is unchanged.
277
278 The inexact signal may be tested (or trapped) to determine if a given
279 operation (or sequence of operations) was inexact.
280 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000281
282class InvalidContext(InvalidOperation):
283 """Invalid context. Unknown rounding, for example.
284
285 This occurs and signals invalid-operation if an invalid context was
Facundo Batista59c58842007-04-10 12:58:45 +0000286 detected during an operation. This can occur if contexts are not checked
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000287 on creation and either the precision exceeds the capability of the
288 underlying concrete representation or an unknown or unsupported rounding
Facundo Batista59c58842007-04-10 12:58:45 +0000289 was specified. These aspects of the context need only be checked when
290 the values are required to be used. The result is [0,qNaN].
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000291 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000292
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000293 def handle(self, context, *args):
Mark Dickinsonfd6032d2009-01-02 23:16:51 +0000294 return _NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000295
296class Rounded(DecimalException):
297 """Number got rounded (not necessarily changed during rounding).
298
299 This occurs and signals rounded whenever the result of an operation is
300 rounded (that is, some zero or non-zero digits were discarded from the
Facundo Batista59c58842007-04-10 12:58:45 +0000301 coefficient), or if an overflow or underflow condition occurs. The
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000302 result in all cases is unchanged.
303
304 The rounded signal may be tested (or trapped) to determine if a given
305 operation (or sequence of operations) caused a loss of precision.
306 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000307
308class Subnormal(DecimalException):
309 """Exponent < Emin before rounding.
310
311 This occurs and signals subnormal whenever the result of a conversion or
312 operation is subnormal (that is, its adjusted exponent is less than
Facundo Batista59c58842007-04-10 12:58:45 +0000313 Emin, before any rounding). The result in all cases is unchanged.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000314
315 The subnormal signal may be tested (or trapped) to determine if a given
316 or operation (or sequence of operations) yielded a subnormal result.
317 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000318
319class Overflow(Inexact, Rounded):
320 """Numerical overflow.
321
322 This occurs and signals overflow if the adjusted exponent of a result
323 (from a conversion or from an operation that is not an attempt to divide
324 by zero), after rounding, would be greater than the largest value that
325 can be handled by the implementation (the value Emax).
326
327 The result depends on the rounding mode:
328
329 For round-half-up and round-half-even (and for round-half-down and
330 round-up, if implemented), the result of the operation is [sign,inf],
Facundo Batista59c58842007-04-10 12:58:45 +0000331 where sign is the sign of the intermediate result. For round-down, the
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000332 result is the largest finite number that can be represented in the
Facundo Batista59c58842007-04-10 12:58:45 +0000333 current precision, with the sign of the intermediate result. For
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000334 round-ceiling, the result is the same as for round-down if the sign of
Facundo Batista59c58842007-04-10 12:58:45 +0000335 the intermediate result is 1, or is [0,inf] otherwise. For round-floor,
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000336 the result is the same as for round-down if the sign of the intermediate
Facundo Batista59c58842007-04-10 12:58:45 +0000337 result is 0, or is [1,inf] otherwise. In all cases, Inexact and Rounded
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000338 will also be raised.
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000339 """
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000340
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000341 def handle(self, context, sign, *args):
342 if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN,
Facundo Batista353750c2007-09-13 18:13:15 +0000343 ROUND_HALF_DOWN, ROUND_UP):
Mark Dickinsone4d46b22009-01-03 12:09:22 +0000344 return _SignedInfinity[sign]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000345 if sign == 0:
346 if context.rounding == ROUND_CEILING:
Mark Dickinsone4d46b22009-01-03 12:09:22 +0000347 return _SignedInfinity[sign]
Facundo Batista72bc54f2007-11-23 17:59:00 +0000348 return _dec_from_triple(sign, '9'*context.prec,
349 context.Emax-context.prec+1)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000350 if sign == 1:
351 if context.rounding == ROUND_FLOOR:
Mark Dickinsone4d46b22009-01-03 12:09:22 +0000352 return _SignedInfinity[sign]
Facundo Batista72bc54f2007-11-23 17:59:00 +0000353 return _dec_from_triple(sign, '9'*context.prec,
354 context.Emax-context.prec+1)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000355
356
357class Underflow(Inexact, Rounded, Subnormal):
358 """Numerical underflow with result rounded to 0.
359
360 This occurs and signals underflow if a result is inexact and the
361 adjusted exponent of the result would be smaller (more negative) than
362 the smallest value that can be handled by the implementation (the value
Facundo Batista59c58842007-04-10 12:58:45 +0000363 Emin). That is, the result is both inexact and subnormal.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000364
365 The result after an underflow will be a subnormal number rounded, if
Facundo Batista59c58842007-04-10 12:58:45 +0000366 necessary, so that its exponent is not less than Etiny. This may result
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000367 in 0 with the sign of the intermediate result and an exponent of Etiny.
368
369 In all cases, Inexact, Rounded, and Subnormal will also be raised.
370 """
371
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000372# List of public traps and flags
Raymond Hettingerfed52962004-07-14 15:41:57 +0000373_signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000374 Underflow, InvalidOperation, Subnormal]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000375
Raymond Hettinger5aa478b2004-07-09 10:02:53 +0000376# Map conditions (per the spec) to signals
377_condition_map = {ConversionSyntax:InvalidOperation,
378 DivisionImpossible:InvalidOperation,
379 DivisionUndefined:InvalidOperation,
380 InvalidContext:InvalidOperation}
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000381
Facundo Batista59c58842007-04-10 12:58:45 +0000382##### Context Functions ##################################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000383
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000384# The getcontext() and setcontext() function manage access to a thread-local
385# current context. Py2.4 offers direct support for thread locals. If that
386# is not available, use threading.currentThread() which is slower but will
Raymond Hettinger7e71fa52004-12-18 19:07:19 +0000387# work for older Pythons. If threads are not part of the build, create a
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000388# mock threading object with threading.local() returning the module namespace.
Raymond Hettinger7e71fa52004-12-18 19:07:19 +0000389
390try:
391 import threading
392except ImportError:
393 # Python was compiled without threads; create a mock object instead
394 import sys
Facundo Batista59c58842007-04-10 12:58:45 +0000395 class MockThreading(object):
Raymond Hettinger7e71fa52004-12-18 19:07:19 +0000396 def local(self, sys=sys):
397 return sys.modules[__name__]
398 threading = MockThreading()
399 del sys, MockThreading
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000400
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000401try:
402 threading.local
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000403
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000404except AttributeError:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000405
Facundo Batista59c58842007-04-10 12:58:45 +0000406 # To fix reloading, force it to create a new context
407 # Old contexts have different exceptions in their dicts, making problems.
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000408 if hasattr(threading.currentThread(), '__decimal_context__'):
409 del threading.currentThread().__decimal_context__
410
411 def setcontext(context):
412 """Set this thread's context to context."""
413 if context in (DefaultContext, BasicContext, ExtendedContext):
Raymond Hettinger9fce44b2004-08-08 04:03:24 +0000414 context = context.copy()
Raymond Hettinger61992ef2004-08-06 23:42:16 +0000415 context.clear_flags()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000416 threading.currentThread().__decimal_context__ = context
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000417
418 def getcontext():
419 """Returns this thread's context.
420
421 If this thread does not yet have a context, returns
422 a new context and sets this thread's context.
423 New contexts are copies of DefaultContext.
424 """
425 try:
426 return threading.currentThread().__decimal_context__
427 except AttributeError:
428 context = Context()
429 threading.currentThread().__decimal_context__ = context
430 return context
431
432else:
433
434 local = threading.local()
Raymond Hettinger9fce44b2004-08-08 04:03:24 +0000435 if hasattr(local, '__decimal_context__'):
436 del local.__decimal_context__
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000437
438 def getcontext(_local=local):
439 """Returns this thread's context.
440
441 If this thread does not yet have a context, returns
442 a new context and sets this thread's context.
443 New contexts are copies of DefaultContext.
444 """
445 try:
446 return _local.__decimal_context__
447 except AttributeError:
448 context = Context()
449 _local.__decimal_context__ = context
450 return context
451
452 def setcontext(context, _local=local):
453 """Set this thread's context to context."""
454 if context in (DefaultContext, BasicContext, ExtendedContext):
Raymond Hettinger9fce44b2004-08-08 04:03:24 +0000455 context = context.copy()
Raymond Hettinger61992ef2004-08-06 23:42:16 +0000456 context.clear_flags()
Raymond Hettingeref66deb2004-07-14 21:04:27 +0000457 _local.__decimal_context__ = context
458
Martin v. Löwiscfe31282006-07-19 17:18:32 +0000459 del threading, local # Don't contaminate the namespace
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000460
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000461def localcontext(ctx=None):
462 """Return a context manager for a copy of the supplied context
463
464 Uses a copy of the current context if no context is specified
465 The returned context manager creates a local decimal context
466 in a with statement:
467 def sin(x):
468 with localcontext() as ctx:
469 ctx.prec += 2
470 # Rest of sin calculation algorithm
471 # uses a precision 2 greater than normal
Facundo Batista59c58842007-04-10 12:58:45 +0000472 return +s # Convert result to normal precision
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000473
474 def sin(x):
475 with localcontext(ExtendedContext):
476 # Rest of sin calculation algorithm
477 # uses the Extended Context from the
478 # General Decimal Arithmetic Specification
Facundo Batista59c58842007-04-10 12:58:45 +0000479 return +s # Convert result to normal context
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000480
Facundo Batistaee340e52008-05-02 17:39:00 +0000481 >>> setcontext(DefaultContext)
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000482 >>> print getcontext().prec
483 28
484 >>> with localcontext():
485 ... ctx = getcontext()
Raymond Hettinger495df472007-02-08 01:42:35 +0000486 ... ctx.prec += 2
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000487 ... print ctx.prec
488 ...
489 30
490 >>> with localcontext(ExtendedContext):
491 ... print getcontext().prec
492 ...
493 9
494 >>> print getcontext().prec
495 28
496 """
Nick Coghlanced12182006-09-02 03:54:17 +0000497 if ctx is None: ctx = getcontext()
498 return _ContextManager(ctx)
Nick Coghlan8b6999b2006-08-31 12:00:43 +0000499
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000500
Facundo Batista59c58842007-04-10 12:58:45 +0000501##### Decimal class #######################################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000502
503class Decimal(object):
504 """Floating point class for decimal arithmetic."""
505
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000506 __slots__ = ('_exp','_int','_sign', '_is_special')
507 # Generally, the value of the Decimal instance is given by
508 # (-1)**_sign * _int * 10**_exp
509 # Special values are signified by _is_special == True
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000510
Raymond Hettingerdab988d2004-10-09 07:10:44 +0000511 # We're immutable, so use __new__ not __init__
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000512 def __new__(cls, value="0", context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000513 """Create a decimal point instance.
514
515 >>> Decimal('3.14') # string input
Raymond Hettingerabe32372008-02-14 02:41:22 +0000516 Decimal('3.14')
Facundo Batista59c58842007-04-10 12:58:45 +0000517 >>> Decimal((0, (3, 1, 4), -2)) # tuple (sign, digit_tuple, exponent)
Raymond Hettingerabe32372008-02-14 02:41:22 +0000518 Decimal('3.14')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000519 >>> Decimal(314) # int or long
Raymond Hettingerabe32372008-02-14 02:41:22 +0000520 Decimal('314')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000521 >>> Decimal(Decimal(314)) # another decimal instance
Raymond Hettingerabe32372008-02-14 02:41:22 +0000522 Decimal('314')
Mark Dickinson59bc20b2008-01-12 01:56:00 +0000523 >>> Decimal(' 3.14 \\n') # leading and trailing whitespace okay
Raymond Hettingerabe32372008-02-14 02:41:22 +0000524 Decimal('3.14')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000525 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000526
Facundo Batista72bc54f2007-11-23 17:59:00 +0000527 # Note that the coefficient, self._int, is actually stored as
528 # a string rather than as a tuple of digits. This speeds up
529 # the "digits to integer" and "integer to digits" conversions
530 # that are used in almost every arithmetic operation on
531 # Decimals. This is an internal detail: the as_tuple function
532 # and the Decimal constructor still deal with tuples of
533 # digits.
534
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000535 self = object.__new__(cls)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000536
Facundo Batista0d157a02007-11-30 17:15:25 +0000537 # From a string
538 # REs insist on real strings, so we can too.
539 if isinstance(value, basestring):
Mark Dickinson59bc20b2008-01-12 01:56:00 +0000540 m = _parser(value.strip())
Facundo Batista0d157a02007-11-30 17:15:25 +0000541 if m is None:
542 if context is None:
543 context = getcontext()
544 return context._raise_error(ConversionSyntax,
545 "Invalid literal for Decimal: %r" % value)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000546
Facundo Batista0d157a02007-11-30 17:15:25 +0000547 if m.group('sign') == "-":
548 self._sign = 1
549 else:
550 self._sign = 0
551 intpart = m.group('int')
552 if intpart is not None:
553 # finite number
Mark Dickinson9a6e6452009-08-02 11:01:01 +0000554 fracpart = m.group('frac') or ''
Facundo Batista0d157a02007-11-30 17:15:25 +0000555 exp = int(m.group('exp') or '0')
Mark Dickinson9a6e6452009-08-02 11:01:01 +0000556 self._int = str(int(intpart+fracpart))
557 self._exp = exp - len(fracpart)
Facundo Batista0d157a02007-11-30 17:15:25 +0000558 self._is_special = False
559 else:
560 diag = m.group('diag')
561 if diag is not None:
562 # NaN
Mark Dickinson9a6e6452009-08-02 11:01:01 +0000563 self._int = str(int(diag or '0')).lstrip('0')
Facundo Batista0d157a02007-11-30 17:15:25 +0000564 if m.group('signal'):
565 self._exp = 'N'
566 else:
567 self._exp = 'n'
568 else:
569 # infinity
570 self._int = '0'
571 self._exp = 'F'
572 self._is_special = True
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000573 return self
574
575 # From an integer
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000576 if isinstance(value, (int,long)):
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000577 if value >= 0:
578 self._sign = 0
579 else:
580 self._sign = 1
581 self._exp = 0
Facundo Batista72bc54f2007-11-23 17:59:00 +0000582 self._int = str(abs(value))
Facundo Batista0d157a02007-11-30 17:15:25 +0000583 self._is_special = False
584 return self
585
586 # From another decimal
587 if isinstance(value, Decimal):
588 self._exp = value._exp
589 self._sign = value._sign
590 self._int = value._int
591 self._is_special = value._is_special
592 return self
593
594 # From an internal working value
595 if isinstance(value, _WorkRep):
596 self._sign = value.sign
597 self._int = str(value.int)
598 self._exp = int(value.exp)
599 self._is_special = False
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000600 return self
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000601
602 # tuple/list conversion (possibly from as_tuple())
603 if isinstance(value, (list,tuple)):
604 if len(value) != 3:
Facundo Batista9b5e2312007-10-19 19:25:57 +0000605 raise ValueError('Invalid tuple size in creation of Decimal '
606 'from list or tuple. The list or tuple '
607 'should have exactly three elements.')
608 # process sign. The isinstance test rejects floats
609 if not (isinstance(value[0], (int, long)) and value[0] in (0,1)):
610 raise ValueError("Invalid sign. The first value in the tuple "
611 "should be an integer; either 0 for a "
612 "positive number or 1 for a negative number.")
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000613 self._sign = value[0]
Facundo Batista9b5e2312007-10-19 19:25:57 +0000614 if value[2] == 'F':
615 # infinity: value[1] is ignored
Facundo Batista72bc54f2007-11-23 17:59:00 +0000616 self._int = '0'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000617 self._exp = value[2]
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000618 self._is_special = True
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000619 else:
Facundo Batista9b5e2312007-10-19 19:25:57 +0000620 # process and validate the digits in value[1]
621 digits = []
622 for digit in value[1]:
623 if isinstance(digit, (int, long)) and 0 <= digit <= 9:
624 # skip leading zeros
625 if digits or digit != 0:
626 digits.append(digit)
627 else:
628 raise ValueError("The second value in the tuple must "
629 "be composed of integers in the range "
630 "0 through 9.")
631 if value[2] in ('n', 'N'):
632 # NaN: digits form the diagnostic
Facundo Batista72bc54f2007-11-23 17:59:00 +0000633 self._int = ''.join(map(str, digits))
Facundo Batista9b5e2312007-10-19 19:25:57 +0000634 self._exp = value[2]
635 self._is_special = True
636 elif isinstance(value[2], (int, long)):
637 # finite number: digits give the coefficient
Facundo Batista72bc54f2007-11-23 17:59:00 +0000638 self._int = ''.join(map(str, digits or [0]))
Facundo Batista9b5e2312007-10-19 19:25:57 +0000639 self._exp = value[2]
640 self._is_special = False
641 else:
642 raise ValueError("The third value in the tuple must "
643 "be an integer, or one of the "
644 "strings 'F', 'n', 'N'.")
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000645 return self
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000646
Raymond Hettingerbf440692004-07-10 14:14:37 +0000647 if isinstance(value, float):
648 raise TypeError("Cannot convert float to Decimal. " +
649 "First convert the float to a string")
650
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000651 raise TypeError("Cannot convert %r to Decimal" % value)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000652
653 def _isnan(self):
654 """Returns whether the number is not actually one.
655
656 0 if a number
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000657 1 if NaN
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000658 2 if sNaN
659 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000660 if self._is_special:
661 exp = self._exp
662 if exp == 'n':
663 return 1
664 elif exp == 'N':
665 return 2
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000666 return 0
667
668 def _isinfinity(self):
669 """Returns whether the number is infinite
670
671 0 if finite or not a number
672 1 if +INF
673 -1 if -INF
674 """
675 if self._exp == 'F':
676 if self._sign:
677 return -1
678 return 1
679 return 0
680
Facundo Batista353750c2007-09-13 18:13:15 +0000681 def _check_nans(self, other=None, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000682 """Returns whether the number is not actually one.
683
684 if self, other are sNaN, signal
685 if self, other are NaN return nan
686 return 0
687
688 Done before operations.
689 """
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000690
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000691 self_is_nan = self._isnan()
692 if other is None:
693 other_is_nan = False
694 else:
695 other_is_nan = other._isnan()
696
697 if self_is_nan or other_is_nan:
698 if context is None:
699 context = getcontext()
700
701 if self_is_nan == 2:
702 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000703 self)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000704 if other_is_nan == 2:
705 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +0000706 other)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000707 if self_is_nan:
Facundo Batista353750c2007-09-13 18:13:15 +0000708 return self._fix_nan(context)
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000709
Facundo Batista353750c2007-09-13 18:13:15 +0000710 return other._fix_nan(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000711 return 0
712
Mark Dickinson2fc92632008-02-06 22:10:50 +0000713 def _compare_check_nans(self, other, context):
714 """Version of _check_nans used for the signaling comparisons
715 compare_signal, __le__, __lt__, __ge__, __gt__.
716
717 Signal InvalidOperation if either self or other is a (quiet
718 or signaling) NaN. Signaling NaNs take precedence over quiet
719 NaNs.
720
721 Return 0 if neither operand is a NaN.
722
723 """
724 if context is None:
725 context = getcontext()
726
727 if self._is_special or other._is_special:
728 if self.is_snan():
729 return context._raise_error(InvalidOperation,
730 'comparison involving sNaN',
731 self)
732 elif other.is_snan():
733 return context._raise_error(InvalidOperation,
734 'comparison involving sNaN',
735 other)
736 elif self.is_qnan():
737 return context._raise_error(InvalidOperation,
738 'comparison involving NaN',
739 self)
740 elif other.is_qnan():
741 return context._raise_error(InvalidOperation,
742 'comparison involving NaN',
743 other)
744 return 0
745
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000746 def __nonzero__(self):
Facundo Batista1a191df2007-10-02 17:01:24 +0000747 """Return True if self is nonzero; otherwise return False.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000748
Facundo Batista1a191df2007-10-02 17:01:24 +0000749 NaNs and infinities are considered nonzero.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000750 """
Facundo Batista72bc54f2007-11-23 17:59:00 +0000751 return self._is_special or self._int != '0'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000752
Mark Dickinson2fc92632008-02-06 22:10:50 +0000753 def _cmp(self, other):
754 """Compare the two non-NaN decimal instances self and other.
755
756 Returns -1 if self < other, 0 if self == other and 1
757 if self > other. This routine is for internal use only."""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000758
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000759 if self._is_special or other._is_special:
Mark Dickinson8ec69bc2009-01-25 10:47:45 +0000760 self_inf = self._isinfinity()
761 other_inf = other._isinfinity()
762 if self_inf == other_inf:
763 return 0
764 elif self_inf < other_inf:
765 return -1
766 else:
767 return 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000768
Mark Dickinson8ec69bc2009-01-25 10:47:45 +0000769 # check for zeros; Decimal('0') == Decimal('-0')
Facundo Batista353750c2007-09-13 18:13:15 +0000770 if not self:
771 if not other:
772 return 0
773 else:
774 return -((-1)**other._sign)
775 if not other:
776 return (-1)**self._sign
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000777
Facundo Batista59c58842007-04-10 12:58:45 +0000778 # If different signs, neg one is less
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000779 if other._sign < self._sign:
780 return -1
781 if self._sign < other._sign:
782 return 1
783
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000784 self_adjusted = self.adjusted()
785 other_adjusted = other.adjusted()
Facundo Batista353750c2007-09-13 18:13:15 +0000786 if self_adjusted == other_adjusted:
Facundo Batista72bc54f2007-11-23 17:59:00 +0000787 self_padded = self._int + '0'*(self._exp - other._exp)
788 other_padded = other._int + '0'*(other._exp - self._exp)
Mark Dickinson8ec69bc2009-01-25 10:47:45 +0000789 if self_padded == other_padded:
790 return 0
791 elif self_padded < other_padded:
792 return -(-1)**self._sign
793 else:
794 return (-1)**self._sign
Facundo Batista353750c2007-09-13 18:13:15 +0000795 elif self_adjusted > other_adjusted:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000796 return (-1)**self._sign
Facundo Batista353750c2007-09-13 18:13:15 +0000797 else: # self_adjusted < other_adjusted
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000798 return -((-1)**self._sign)
799
Mark Dickinson2fc92632008-02-06 22:10:50 +0000800 # Note: The Decimal standard doesn't cover rich comparisons for
801 # Decimals. In particular, the specification is silent on the
802 # subject of what should happen for a comparison involving a NaN.
803 # We take the following approach:
804 #
805 # == comparisons involving a NaN always return False
806 # != comparisons involving a NaN always return True
807 # <, >, <= and >= comparisons involving a (quiet or signaling)
808 # NaN signal InvalidOperation, and return False if the
Mark Dickinson3a94ee02008-02-10 15:19:58 +0000809 # InvalidOperation is not trapped.
Mark Dickinson2fc92632008-02-06 22:10:50 +0000810 #
811 # This behavior is designed to conform as closely as possible to
812 # that specified by IEEE 754.
813
Raymond Hettinger0aeac102004-07-05 22:53:03 +0000814 def __eq__(self, other):
Mark Dickinson2fc92632008-02-06 22:10:50 +0000815 other = _convert_other(other)
816 if other is NotImplemented:
817 return other
818 if self.is_nan() or other.is_nan():
819 return False
820 return self._cmp(other) == 0
Raymond Hettinger0aeac102004-07-05 22:53:03 +0000821
822 def __ne__(self, other):
Mark Dickinson2fc92632008-02-06 22:10:50 +0000823 other = _convert_other(other)
824 if other is NotImplemented:
825 return other
826 if self.is_nan() or other.is_nan():
827 return True
828 return self._cmp(other) != 0
829
830 def __lt__(self, other, context=None):
831 other = _convert_other(other)
832 if other is NotImplemented:
833 return other
834 ans = self._compare_check_nans(other, context)
835 if ans:
836 return False
837 return self._cmp(other) < 0
838
839 def __le__(self, other, context=None):
840 other = _convert_other(other)
841 if other is NotImplemented:
842 return other
843 ans = self._compare_check_nans(other, context)
844 if ans:
845 return False
846 return self._cmp(other) <= 0
847
848 def __gt__(self, other, context=None):
849 other = _convert_other(other)
850 if other is NotImplemented:
851 return other
852 ans = self._compare_check_nans(other, context)
853 if ans:
854 return False
855 return self._cmp(other) > 0
856
857 def __ge__(self, other, context=None):
858 other = _convert_other(other)
859 if other is NotImplemented:
860 return other
861 ans = self._compare_check_nans(other, context)
862 if ans:
863 return False
864 return self._cmp(other) >= 0
Raymond Hettinger0aeac102004-07-05 22:53:03 +0000865
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000866 def compare(self, other, context=None):
867 """Compares one to another.
868
869 -1 => a < b
870 0 => a = b
871 1 => a > b
872 NaN => one is NaN
873 Like __cmp__, but returns Decimal instances.
874 """
Facundo Batista353750c2007-09-13 18:13:15 +0000875 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000876
Facundo Batista59c58842007-04-10 12:58:45 +0000877 # Compare(NaN, NaN) = NaN
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000878 if (self._is_special or other and other._is_special):
879 ans = self._check_nans(other, context)
880 if ans:
881 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000882
Mark Dickinson2fc92632008-02-06 22:10:50 +0000883 return Decimal(self._cmp(other))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000884
885 def __hash__(self):
886 """x.__hash__() <==> hash(x)"""
887 # Decimal integers must hash the same as the ints
Facundo Batista52b25792008-01-08 12:25:20 +0000888 #
889 # The hash of a nonspecial noninteger Decimal must depend only
890 # on the value of that Decimal, and not on its representation.
Raymond Hettingerabe32372008-02-14 02:41:22 +0000891 # For example: hash(Decimal('100E-1')) == hash(Decimal('10')).
Raymond Hettingerbea3f6f2005-03-15 04:59:17 +0000892 if self._is_special:
893 if self._isnan():
894 raise TypeError('Cannot hash a NaN value.')
895 return hash(str(self))
Facundo Batista8c202442007-09-19 17:53:25 +0000896 if not self:
897 return 0
898 if self._isinteger():
899 op = _WorkRep(self.to_integral_value())
900 # to make computation feasible for Decimals with large
901 # exponent, we use the fact that hash(n) == hash(m) for
902 # any two nonzero integers n and m such that (i) n and m
903 # have the same sign, and (ii) n is congruent to m modulo
904 # 2**64-1. So we can replace hash((-1)**s*c*10**e) with
905 # hash((-1)**s*c*pow(10, e, 2**64-1).
906 return hash((-1)**op.sign*op.int*pow(10, op.exp, 2**64-1))
Facundo Batista52b25792008-01-08 12:25:20 +0000907 # The value of a nonzero nonspecial Decimal instance is
908 # faithfully represented by the triple consisting of its sign,
909 # its adjusted exponent, and its coefficient with trailing
910 # zeros removed.
911 return hash((self._sign,
912 self._exp+len(self._int),
913 self._int.rstrip('0')))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000914
915 def as_tuple(self):
916 """Represents the number as a triple tuple.
917
918 To show the internals exactly as they are.
919 """
Raymond Hettinger097a1902008-01-11 02:24:13 +0000920 return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000921
922 def __repr__(self):
923 """Represents the number as an instance of Decimal."""
924 # Invariant: eval(repr(d)) == d
Raymond Hettingerabe32372008-02-14 02:41:22 +0000925 return "Decimal('%s')" % str(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000926
Facundo Batista353750c2007-09-13 18:13:15 +0000927 def __str__(self, eng=False, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000928 """Return string representation of the number in scientific notation.
929
930 Captures all of the information in the underlying representation.
931 """
932
Facundo Batista62edb712007-12-03 16:29:52 +0000933 sign = ['', '-'][self._sign]
Raymond Hettingere5a0a962005-06-20 09:49:42 +0000934 if self._is_special:
Facundo Batista62edb712007-12-03 16:29:52 +0000935 if self._exp == 'F':
936 return sign + 'Infinity'
937 elif self._exp == 'n':
938 return sign + 'NaN' + self._int
939 else: # self._exp == 'N'
940 return sign + 'sNaN' + self._int
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000941
Facundo Batista62edb712007-12-03 16:29:52 +0000942 # number of digits of self._int to left of decimal point
943 leftdigits = self._exp + len(self._int)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000944
Facundo Batista62edb712007-12-03 16:29:52 +0000945 # dotplace is number of digits of self._int to the left of the
946 # decimal point in the mantissa of the output string (that is,
947 # after adjusting the exponent)
948 if self._exp <= 0 and leftdigits > -6:
949 # no exponent required
950 dotplace = leftdigits
951 elif not eng:
952 # usual scientific notation: 1 digit on left of the point
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000953 dotplace = 1
Facundo Batista62edb712007-12-03 16:29:52 +0000954 elif self._int == '0':
955 # engineering notation, zero
956 dotplace = (leftdigits + 1) % 3 - 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000957 else:
Facundo Batista62edb712007-12-03 16:29:52 +0000958 # engineering notation, nonzero
959 dotplace = (leftdigits - 1) % 3 + 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000960
Facundo Batista62edb712007-12-03 16:29:52 +0000961 if dotplace <= 0:
962 intpart = '0'
963 fracpart = '.' + '0'*(-dotplace) + self._int
964 elif dotplace >= len(self._int):
965 intpart = self._int+'0'*(dotplace-len(self._int))
966 fracpart = ''
967 else:
968 intpart = self._int[:dotplace]
969 fracpart = '.' + self._int[dotplace:]
970 if leftdigits == dotplace:
971 exp = ''
972 else:
973 if context is None:
974 context = getcontext()
975 exp = ['e', 'E'][context.capitals] + "%+d" % (leftdigits-dotplace)
976
977 return sign + intpart + fracpart + exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000978
979 def to_eng_string(self, context=None):
980 """Convert to engineering-type string.
981
982 Engineering notation has an exponent which is a multiple of 3, so there
983 are up to 3 digits left of the decimal place.
984
985 Same rules for when in exponential and when as a value as in __str__.
986 """
Facundo Batista353750c2007-09-13 18:13:15 +0000987 return self.__str__(eng=True, context=context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000988
989 def __neg__(self, context=None):
990 """Returns a copy with the sign switched.
991
992 Rounds, if it has reason.
993 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +0000994 if self._is_special:
995 ans = self._check_nans(context=context)
996 if ans:
997 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000998
999 if not self:
1000 # -Decimal('0') is Decimal('0'), not Decimal('-0')
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001001 ans = self.copy_abs()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001002 else:
Facundo Batista353750c2007-09-13 18:13:15 +00001003 ans = self.copy_negate()
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001004
1005 if context is None:
1006 context = getcontext()
Facundo Batistae64acfa2007-12-17 14:18:42 +00001007 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001008
1009 def __pos__(self, context=None):
1010 """Returns a copy, unless it is a sNaN.
1011
1012 Rounds the number (if more then precision digits)
1013 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001014 if self._is_special:
1015 ans = self._check_nans(context=context)
1016 if ans:
1017 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001018
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001019 if not self:
1020 # + (-0) = 0
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001021 ans = self.copy_abs()
Facundo Batista353750c2007-09-13 18:13:15 +00001022 else:
1023 ans = Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001024
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001025 if context is None:
1026 context = getcontext()
Facundo Batistae64acfa2007-12-17 14:18:42 +00001027 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001028
Facundo Batistae64acfa2007-12-17 14:18:42 +00001029 def __abs__(self, round=True, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001030 """Returns the absolute value of self.
1031
Facundo Batistae64acfa2007-12-17 14:18:42 +00001032 If the keyword argument 'round' is false, do not round. The
1033 expression self.__abs__(round=False) is equivalent to
1034 self.copy_abs().
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001035 """
Facundo Batistae64acfa2007-12-17 14:18:42 +00001036 if not round:
1037 return self.copy_abs()
1038
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001039 if self._is_special:
1040 ans = self._check_nans(context=context)
1041 if ans:
1042 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001043
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001044 if self._sign:
1045 ans = self.__neg__(context=context)
1046 else:
1047 ans = self.__pos__(context=context)
1048
1049 return ans
1050
1051 def __add__(self, other, context=None):
1052 """Returns self + other.
1053
1054 -INF + INF (or the reverse) cause InvalidOperation errors.
1055 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001056 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001057 if other is NotImplemented:
1058 return other
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001059
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001060 if context is None:
1061 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001062
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001063 if self._is_special or other._is_special:
1064 ans = self._check_nans(other, context)
1065 if ans:
1066 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001067
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001068 if self._isinfinity():
Facundo Batista59c58842007-04-10 12:58:45 +00001069 # If both INF, same sign => same as both, opposite => error.
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001070 if self._sign != other._sign and other._isinfinity():
1071 return context._raise_error(InvalidOperation, '-INF + INF')
1072 return Decimal(self)
1073 if other._isinfinity():
Facundo Batista59c58842007-04-10 12:58:45 +00001074 return Decimal(other) # Can't both be infinity here
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001075
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001076 exp = min(self._exp, other._exp)
1077 negativezero = 0
1078 if context.rounding == ROUND_FLOOR and self._sign != other._sign:
Facundo Batista59c58842007-04-10 12:58:45 +00001079 # If the answer is 0, the sign should be negative, in this case.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001080 negativezero = 1
1081
1082 if not self and not other:
1083 sign = min(self._sign, other._sign)
1084 if negativezero:
1085 sign = 1
Facundo Batista72bc54f2007-11-23 17:59:00 +00001086 ans = _dec_from_triple(sign, '0', exp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001087 ans = ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00001088 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001089 if not self:
Facundo Batista99b55482004-10-26 23:38:46 +00001090 exp = max(exp, other._exp - context.prec-1)
Facundo Batista353750c2007-09-13 18:13:15 +00001091 ans = other._rescale(exp, context.rounding)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001092 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001093 return ans
1094 if not other:
Facundo Batista99b55482004-10-26 23:38:46 +00001095 exp = max(exp, self._exp - context.prec-1)
Facundo Batista353750c2007-09-13 18:13:15 +00001096 ans = self._rescale(exp, context.rounding)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001097 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001098 return ans
1099
1100 op1 = _WorkRep(self)
1101 op2 = _WorkRep(other)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001102 op1, op2 = _normalize(op1, op2, context.prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001103
1104 result = _WorkRep()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001105 if op1.sign != op2.sign:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001106 # Equal and opposite
Raymond Hettinger17931de2004-10-27 06:21:46 +00001107 if op1.int == op2.int:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001108 ans = _dec_from_triple(negativezero, '0', exp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001109 ans = ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00001110 return ans
Raymond Hettinger17931de2004-10-27 06:21:46 +00001111 if op1.int < op2.int:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001112 op1, op2 = op2, op1
Facundo Batista59c58842007-04-10 12:58:45 +00001113 # OK, now abs(op1) > abs(op2)
Raymond Hettinger17931de2004-10-27 06:21:46 +00001114 if op1.sign == 1:
1115 result.sign = 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001116 op1.sign, op2.sign = op2.sign, op1.sign
1117 else:
Raymond Hettinger17931de2004-10-27 06:21:46 +00001118 result.sign = 0
Facundo Batista59c58842007-04-10 12:58:45 +00001119 # So we know the sign, and op1 > 0.
Raymond Hettinger17931de2004-10-27 06:21:46 +00001120 elif op1.sign == 1:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001121 result.sign = 1
Raymond Hettinger17931de2004-10-27 06:21:46 +00001122 op1.sign, op2.sign = (0, 0)
1123 else:
1124 result.sign = 0
Facundo Batista59c58842007-04-10 12:58:45 +00001125 # Now, op1 > abs(op2) > 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001126
Raymond Hettinger17931de2004-10-27 06:21:46 +00001127 if op2.sign == 0:
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001128 result.int = op1.int + op2.int
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001129 else:
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001130 result.int = op1.int - op2.int
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001131
1132 result.exp = op1.exp
1133 ans = Decimal(result)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001134 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001135 return ans
1136
1137 __radd__ = __add__
1138
1139 def __sub__(self, other, context=None):
Facundo Batista353750c2007-09-13 18:13:15 +00001140 """Return self - other"""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001141 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001142 if other is NotImplemented:
1143 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001144
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001145 if self._is_special or other._is_special:
1146 ans = self._check_nans(other, context=context)
1147 if ans:
1148 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001149
Facundo Batista353750c2007-09-13 18:13:15 +00001150 # self - other is computed as self + other.copy_negate()
1151 return self.__add__(other.copy_negate(), context=context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001152
1153 def __rsub__(self, other, context=None):
Facundo Batista353750c2007-09-13 18:13:15 +00001154 """Return other - self"""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001155 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001156 if other is NotImplemented:
1157 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001158
Facundo Batista353750c2007-09-13 18:13:15 +00001159 return other.__sub__(self, context=context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001160
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001161 def __mul__(self, other, context=None):
1162 """Return self * other.
1163
1164 (+-) INF * 0 (or its reverse) raise InvalidOperation.
1165 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001166 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001167 if other is NotImplemented:
1168 return other
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001169
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001170 if context is None:
1171 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001172
Raymond Hettingerd87ac8f2004-07-09 10:52:54 +00001173 resultsign = self._sign ^ other._sign
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001174
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001175 if self._is_special or other._is_special:
1176 ans = self._check_nans(other, context)
1177 if ans:
1178 return ans
1179
1180 if self._isinfinity():
1181 if not other:
1182 return context._raise_error(InvalidOperation, '(+-)INF * 0')
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001183 return _SignedInfinity[resultsign]
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001184
1185 if other._isinfinity():
1186 if not self:
1187 return context._raise_error(InvalidOperation, '0 * (+-)INF')
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001188 return _SignedInfinity[resultsign]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001189
1190 resultexp = self._exp + other._exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001191
1192 # Special case for multiplying by zero
1193 if not self or not other:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001194 ans = _dec_from_triple(resultsign, '0', resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001195 # Fixing in case the exponent is out of bounds
1196 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001197 return ans
1198
1199 # Special case for multiplying by power of 10
Facundo Batista72bc54f2007-11-23 17:59:00 +00001200 if self._int == '1':
1201 ans = _dec_from_triple(resultsign, other._int, resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001202 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001203 return ans
Facundo Batista72bc54f2007-11-23 17:59:00 +00001204 if other._int == '1':
1205 ans = _dec_from_triple(resultsign, self._int, resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001206 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001207 return ans
1208
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001209 op1 = _WorkRep(self)
1210 op2 = _WorkRep(other)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001211
Facundo Batista72bc54f2007-11-23 17:59:00 +00001212 ans = _dec_from_triple(resultsign, str(op1.int * op2.int), resultexp)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001213 ans = ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001214
1215 return ans
1216 __rmul__ = __mul__
1217
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001218 def __truediv__(self, other, context=None):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001219 """Return self / other."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001220 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001221 if other is NotImplemented:
Facundo Batistacce8df22007-09-18 16:53:18 +00001222 return NotImplemented
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001223
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001224 if context is None:
1225 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001226
Raymond Hettingerd87ac8f2004-07-09 10:52:54 +00001227 sign = self._sign ^ other._sign
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001228
1229 if self._is_special or other._is_special:
1230 ans = self._check_nans(other, context)
1231 if ans:
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001232 return ans
1233
1234 if self._isinfinity() and other._isinfinity():
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001235 return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001236
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001237 if self._isinfinity():
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001238 return _SignedInfinity[sign]
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001239
1240 if other._isinfinity():
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001241 context._raise_error(Clamped, 'Division by infinity')
Facundo Batista72bc54f2007-11-23 17:59:00 +00001242 return _dec_from_triple(sign, '0', context.Etiny())
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001243
1244 # Special cases for zeroes
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001245 if not other:
Facundo Batistacce8df22007-09-18 16:53:18 +00001246 if not self:
1247 return context._raise_error(DivisionUndefined, '0 / 0')
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001248 return context._raise_error(DivisionByZero, 'x / 0', sign)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001249
Facundo Batistacce8df22007-09-18 16:53:18 +00001250 if not self:
1251 exp = self._exp - other._exp
1252 coeff = 0
1253 else:
1254 # OK, so neither = 0, INF or NaN
1255 shift = len(other._int) - len(self._int) + context.prec + 1
1256 exp = self._exp - other._exp - shift
1257 op1 = _WorkRep(self)
1258 op2 = _WorkRep(other)
1259 if shift >= 0:
1260 coeff, remainder = divmod(op1.int * 10**shift, op2.int)
1261 else:
1262 coeff, remainder = divmod(op1.int, op2.int * 10**-shift)
1263 if remainder:
1264 # result is not exact; adjust to ensure correct rounding
1265 if coeff % 5 == 0:
1266 coeff += 1
1267 else:
1268 # result is exact; get as close to ideal exponent as possible
1269 ideal_exp = self._exp - other._exp
1270 while exp < ideal_exp and coeff % 10 == 0:
1271 coeff //= 10
1272 exp += 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001273
Facundo Batista72bc54f2007-11-23 17:59:00 +00001274 ans = _dec_from_triple(sign, str(coeff), exp)
Facundo Batistacce8df22007-09-18 16:53:18 +00001275 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001276
Facundo Batistacce8df22007-09-18 16:53:18 +00001277 def _divide(self, other, context):
1278 """Return (self // other, self % other), to context.prec precision.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001279
Facundo Batistacce8df22007-09-18 16:53:18 +00001280 Assumes that neither self nor other is a NaN, that self is not
1281 infinite and that other is nonzero.
1282 """
1283 sign = self._sign ^ other._sign
1284 if other._isinfinity():
1285 ideal_exp = self._exp
1286 else:
1287 ideal_exp = min(self._exp, other._exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001288
Facundo Batistacce8df22007-09-18 16:53:18 +00001289 expdiff = self.adjusted() - other.adjusted()
1290 if not self or other._isinfinity() or expdiff <= -2:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001291 return (_dec_from_triple(sign, '0', 0),
Facundo Batistacce8df22007-09-18 16:53:18 +00001292 self._rescale(ideal_exp, context.rounding))
1293 if expdiff <= context.prec:
1294 op1 = _WorkRep(self)
1295 op2 = _WorkRep(other)
1296 if op1.exp >= op2.exp:
1297 op1.int *= 10**(op1.exp - op2.exp)
1298 else:
1299 op2.int *= 10**(op2.exp - op1.exp)
1300 q, r = divmod(op1.int, op2.int)
1301 if q < 10**context.prec:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001302 return (_dec_from_triple(sign, str(q), 0),
1303 _dec_from_triple(self._sign, str(r), ideal_exp))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001304
Facundo Batistacce8df22007-09-18 16:53:18 +00001305 # Here the quotient is too large to be representable
1306 ans = context._raise_error(DivisionImpossible,
1307 'quotient too large in //, % or divmod')
1308 return ans, ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001309
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001310 def __rtruediv__(self, other, context=None):
1311 """Swaps self/other and returns __truediv__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001312 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001313 if other is NotImplemented:
1314 return other
Mark Dickinson8aca9d02008-05-04 02:05:06 +00001315 return other.__truediv__(self, context=context)
1316
1317 __div__ = __truediv__
1318 __rdiv__ = __rtruediv__
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001319
1320 def __divmod__(self, other, context=None):
1321 """
Facundo Batistacce8df22007-09-18 16:53:18 +00001322 Return (self // other, self % other)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001323 """
Facundo Batistacce8df22007-09-18 16:53:18 +00001324 other = _convert_other(other)
1325 if other is NotImplemented:
1326 return other
1327
1328 if context is None:
1329 context = getcontext()
1330
1331 ans = self._check_nans(other, context)
1332 if ans:
1333 return (ans, ans)
1334
1335 sign = self._sign ^ other._sign
1336 if self._isinfinity():
1337 if other._isinfinity():
1338 ans = context._raise_error(InvalidOperation, 'divmod(INF, INF)')
1339 return ans, ans
1340 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001341 return (_SignedInfinity[sign],
Facundo Batistacce8df22007-09-18 16:53:18 +00001342 context._raise_error(InvalidOperation, 'INF % x'))
1343
1344 if not other:
1345 if not self:
1346 ans = context._raise_error(DivisionUndefined, 'divmod(0, 0)')
1347 return ans, ans
1348 else:
1349 return (context._raise_error(DivisionByZero, 'x // 0', sign),
1350 context._raise_error(InvalidOperation, 'x % 0'))
1351
1352 quotient, remainder = self._divide(other, context)
Facundo Batistae64acfa2007-12-17 14:18:42 +00001353 remainder = remainder._fix(context)
Facundo Batistacce8df22007-09-18 16:53:18 +00001354 return quotient, remainder
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001355
1356 def __rdivmod__(self, other, context=None):
1357 """Swaps self/other and returns __divmod__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001358 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001359 if other is NotImplemented:
1360 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001361 return other.__divmod__(self, context=context)
1362
1363 def __mod__(self, other, context=None):
1364 """
1365 self % other
1366 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001367 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001368 if other is NotImplemented:
1369 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001370
Facundo Batistacce8df22007-09-18 16:53:18 +00001371 if context is None:
1372 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001373
Facundo Batistacce8df22007-09-18 16:53:18 +00001374 ans = self._check_nans(other, context)
1375 if ans:
1376 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001377
Facundo Batistacce8df22007-09-18 16:53:18 +00001378 if self._isinfinity():
1379 return context._raise_error(InvalidOperation, 'INF % x')
1380 elif not other:
1381 if self:
1382 return context._raise_error(InvalidOperation, 'x % 0')
1383 else:
1384 return context._raise_error(DivisionUndefined, '0 % 0')
1385
1386 remainder = self._divide(other, context)[1]
Facundo Batistae64acfa2007-12-17 14:18:42 +00001387 remainder = remainder._fix(context)
Facundo Batistacce8df22007-09-18 16:53:18 +00001388 return remainder
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001389
1390 def __rmod__(self, other, context=None):
1391 """Swaps self/other and returns __mod__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001392 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001393 if other is NotImplemented:
1394 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001395 return other.__mod__(self, context=context)
1396
1397 def remainder_near(self, other, context=None):
1398 """
1399 Remainder nearest to 0- abs(remainder-near) <= other/2
1400 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001401 if context is None:
1402 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001403
Facundo Batista353750c2007-09-13 18:13:15 +00001404 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001405
Facundo Batista353750c2007-09-13 18:13:15 +00001406 ans = self._check_nans(other, context)
1407 if ans:
1408 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001409
Facundo Batista353750c2007-09-13 18:13:15 +00001410 # self == +/-infinity -> InvalidOperation
1411 if self._isinfinity():
1412 return context._raise_error(InvalidOperation,
1413 'remainder_near(infinity, x)')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001414
Facundo Batista353750c2007-09-13 18:13:15 +00001415 # other == 0 -> either InvalidOperation or DivisionUndefined
1416 if not other:
1417 if self:
1418 return context._raise_error(InvalidOperation,
1419 'remainder_near(x, 0)')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001420 else:
Facundo Batista353750c2007-09-13 18:13:15 +00001421 return context._raise_error(DivisionUndefined,
1422 'remainder_near(0, 0)')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001423
Facundo Batista353750c2007-09-13 18:13:15 +00001424 # other = +/-infinity -> remainder = self
1425 if other._isinfinity():
1426 ans = Decimal(self)
1427 return ans._fix(context)
1428
1429 # self = 0 -> remainder = self, with ideal exponent
1430 ideal_exponent = min(self._exp, other._exp)
1431 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001432 ans = _dec_from_triple(self._sign, '0', ideal_exponent)
Facundo Batista353750c2007-09-13 18:13:15 +00001433 return ans._fix(context)
1434
1435 # catch most cases of large or small quotient
1436 expdiff = self.adjusted() - other.adjusted()
1437 if expdiff >= context.prec + 1:
1438 # expdiff >= prec+1 => abs(self/other) > 10**prec
Facundo Batistacce8df22007-09-18 16:53:18 +00001439 return context._raise_error(DivisionImpossible)
Facundo Batista353750c2007-09-13 18:13:15 +00001440 if expdiff <= -2:
1441 # expdiff <= -2 => abs(self/other) < 0.1
1442 ans = self._rescale(ideal_exponent, context.rounding)
1443 return ans._fix(context)
1444
1445 # adjust both arguments to have the same exponent, then divide
1446 op1 = _WorkRep(self)
1447 op2 = _WorkRep(other)
1448 if op1.exp >= op2.exp:
1449 op1.int *= 10**(op1.exp - op2.exp)
1450 else:
1451 op2.int *= 10**(op2.exp - op1.exp)
1452 q, r = divmod(op1.int, op2.int)
1453 # remainder is r*10**ideal_exponent; other is +/-op2.int *
1454 # 10**ideal_exponent. Apply correction to ensure that
1455 # abs(remainder) <= abs(other)/2
1456 if 2*r + (q&1) > op2.int:
1457 r -= op2.int
1458 q += 1
1459
1460 if q >= 10**context.prec:
Facundo Batistacce8df22007-09-18 16:53:18 +00001461 return context._raise_error(DivisionImpossible)
Facundo Batista353750c2007-09-13 18:13:15 +00001462
1463 # result has same sign as self unless r is negative
1464 sign = self._sign
1465 if r < 0:
1466 sign = 1-sign
1467 r = -r
1468
Facundo Batista72bc54f2007-11-23 17:59:00 +00001469 ans = _dec_from_triple(sign, str(r), ideal_exponent)
Facundo Batista353750c2007-09-13 18:13:15 +00001470 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001471
1472 def __floordiv__(self, other, context=None):
1473 """self // other"""
Facundo Batistacce8df22007-09-18 16:53:18 +00001474 other = _convert_other(other)
1475 if other is NotImplemented:
1476 return other
1477
1478 if context is None:
1479 context = getcontext()
1480
1481 ans = self._check_nans(other, context)
1482 if ans:
1483 return ans
1484
1485 if self._isinfinity():
1486 if other._isinfinity():
1487 return context._raise_error(InvalidOperation, 'INF // INF')
1488 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001489 return _SignedInfinity[self._sign ^ other._sign]
Facundo Batistacce8df22007-09-18 16:53:18 +00001490
1491 if not other:
1492 if self:
1493 return context._raise_error(DivisionByZero, 'x // 0',
1494 self._sign ^ other._sign)
1495 else:
1496 return context._raise_error(DivisionUndefined, '0 // 0')
1497
1498 return self._divide(other, context)[0]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001499
1500 def __rfloordiv__(self, other, context=None):
1501 """Swaps self/other and returns __floordiv__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001502 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00001503 if other is NotImplemented:
1504 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001505 return other.__floordiv__(self, context=context)
1506
1507 def __float__(self):
1508 """Float representation."""
1509 return float(str(self))
1510
1511 def __int__(self):
Brett Cannon46b08022005-03-01 03:12:26 +00001512 """Converts self to an int, truncating if necessary."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001513 if self._is_special:
1514 if self._isnan():
Mark Dickinsonc05b7892009-09-08 19:22:18 +00001515 raise ValueError("Cannot convert NaN to integer")
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001516 elif self._isinfinity():
Mark Dickinsonc05b7892009-09-08 19:22:18 +00001517 raise OverflowError("Cannot convert infinity to integer")
Facundo Batista353750c2007-09-13 18:13:15 +00001518 s = (-1)**self._sign
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001519 if self._exp >= 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001520 return s*int(self._int)*10**self._exp
Raymond Hettinger605ed022004-11-24 07:28:48 +00001521 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001522 return s*int(self._int[:self._exp] or '0')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001523
Raymond Hettinger5a053642008-01-24 19:05:29 +00001524 __trunc__ = __int__
1525
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001526 def real(self):
1527 return self
Mark Dickinsonc95c6f12009-01-04 21:30:17 +00001528 real = property(real)
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001529
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001530 def imag(self):
1531 return Decimal(0)
Mark Dickinsonc95c6f12009-01-04 21:30:17 +00001532 imag = property(imag)
Raymond Hettinger116f72f2008-02-12 01:18:03 +00001533
1534 def conjugate(self):
1535 return self
1536
1537 def __complex__(self):
1538 return complex(float(self))
1539
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001540 def __long__(self):
1541 """Converts to a long.
1542
1543 Equivalent to long(int(self))
1544 """
1545 return long(self.__int__())
1546
Facundo Batista353750c2007-09-13 18:13:15 +00001547 def _fix_nan(self, context):
1548 """Decapitate the payload of a NaN to fit the context"""
1549 payload = self._int
1550
1551 # maximum length of payload is precision if _clamp=0,
1552 # precision-1 if _clamp=1.
1553 max_payload_len = context.prec - context._clamp
1554 if len(payload) > max_payload_len:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001555 payload = payload[len(payload)-max_payload_len:].lstrip('0')
1556 return _dec_from_triple(self._sign, payload, self._exp, True)
Facundo Batista6c398da2007-09-17 17:30:13 +00001557 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00001558
Raymond Hettingerdab988d2004-10-09 07:10:44 +00001559 def _fix(self, context):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001560 """Round if it is necessary to keep self within prec precision.
1561
1562 Rounds and fixes the exponent. Does not raise on a sNaN.
1563
1564 Arguments:
1565 self - Decimal instance
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001566 context - context used.
1567 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00001568
Facundo Batista353750c2007-09-13 18:13:15 +00001569 if self._is_special:
1570 if self._isnan():
1571 # decapitate payload if necessary
1572 return self._fix_nan(context)
1573 else:
1574 # self is +/-Infinity; return unaltered
Facundo Batista6c398da2007-09-17 17:30:13 +00001575 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001576
Facundo Batista353750c2007-09-13 18:13:15 +00001577 # if self is zero then exponent should be between Etiny and
1578 # Emax if _clamp==0, and between Etiny and Etop if _clamp==1.
1579 Etiny = context.Etiny()
1580 Etop = context.Etop()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001581 if not self:
Facundo Batista353750c2007-09-13 18:13:15 +00001582 exp_max = [context.Emax, Etop][context._clamp]
1583 new_exp = min(max(self._exp, Etiny), exp_max)
1584 if new_exp != self._exp:
1585 context._raise_error(Clamped)
Facundo Batista72bc54f2007-11-23 17:59:00 +00001586 return _dec_from_triple(self._sign, '0', new_exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001587 else:
Facundo Batista6c398da2007-09-17 17:30:13 +00001588 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00001589
1590 # exp_min is the smallest allowable exponent of the result,
1591 # equal to max(self.adjusted()-context.prec+1, Etiny)
1592 exp_min = len(self._int) + self._exp - context.prec
1593 if exp_min > Etop:
1594 # overflow: exp_min > Etop iff self.adjusted() > Emax
1595 context._raise_error(Inexact)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001596 context._raise_error(Rounded)
Facundo Batista353750c2007-09-13 18:13:15 +00001597 return context._raise_error(Overflow, 'above Emax', self._sign)
1598 self_is_subnormal = exp_min < Etiny
1599 if self_is_subnormal:
1600 context._raise_error(Subnormal)
1601 exp_min = Etiny
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001602
Facundo Batista353750c2007-09-13 18:13:15 +00001603 # round if self has too many digits
1604 if self._exp < exp_min:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001605 context._raise_error(Rounded)
Facundo Batista2ec74152007-12-03 17:55:00 +00001606 digits = len(self._int) + self._exp - exp_min
1607 if digits < 0:
1608 self = _dec_from_triple(self._sign, '1', exp_min-1)
1609 digits = 0
1610 this_function = getattr(self, self._pick_rounding_function[context.rounding])
1611 changed = this_function(digits)
1612 coeff = self._int[:digits] or '0'
1613 if changed == 1:
1614 coeff = str(int(coeff)+1)
1615 ans = _dec_from_triple(self._sign, coeff, exp_min)
1616
1617 if changed:
Facundo Batista353750c2007-09-13 18:13:15 +00001618 context._raise_error(Inexact)
1619 if self_is_subnormal:
1620 context._raise_error(Underflow)
1621 if not ans:
1622 # raise Clamped on underflow to 0
1623 context._raise_error(Clamped)
1624 elif len(ans._int) == context.prec+1:
1625 # we get here only if rescaling rounds the
1626 # cofficient up to exactly 10**context.prec
1627 if ans._exp < Etop:
Facundo Batista72bc54f2007-11-23 17:59:00 +00001628 ans = _dec_from_triple(ans._sign,
1629 ans._int[:-1], ans._exp+1)
Facundo Batista353750c2007-09-13 18:13:15 +00001630 else:
1631 # Inexact and Rounded have already been raised
1632 ans = context._raise_error(Overflow, 'above Emax',
1633 self._sign)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001634 return ans
1635
Facundo Batista353750c2007-09-13 18:13:15 +00001636 # fold down if _clamp == 1 and self has too few digits
1637 if context._clamp == 1 and self._exp > Etop:
1638 context._raise_error(Clamped)
Facundo Batista72bc54f2007-11-23 17:59:00 +00001639 self_padded = self._int + '0'*(self._exp - Etop)
1640 return _dec_from_triple(self._sign, self_padded, Etop)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001641
Facundo Batista353750c2007-09-13 18:13:15 +00001642 # here self was representable to begin with; return unchanged
Facundo Batista6c398da2007-09-17 17:30:13 +00001643 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001644
1645 _pick_rounding_function = {}
1646
Facundo Batista353750c2007-09-13 18:13:15 +00001647 # for each of the rounding functions below:
1648 # self is a finite, nonzero Decimal
1649 # prec is an integer satisfying 0 <= prec < len(self._int)
Facundo Batista2ec74152007-12-03 17:55:00 +00001650 #
1651 # each function returns either -1, 0, or 1, as follows:
1652 # 1 indicates that self should be rounded up (away from zero)
1653 # 0 indicates that self should be truncated, and that all the
1654 # digits to be truncated are zeros (so the value is unchanged)
1655 # -1 indicates that there are nonzero digits to be truncated
Facundo Batista353750c2007-09-13 18:13:15 +00001656
1657 def _round_down(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001658 """Also known as round-towards-0, truncate."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001659 if _all_zeros(self._int, prec):
1660 return 0
1661 else:
1662 return -1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001663
Facundo Batista353750c2007-09-13 18:13:15 +00001664 def _round_up(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001665 """Rounds away from 0."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001666 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001667
Facundo Batista353750c2007-09-13 18:13:15 +00001668 def _round_half_up(self, prec):
1669 """Rounds 5 up (away from 0)"""
Facundo Batista72bc54f2007-11-23 17:59:00 +00001670 if self._int[prec] in '56789':
Facundo Batista2ec74152007-12-03 17:55:00 +00001671 return 1
1672 elif _all_zeros(self._int, prec):
1673 return 0
Facundo Batista353750c2007-09-13 18:13:15 +00001674 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001675 return -1
Facundo Batista353750c2007-09-13 18:13:15 +00001676
1677 def _round_half_down(self, prec):
1678 """Round 5 down"""
Facundo Batista2ec74152007-12-03 17:55:00 +00001679 if _exact_half(self._int, prec):
1680 return -1
1681 else:
1682 return self._round_half_up(prec)
Facundo Batista353750c2007-09-13 18:13:15 +00001683
1684 def _round_half_even(self, prec):
1685 """Round 5 to even, rest to nearest."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001686 if _exact_half(self._int, prec) and \
1687 (prec == 0 or self._int[prec-1] in '02468'):
1688 return -1
Facundo Batista353750c2007-09-13 18:13:15 +00001689 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001690 return self._round_half_up(prec)
Facundo Batista353750c2007-09-13 18:13:15 +00001691
1692 def _round_ceiling(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001693 """Rounds up (not away from 0 if negative.)"""
1694 if self._sign:
Facundo Batista353750c2007-09-13 18:13:15 +00001695 return self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001696 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001697 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001698
Facundo Batista353750c2007-09-13 18:13:15 +00001699 def _round_floor(self, prec):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001700 """Rounds down (not towards 0 if negative)"""
1701 if not self._sign:
Facundo Batista353750c2007-09-13 18:13:15 +00001702 return self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001703 else:
Facundo Batista2ec74152007-12-03 17:55:00 +00001704 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001705
Facundo Batista353750c2007-09-13 18:13:15 +00001706 def _round_05up(self, prec):
1707 """Round down unless digit prec-1 is 0 or 5."""
Facundo Batista2ec74152007-12-03 17:55:00 +00001708 if prec and self._int[prec-1] not in '05':
Facundo Batista353750c2007-09-13 18:13:15 +00001709 return self._round_down(prec)
Facundo Batista2ec74152007-12-03 17:55:00 +00001710 else:
1711 return -self._round_down(prec)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001712
Facundo Batista353750c2007-09-13 18:13:15 +00001713 def fma(self, other, third, context=None):
1714 """Fused multiply-add.
1715
1716 Returns self*other+third with no rounding of the intermediate
1717 product self*other.
1718
1719 self and other are multiplied together, with no rounding of
1720 the result. The third operand is then added to the result,
1721 and a single final rounding is performed.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001722 """
Facundo Batista353750c2007-09-13 18:13:15 +00001723
1724 other = _convert_other(other, raiseit=True)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001725
1726 # compute product; raise InvalidOperation if either operand is
1727 # a signaling NaN or if the product is zero times infinity.
1728 if self._is_special or other._is_special:
1729 if context is None:
1730 context = getcontext()
1731 if self._exp == 'N':
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001732 return context._raise_error(InvalidOperation, 'sNaN', self)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001733 if other._exp == 'N':
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001734 return context._raise_error(InvalidOperation, 'sNaN', other)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001735 if self._exp == 'n':
1736 product = self
1737 elif other._exp == 'n':
1738 product = other
1739 elif self._exp == 'F':
1740 if not other:
1741 return context._raise_error(InvalidOperation,
1742 'INF * 0 in fma')
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001743 product = _SignedInfinity[self._sign ^ other._sign]
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001744 elif other._exp == 'F':
1745 if not self:
1746 return context._raise_error(InvalidOperation,
1747 '0 * INF in fma')
Mark Dickinsone4d46b22009-01-03 12:09:22 +00001748 product = _SignedInfinity[self._sign ^ other._sign]
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001749 else:
1750 product = _dec_from_triple(self._sign ^ other._sign,
1751 str(int(self._int) * int(other._int)),
1752 self._exp + other._exp)
1753
Facundo Batista353750c2007-09-13 18:13:15 +00001754 third = _convert_other(third, raiseit=True)
Facundo Batista58f6f2e2007-12-04 16:31:53 +00001755 return product.__add__(third, context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001756
Facundo Batista353750c2007-09-13 18:13:15 +00001757 def _power_modulo(self, other, modulo, context=None):
1758 """Three argument version of __pow__"""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001759
Facundo Batista353750c2007-09-13 18:13:15 +00001760 # if can't convert other and modulo to Decimal, raise
1761 # TypeError; there's no point returning NotImplemented (no
1762 # equivalent of __rpow__ for three argument pow)
1763 other = _convert_other(other, raiseit=True)
1764 modulo = _convert_other(modulo, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001765
Facundo Batista353750c2007-09-13 18:13:15 +00001766 if context is None:
1767 context = getcontext()
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001768
Facundo Batista353750c2007-09-13 18:13:15 +00001769 # deal with NaNs: if there are any sNaNs then first one wins,
1770 # (i.e. behaviour for NaNs is identical to that of fma)
1771 self_is_nan = self._isnan()
1772 other_is_nan = other._isnan()
1773 modulo_is_nan = modulo._isnan()
1774 if self_is_nan or other_is_nan or modulo_is_nan:
1775 if self_is_nan == 2:
1776 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001777 self)
Facundo Batista353750c2007-09-13 18:13:15 +00001778 if other_is_nan == 2:
1779 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001780 other)
Facundo Batista353750c2007-09-13 18:13:15 +00001781 if modulo_is_nan == 2:
1782 return context._raise_error(InvalidOperation, 'sNaN',
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00001783 modulo)
Facundo Batista353750c2007-09-13 18:13:15 +00001784 if self_is_nan:
Facundo Batista6c398da2007-09-17 17:30:13 +00001785 return self._fix_nan(context)
Facundo Batista353750c2007-09-13 18:13:15 +00001786 if other_is_nan:
Facundo Batista6c398da2007-09-17 17:30:13 +00001787 return other._fix_nan(context)
1788 return modulo._fix_nan(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00001789
Facundo Batista353750c2007-09-13 18:13:15 +00001790 # check inputs: we apply same restrictions as Python's pow()
1791 if not (self._isinteger() and
1792 other._isinteger() and
1793 modulo._isinteger()):
1794 return context._raise_error(InvalidOperation,
1795 'pow() 3rd argument not allowed '
1796 'unless all arguments are integers')
1797 if other < 0:
1798 return context._raise_error(InvalidOperation,
1799 'pow() 2nd argument cannot be '
1800 'negative when 3rd argument specified')
1801 if not modulo:
1802 return context._raise_error(InvalidOperation,
1803 'pow() 3rd argument cannot be 0')
1804
1805 # additional restriction for decimal: the modulus must be less
1806 # than 10**prec in absolute value
1807 if modulo.adjusted() >= context.prec:
1808 return context._raise_error(InvalidOperation,
1809 'insufficient precision: pow() 3rd '
1810 'argument must not have more than '
1811 'precision digits')
1812
1813 # define 0**0 == NaN, for consistency with two-argument pow
1814 # (even though it hurts!)
1815 if not other and not self:
1816 return context._raise_error(InvalidOperation,
1817 'at least one of pow() 1st argument '
1818 'and 2nd argument must be nonzero ;'
1819 '0**0 is not defined')
1820
1821 # compute sign of result
1822 if other._iseven():
1823 sign = 0
1824 else:
1825 sign = self._sign
1826
1827 # convert modulo to a Python integer, and self and other to
1828 # Decimal integers (i.e. force their exponents to be >= 0)
1829 modulo = abs(int(modulo))
1830 base = _WorkRep(self.to_integral_value())
1831 exponent = _WorkRep(other.to_integral_value())
1832
1833 # compute result using integer pow()
1834 base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo
1835 for i in xrange(exponent.exp):
1836 base = pow(base, 10, modulo)
1837 base = pow(base, exponent.int, modulo)
1838
Facundo Batista72bc54f2007-11-23 17:59:00 +00001839 return _dec_from_triple(sign, str(base), 0)
Facundo Batista353750c2007-09-13 18:13:15 +00001840
1841 def _power_exact(self, other, p):
1842 """Attempt to compute self**other exactly.
1843
1844 Given Decimals self and other and an integer p, attempt to
1845 compute an exact result for the power self**other, with p
1846 digits of precision. Return None if self**other is not
1847 exactly representable in p digits.
1848
1849 Assumes that elimination of special cases has already been
1850 performed: self and other must both be nonspecial; self must
1851 be positive and not numerically equal to 1; other must be
1852 nonzero. For efficiency, other._exp should not be too large,
1853 so that 10**abs(other._exp) is a feasible calculation."""
1854
1855 # In the comments below, we write x for the value of self and
1856 # y for the value of other. Write x = xc*10**xe and y =
1857 # yc*10**ye.
1858
1859 # The main purpose of this method is to identify the *failure*
1860 # of x**y to be exactly representable with as little effort as
1861 # possible. So we look for cheap and easy tests that
1862 # eliminate the possibility of x**y being exact. Only if all
1863 # these tests are passed do we go on to actually compute x**y.
1864
1865 # Here's the main idea. First normalize both x and y. We
1866 # express y as a rational m/n, with m and n relatively prime
1867 # and n>0. Then for x**y to be exactly representable (at
1868 # *any* precision), xc must be the nth power of a positive
1869 # integer and xe must be divisible by n. If m is negative
1870 # then additionally xc must be a power of either 2 or 5, hence
1871 # a power of 2**n or 5**n.
1872 #
1873 # There's a limit to how small |y| can be: if y=m/n as above
1874 # then:
1875 #
1876 # (1) if xc != 1 then for the result to be representable we
1877 # need xc**(1/n) >= 2, and hence also xc**|y| >= 2. So
1878 # if |y| <= 1/nbits(xc) then xc < 2**nbits(xc) <=
1879 # 2**(1/|y|), hence xc**|y| < 2 and the result is not
1880 # representable.
1881 #
1882 # (2) if xe != 0, |xe|*(1/n) >= 1, so |xe|*|y| >= 1. Hence if
1883 # |y| < 1/|xe| then the result is not representable.
1884 #
1885 # Note that since x is not equal to 1, at least one of (1) and
1886 # (2) must apply. Now |y| < 1/nbits(xc) iff |yc|*nbits(xc) <
1887 # 10**-ye iff len(str(|yc|*nbits(xc)) <= -ye.
1888 #
1889 # There's also a limit to how large y can be, at least if it's
1890 # positive: the normalized result will have coefficient xc**y,
1891 # so if it's representable then xc**y < 10**p, and y <
1892 # p/log10(xc). Hence if y*log10(xc) >= p then the result is
1893 # not exactly representable.
1894
1895 # if len(str(abs(yc*xe)) <= -ye then abs(yc*xe) < 10**-ye,
1896 # so |y| < 1/xe and the result is not representable.
1897 # Similarly, len(str(abs(yc)*xc_bits)) <= -ye implies |y|
1898 # < 1/nbits(xc).
1899
1900 x = _WorkRep(self)
1901 xc, xe = x.int, x.exp
1902 while xc % 10 == 0:
1903 xc //= 10
1904 xe += 1
1905
1906 y = _WorkRep(other)
1907 yc, ye = y.int, y.exp
1908 while yc % 10 == 0:
1909 yc //= 10
1910 ye += 1
1911
1912 # case where xc == 1: result is 10**(xe*y), with xe*y
1913 # required to be an integer
1914 if xc == 1:
1915 if ye >= 0:
1916 exponent = xe*yc*10**ye
1917 else:
1918 exponent, remainder = divmod(xe*yc, 10**-ye)
1919 if remainder:
1920 return None
1921 if y.sign == 1:
1922 exponent = -exponent
1923 # if other is a nonnegative integer, use ideal exponent
1924 if other._isinteger() and other._sign == 0:
1925 ideal_exponent = self._exp*int(other)
1926 zeros = min(exponent-ideal_exponent, p-1)
1927 else:
1928 zeros = 0
Facundo Batista72bc54f2007-11-23 17:59:00 +00001929 return _dec_from_triple(0, '1' + '0'*zeros, exponent-zeros)
Facundo Batista353750c2007-09-13 18:13:15 +00001930
1931 # case where y is negative: xc must be either a power
1932 # of 2 or a power of 5.
1933 if y.sign == 1:
1934 last_digit = xc % 10
1935 if last_digit in (2,4,6,8):
1936 # quick test for power of 2
1937 if xc & -xc != xc:
1938 return None
1939 # now xc is a power of 2; e is its exponent
1940 e = _nbits(xc)-1
1941 # find e*y and xe*y; both must be integers
1942 if ye >= 0:
1943 y_as_int = yc*10**ye
1944 e = e*y_as_int
1945 xe = xe*y_as_int
1946 else:
1947 ten_pow = 10**-ye
1948 e, remainder = divmod(e*yc, ten_pow)
1949 if remainder:
1950 return None
1951 xe, remainder = divmod(xe*yc, ten_pow)
1952 if remainder:
1953 return None
1954
1955 if e*65 >= p*93: # 93/65 > log(10)/log(5)
1956 return None
1957 xc = 5**e
1958
1959 elif last_digit == 5:
1960 # e >= log_5(xc) if xc is a power of 5; we have
1961 # equality all the way up to xc=5**2658
1962 e = _nbits(xc)*28//65
1963 xc, remainder = divmod(5**e, xc)
1964 if remainder:
1965 return None
1966 while xc % 5 == 0:
1967 xc //= 5
1968 e -= 1
1969 if ye >= 0:
1970 y_as_integer = yc*10**ye
1971 e = e*y_as_integer
1972 xe = xe*y_as_integer
1973 else:
1974 ten_pow = 10**-ye
1975 e, remainder = divmod(e*yc, ten_pow)
1976 if remainder:
1977 return None
1978 xe, remainder = divmod(xe*yc, ten_pow)
1979 if remainder:
1980 return None
1981 if e*3 >= p*10: # 10/3 > log(10)/log(2)
1982 return None
1983 xc = 2**e
1984 else:
1985 return None
1986
1987 if xc >= 10**p:
1988 return None
1989 xe = -e-xe
Facundo Batista72bc54f2007-11-23 17:59:00 +00001990 return _dec_from_triple(0, str(xc), xe)
Facundo Batista353750c2007-09-13 18:13:15 +00001991
1992 # now y is positive; find m and n such that y = m/n
1993 if ye >= 0:
1994 m, n = yc*10**ye, 1
1995 else:
1996 if xe != 0 and len(str(abs(yc*xe))) <= -ye:
1997 return None
1998 xc_bits = _nbits(xc)
1999 if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye:
2000 return None
2001 m, n = yc, 10**(-ye)
2002 while m % 2 == n % 2 == 0:
2003 m //= 2
2004 n //= 2
2005 while m % 5 == n % 5 == 0:
2006 m //= 5
2007 n //= 5
2008
2009 # compute nth root of xc*10**xe
2010 if n > 1:
2011 # if 1 < xc < 2**n then xc isn't an nth power
2012 if xc != 1 and xc_bits <= n:
2013 return None
2014
2015 xe, rem = divmod(xe, n)
2016 if rem != 0:
2017 return None
2018
2019 # compute nth root of xc using Newton's method
2020 a = 1L << -(-_nbits(xc)//n) # initial estimate
2021 while True:
2022 q, r = divmod(xc, a**(n-1))
2023 if a <= q:
2024 break
2025 else:
2026 a = (a*(n-1) + q)//n
2027 if not (a == q and r == 0):
2028 return None
2029 xc = a
2030
2031 # now xc*10**xe is the nth root of the original xc*10**xe
2032 # compute mth power of xc*10**xe
2033
2034 # if m > p*100//_log10_lb(xc) then m > p/log10(xc), hence xc**m >
2035 # 10**p and the result is not representable.
2036 if xc > 1 and m > p*100//_log10_lb(xc):
2037 return None
2038 xc = xc**m
2039 xe *= m
2040 if xc > 10**p:
2041 return None
2042
2043 # by this point the result *is* exactly representable
2044 # adjust the exponent to get as close as possible to the ideal
2045 # exponent, if necessary
2046 str_xc = str(xc)
2047 if other._isinteger() and other._sign == 0:
2048 ideal_exponent = self._exp*int(other)
2049 zeros = min(xe-ideal_exponent, p-len(str_xc))
2050 else:
2051 zeros = 0
Facundo Batista72bc54f2007-11-23 17:59:00 +00002052 return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros)
Facundo Batista353750c2007-09-13 18:13:15 +00002053
2054 def __pow__(self, other, modulo=None, context=None):
2055 """Return self ** other [ % modulo].
2056
2057 With two arguments, compute self**other.
2058
2059 With three arguments, compute (self**other) % modulo. For the
2060 three argument form, the following restrictions on the
2061 arguments hold:
2062
2063 - all three arguments must be integral
2064 - other must be nonnegative
2065 - either self or other (or both) must be nonzero
2066 - modulo must be nonzero and must have at most p digits,
2067 where p is the context precision.
2068
2069 If any of these restrictions is violated the InvalidOperation
2070 flag is raised.
2071
2072 The result of pow(self, other, modulo) is identical to the
2073 result that would be obtained by computing (self**other) %
2074 modulo with unbounded precision, but is computed more
2075 efficiently. It is always exact.
2076 """
2077
2078 if modulo is not None:
2079 return self._power_modulo(other, modulo, context)
2080
2081 other = _convert_other(other)
2082 if other is NotImplemented:
2083 return other
2084
2085 if context is None:
2086 context = getcontext()
2087
2088 # either argument is a NaN => result is NaN
2089 ans = self._check_nans(other, context)
2090 if ans:
2091 return ans
2092
2093 # 0**0 = NaN (!), x**0 = 1 for nonzero x (including +/-Infinity)
2094 if not other:
2095 if not self:
2096 return context._raise_error(InvalidOperation, '0 ** 0')
2097 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002098 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002099
2100 # result has sign 1 iff self._sign is 1 and other is an odd integer
2101 result_sign = 0
2102 if self._sign == 1:
2103 if other._isinteger():
2104 if not other._iseven():
2105 result_sign = 1
2106 else:
2107 # -ve**noninteger = NaN
2108 # (-0)**noninteger = 0**noninteger
2109 if self:
2110 return context._raise_error(InvalidOperation,
2111 'x ** y with x negative and y not an integer')
2112 # negate self, without doing any unwanted rounding
Facundo Batista72bc54f2007-11-23 17:59:00 +00002113 self = self.copy_negate()
Facundo Batista353750c2007-09-13 18:13:15 +00002114
2115 # 0**(+ve or Inf)= 0; 0**(-ve or -Inf) = Infinity
2116 if not self:
2117 if other._sign == 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002118 return _dec_from_triple(result_sign, '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00002119 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002120 return _SignedInfinity[result_sign]
Facundo Batista353750c2007-09-13 18:13:15 +00002121
2122 # Inf**(+ve or Inf) = Inf; Inf**(-ve or -Inf) = 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002123 if self._isinfinity():
Facundo Batista353750c2007-09-13 18:13:15 +00002124 if other._sign == 0:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002125 return _SignedInfinity[result_sign]
Facundo Batista353750c2007-09-13 18:13:15 +00002126 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002127 return _dec_from_triple(result_sign, '0', 0)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002128
Facundo Batista353750c2007-09-13 18:13:15 +00002129 # 1**other = 1, but the choice of exponent and the flags
2130 # depend on the exponent of self, and on whether other is a
2131 # positive integer, a negative integer, or neither
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002132 if self == _One:
Facundo Batista353750c2007-09-13 18:13:15 +00002133 if other._isinteger():
2134 # exp = max(self._exp*max(int(other), 0),
2135 # 1-context.prec) but evaluating int(other) directly
2136 # is dangerous until we know other is small (other
2137 # could be 1e999999999)
2138 if other._sign == 1:
2139 multiplier = 0
2140 elif other > context.prec:
2141 multiplier = context.prec
2142 else:
2143 multiplier = int(other)
Martin v. Löwiscfe31282006-07-19 17:18:32 +00002144
Facundo Batista353750c2007-09-13 18:13:15 +00002145 exp = self._exp * multiplier
2146 if exp < 1-context.prec:
2147 exp = 1-context.prec
2148 context._raise_error(Rounded)
2149 else:
2150 context._raise_error(Inexact)
2151 context._raise_error(Rounded)
2152 exp = 1-context.prec
2153
Facundo Batista72bc54f2007-11-23 17:59:00 +00002154 return _dec_from_triple(result_sign, '1'+'0'*-exp, exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002155
2156 # compute adjusted exponent of self
2157 self_adj = self.adjusted()
2158
2159 # self ** infinity is infinity if self > 1, 0 if self < 1
2160 # self ** -infinity is infinity if self < 1, 0 if self > 1
2161 if other._isinfinity():
2162 if (other._sign == 0) == (self_adj < 0):
Facundo Batista72bc54f2007-11-23 17:59:00 +00002163 return _dec_from_triple(result_sign, '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00002164 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002165 return _SignedInfinity[result_sign]
Facundo Batista353750c2007-09-13 18:13:15 +00002166
2167 # from here on, the result always goes through the call
2168 # to _fix at the end of this function.
2169 ans = None
2170
2171 # crude test to catch cases of extreme overflow/underflow. If
2172 # log10(self)*other >= 10**bound and bound >= len(str(Emax))
2173 # then 10**bound >= 10**len(str(Emax)) >= Emax+1 and hence
2174 # self**other >= 10**(Emax+1), so overflow occurs. The test
2175 # for underflow is similar.
2176 bound = self._log10_exp_bound() + other.adjusted()
2177 if (self_adj >= 0) == (other._sign == 0):
2178 # self > 1 and other +ve, or self < 1 and other -ve
2179 # possibility of overflow
2180 if bound >= len(str(context.Emax)):
Facundo Batista72bc54f2007-11-23 17:59:00 +00002181 ans = _dec_from_triple(result_sign, '1', context.Emax+1)
Facundo Batista353750c2007-09-13 18:13:15 +00002182 else:
2183 # self > 1 and other -ve, or self < 1 and other +ve
2184 # possibility of underflow to 0
2185 Etiny = context.Etiny()
2186 if bound >= len(str(-Etiny)):
Facundo Batista72bc54f2007-11-23 17:59:00 +00002187 ans = _dec_from_triple(result_sign, '1', Etiny-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002188
2189 # try for an exact result with precision +1
2190 if ans is None:
2191 ans = self._power_exact(other, context.prec + 1)
2192 if ans is not None and result_sign == 1:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002193 ans = _dec_from_triple(1, ans._int, ans._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002194
2195 # usual case: inexact result, x**y computed directly as exp(y*log(x))
2196 if ans is None:
2197 p = context.prec
2198 x = _WorkRep(self)
2199 xc, xe = x.int, x.exp
2200 y = _WorkRep(other)
2201 yc, ye = y.int, y.exp
2202 if y.sign == 1:
2203 yc = -yc
2204
2205 # compute correctly rounded result: start with precision +3,
2206 # then increase precision until result is unambiguously roundable
2207 extra = 3
2208 while True:
2209 coeff, exp = _dpower(xc, xe, yc, ye, p+extra)
2210 if coeff % (5*10**(len(str(coeff))-p-1)):
2211 break
2212 extra += 3
2213
Facundo Batista72bc54f2007-11-23 17:59:00 +00002214 ans = _dec_from_triple(result_sign, str(coeff), exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002215
2216 # the specification says that for non-integer other we need to
2217 # raise Inexact, even when the result is actually exact. In
2218 # the same way, we need to raise Underflow here if the result
2219 # is subnormal. (The call to _fix will take care of raising
2220 # Rounded and Subnormal, as usual.)
2221 if not other._isinteger():
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002222 context._raise_error(Inexact)
Facundo Batista353750c2007-09-13 18:13:15 +00002223 # pad with zeros up to length context.prec+1 if necessary
2224 if len(ans._int) <= context.prec:
2225 expdiff = context.prec+1 - len(ans._int)
Facundo Batista72bc54f2007-11-23 17:59:00 +00002226 ans = _dec_from_triple(ans._sign, ans._int+'0'*expdiff,
2227 ans._exp-expdiff)
Facundo Batista353750c2007-09-13 18:13:15 +00002228 if ans.adjusted() < context.Emin:
2229 context._raise_error(Underflow)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002230
Facundo Batista353750c2007-09-13 18:13:15 +00002231 # unlike exp, ln and log10, the power function respects the
2232 # rounding mode; no need to use ROUND_HALF_EVEN here
2233 ans = ans._fix(context)
2234 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002235
2236 def __rpow__(self, other, context=None):
2237 """Swaps self/other and returns __pow__."""
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002238 other = _convert_other(other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00002239 if other is NotImplemented:
2240 return other
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002241 return other.__pow__(self, context=context)
2242
2243 def normalize(self, context=None):
2244 """Normalize- strip trailing 0s, change anything equal to 0 to 0e0"""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002245
Facundo Batista353750c2007-09-13 18:13:15 +00002246 if context is None:
2247 context = getcontext()
2248
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002249 if self._is_special:
2250 ans = self._check_nans(context=context)
2251 if ans:
2252 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002253
Raymond Hettingerdab988d2004-10-09 07:10:44 +00002254 dup = self._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002255 if dup._isinfinity():
2256 return dup
2257
2258 if not dup:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002259 return _dec_from_triple(dup._sign, '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00002260 exp_max = [context.Emax, context.Etop()][context._clamp]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002261 end = len(dup._int)
2262 exp = dup._exp
Facundo Batista72bc54f2007-11-23 17:59:00 +00002263 while dup._int[end-1] == '0' and exp < exp_max:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002264 exp += 1
2265 end -= 1
Facundo Batista72bc54f2007-11-23 17:59:00 +00002266 return _dec_from_triple(dup._sign, dup._int[:end], exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002267
Facundo Batistabd2fe832007-09-13 18:42:09 +00002268 def quantize(self, exp, rounding=None, context=None, watchexp=True):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002269 """Quantize self so its exponent is the same as that of exp.
2270
2271 Similar to self._rescale(exp._exp) but with error checking.
2272 """
Facundo Batistabd2fe832007-09-13 18:42:09 +00002273 exp = _convert_other(exp, raiseit=True)
2274
Facundo Batista353750c2007-09-13 18:13:15 +00002275 if context is None:
2276 context = getcontext()
2277 if rounding is None:
2278 rounding = context.rounding
2279
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002280 if self._is_special or exp._is_special:
2281 ans = self._check_nans(exp, context)
2282 if ans:
2283 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002284
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002285 if exp._isinfinity() or self._isinfinity():
2286 if exp._isinfinity() and self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00002287 return Decimal(self) # if both are inf, it is OK
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002288 return context._raise_error(InvalidOperation,
2289 'quantize with one INF')
Facundo Batista353750c2007-09-13 18:13:15 +00002290
Facundo Batistabd2fe832007-09-13 18:42:09 +00002291 # if we're not watching exponents, do a simple rescale
2292 if not watchexp:
2293 ans = self._rescale(exp._exp, rounding)
2294 # raise Inexact and Rounded where appropriate
2295 if ans._exp > self._exp:
2296 context._raise_error(Rounded)
2297 if ans != self:
2298 context._raise_error(Inexact)
2299 return ans
2300
Facundo Batista353750c2007-09-13 18:13:15 +00002301 # exp._exp should be between Etiny and Emax
2302 if not (context.Etiny() <= exp._exp <= context.Emax):
2303 return context._raise_error(InvalidOperation,
2304 'target exponent out of bounds in quantize')
2305
2306 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002307 ans = _dec_from_triple(self._sign, '0', exp._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002308 return ans._fix(context)
2309
2310 self_adjusted = self.adjusted()
2311 if self_adjusted > context.Emax:
2312 return context._raise_error(InvalidOperation,
2313 'exponent of quantize result too large for current context')
2314 if self_adjusted - exp._exp + 1 > context.prec:
2315 return context._raise_error(InvalidOperation,
2316 'quantize result has too many digits for current context')
2317
2318 ans = self._rescale(exp._exp, rounding)
2319 if ans.adjusted() > context.Emax:
2320 return context._raise_error(InvalidOperation,
2321 'exponent of quantize result too large for current context')
2322 if len(ans._int) > context.prec:
2323 return context._raise_error(InvalidOperation,
2324 'quantize result has too many digits for current context')
2325
2326 # raise appropriate flags
2327 if ans._exp > self._exp:
2328 context._raise_error(Rounded)
2329 if ans != self:
2330 context._raise_error(Inexact)
2331 if ans and ans.adjusted() < context.Emin:
2332 context._raise_error(Subnormal)
2333
2334 # call to fix takes care of any necessary folddown
2335 ans = ans._fix(context)
2336 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002337
2338 def same_quantum(self, other):
Facundo Batista1a191df2007-10-02 17:01:24 +00002339 """Return True if self and other have the same exponent; otherwise
2340 return False.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002341
Facundo Batista1a191df2007-10-02 17:01:24 +00002342 If either operand is a special value, the following rules are used:
2343 * return True if both operands are infinities
2344 * return True if both operands are NaNs
2345 * otherwise, return False.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002346 """
Facundo Batista1a191df2007-10-02 17:01:24 +00002347 other = _convert_other(other, raiseit=True)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002348 if self._is_special or other._is_special:
Facundo Batista1a191df2007-10-02 17:01:24 +00002349 return (self.is_nan() and other.is_nan() or
2350 self.is_infinite() and other.is_infinite())
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002351 return self._exp == other._exp
2352
Facundo Batista353750c2007-09-13 18:13:15 +00002353 def _rescale(self, exp, rounding):
2354 """Rescale self so that the exponent is exp, either by padding with zeros
2355 or by truncating digits, using the given rounding mode.
2356
2357 Specials are returned without change. This operation is
2358 quiet: it raises no flags, and uses no information from the
2359 context.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002360
2361 exp = exp to scale to (an integer)
Facundo Batista353750c2007-09-13 18:13:15 +00002362 rounding = rounding mode
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002363 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002364 if self._is_special:
Facundo Batista6c398da2007-09-17 17:30:13 +00002365 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002366 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002367 return _dec_from_triple(self._sign, '0', exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002368
Facundo Batista353750c2007-09-13 18:13:15 +00002369 if self._exp >= exp:
2370 # pad answer with zeros if necessary
Facundo Batista72bc54f2007-11-23 17:59:00 +00002371 return _dec_from_triple(self._sign,
2372 self._int + '0'*(self._exp - exp), exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002373
Facundo Batista353750c2007-09-13 18:13:15 +00002374 # too many digits; round and lose data. If self.adjusted() <
2375 # exp-1, replace self by 10**(exp-1) before rounding
2376 digits = len(self._int) + self._exp - exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002377 if digits < 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002378 self = _dec_from_triple(self._sign, '1', exp-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002379 digits = 0
2380 this_function = getattr(self, self._pick_rounding_function[rounding])
Facundo Batista2ec74152007-12-03 17:55:00 +00002381 changed = this_function(digits)
2382 coeff = self._int[:digits] or '0'
2383 if changed == 1:
2384 coeff = str(int(coeff)+1)
2385 return _dec_from_triple(self._sign, coeff, exp)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002386
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00002387 def _round(self, places, rounding):
2388 """Round a nonzero, nonspecial Decimal to a fixed number of
2389 significant figures, using the given rounding mode.
2390
2391 Infinities, NaNs and zeros are returned unaltered.
2392
2393 This operation is quiet: it raises no flags, and uses no
2394 information from the context.
2395
2396 """
2397 if places <= 0:
2398 raise ValueError("argument should be at least 1 in _round")
2399 if self._is_special or not self:
2400 return Decimal(self)
2401 ans = self._rescale(self.adjusted()+1-places, rounding)
2402 # it can happen that the rescale alters the adjusted exponent;
2403 # for example when rounding 99.97 to 3 significant figures.
2404 # When this happens we end up with an extra 0 at the end of
2405 # the number; a second rescale fixes this.
2406 if ans.adjusted() != self.adjusted():
2407 ans = ans._rescale(ans.adjusted()+1-places, rounding)
2408 return ans
2409
Facundo Batista353750c2007-09-13 18:13:15 +00002410 def to_integral_exact(self, rounding=None, context=None):
2411 """Rounds to a nearby integer.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002412
Facundo Batista353750c2007-09-13 18:13:15 +00002413 If no rounding mode is specified, take the rounding mode from
2414 the context. This method raises the Rounded and Inexact flags
2415 when appropriate.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002416
Facundo Batista353750c2007-09-13 18:13:15 +00002417 See also: to_integral_value, which does exactly the same as
2418 this method except that it doesn't raise Inexact or Rounded.
2419 """
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002420 if self._is_special:
2421 ans = self._check_nans(context=context)
2422 if ans:
2423 return ans
Facundo Batista6c398da2007-09-17 17:30:13 +00002424 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002425 if self._exp >= 0:
Facundo Batista6c398da2007-09-17 17:30:13 +00002426 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00002427 if not self:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002428 return _dec_from_triple(self._sign, '0', 0)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002429 if context is None:
2430 context = getcontext()
Facundo Batista353750c2007-09-13 18:13:15 +00002431 if rounding is None:
2432 rounding = context.rounding
2433 context._raise_error(Rounded)
2434 ans = self._rescale(0, rounding)
2435 if ans != self:
2436 context._raise_error(Inexact)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002437 return ans
2438
Facundo Batista353750c2007-09-13 18:13:15 +00002439 def to_integral_value(self, rounding=None, context=None):
2440 """Rounds to the nearest integer, without raising inexact, rounded."""
2441 if context is None:
2442 context = getcontext()
2443 if rounding is None:
2444 rounding = context.rounding
2445 if self._is_special:
2446 ans = self._check_nans(context=context)
2447 if ans:
2448 return ans
Facundo Batista6c398da2007-09-17 17:30:13 +00002449 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00002450 if self._exp >= 0:
Facundo Batista6c398da2007-09-17 17:30:13 +00002451 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00002452 else:
2453 return self._rescale(0, rounding)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002454
Facundo Batista353750c2007-09-13 18:13:15 +00002455 # the method name changed, but we provide also the old one, for compatibility
2456 to_integral = to_integral_value
2457
2458 def sqrt(self, context=None):
2459 """Return the square root of self."""
Mark Dickinson3b24ccb2008-03-25 14:33:23 +00002460 if context is None:
2461 context = getcontext()
2462
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002463 if self._is_special:
2464 ans = self._check_nans(context=context)
2465 if ans:
2466 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002467
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002468 if self._isinfinity() and self._sign == 0:
2469 return Decimal(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002470
2471 if not self:
Facundo Batista353750c2007-09-13 18:13:15 +00002472 # exponent = self._exp // 2. sqrt(-0) = -0
Facundo Batista72bc54f2007-11-23 17:59:00 +00002473 ans = _dec_from_triple(self._sign, '0', self._exp // 2)
Facundo Batista353750c2007-09-13 18:13:15 +00002474 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002475
2476 if self._sign == 1:
2477 return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0')
2478
Facundo Batista353750c2007-09-13 18:13:15 +00002479 # At this point self represents a positive number. Let p be
2480 # the desired precision and express self in the form c*100**e
2481 # with c a positive real number and e an integer, c and e
2482 # being chosen so that 100**(p-1) <= c < 100**p. Then the
2483 # (exact) square root of self is sqrt(c)*10**e, and 10**(p-1)
2484 # <= sqrt(c) < 10**p, so the closest representable Decimal at
2485 # precision p is n*10**e where n = round_half_even(sqrt(c)),
2486 # the closest integer to sqrt(c) with the even integer chosen
2487 # in the case of a tie.
2488 #
2489 # To ensure correct rounding in all cases, we use the
2490 # following trick: we compute the square root to an extra
2491 # place (precision p+1 instead of precision p), rounding down.
2492 # Then, if the result is inexact and its last digit is 0 or 5,
2493 # we increase the last digit to 1 or 6 respectively; if it's
2494 # exact we leave the last digit alone. Now the final round to
2495 # p places (or fewer in the case of underflow) will round
2496 # correctly and raise the appropriate flags.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002497
Facundo Batista353750c2007-09-13 18:13:15 +00002498 # use an extra digit of precision
2499 prec = context.prec+1
2500
2501 # write argument in the form c*100**e where e = self._exp//2
2502 # is the 'ideal' exponent, to be used if the square root is
2503 # exactly representable. l is the number of 'digits' of c in
2504 # base 100, so that 100**(l-1) <= c < 100**l.
2505 op = _WorkRep(self)
2506 e = op.exp >> 1
2507 if op.exp & 1:
2508 c = op.int * 10
2509 l = (len(self._int) >> 1) + 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002510 else:
Facundo Batista353750c2007-09-13 18:13:15 +00002511 c = op.int
2512 l = len(self._int)+1 >> 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002513
Facundo Batista353750c2007-09-13 18:13:15 +00002514 # rescale so that c has exactly prec base 100 'digits'
2515 shift = prec-l
2516 if shift >= 0:
2517 c *= 100**shift
2518 exact = True
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002519 else:
Facundo Batista353750c2007-09-13 18:13:15 +00002520 c, remainder = divmod(c, 100**-shift)
2521 exact = not remainder
2522 e -= shift
Martin v. Löwiscfe31282006-07-19 17:18:32 +00002523
Facundo Batista353750c2007-09-13 18:13:15 +00002524 # find n = floor(sqrt(c)) using Newton's method
2525 n = 10**prec
2526 while True:
2527 q = c//n
2528 if n <= q:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002529 break
Facundo Batista353750c2007-09-13 18:13:15 +00002530 else:
2531 n = n + q >> 1
2532 exact = exact and n*n == c
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002533
Facundo Batista353750c2007-09-13 18:13:15 +00002534 if exact:
2535 # result is exact; rescale to use ideal exponent e
2536 if shift >= 0:
2537 # assert n % 10**shift == 0
2538 n //= 10**shift
2539 else:
2540 n *= 10**-shift
2541 e += shift
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002542 else:
Facundo Batista353750c2007-09-13 18:13:15 +00002543 # result is not exact; fix last digit as described above
2544 if n % 5 == 0:
2545 n += 1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002546
Facundo Batista72bc54f2007-11-23 17:59:00 +00002547 ans = _dec_from_triple(0, str(n), e)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002548
Facundo Batista353750c2007-09-13 18:13:15 +00002549 # round, and fit to current context
2550 context = context._shallow_copy()
2551 rounding = context._set_rounding(ROUND_HALF_EVEN)
Raymond Hettingerdab988d2004-10-09 07:10:44 +00002552 ans = ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00002553 context.rounding = rounding
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002554
Facundo Batista353750c2007-09-13 18:13:15 +00002555 return ans
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002556
2557 def max(self, other, context=None):
2558 """Returns the larger value.
2559
Facundo Batista353750c2007-09-13 18:13:15 +00002560 Like max(self, other) except if one is not a number, returns
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002561 NaN (and signals if one is sNaN). Also rounds.
2562 """
Facundo Batista353750c2007-09-13 18:13:15 +00002563 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002564
Facundo Batista6c398da2007-09-17 17:30:13 +00002565 if context is None:
2566 context = getcontext()
2567
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002568 if self._is_special or other._is_special:
Facundo Batista59c58842007-04-10 12:58:45 +00002569 # If one operand is a quiet NaN and the other is number, then the
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002570 # number is always returned
2571 sn = self._isnan()
2572 on = other._isnan()
2573 if sn or on:
Mark Dickinson7c62f892008-12-11 09:17:40 +00002574 if on == 1 and sn == 0:
2575 return self._fix(context)
2576 if sn == 1 and on == 0:
2577 return other._fix(context)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002578 return self._check_nans(other, context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002579
Mark Dickinson2fc92632008-02-06 22:10:50 +00002580 c = self._cmp(other)
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002581 if c == 0:
Facundo Batista59c58842007-04-10 12:58:45 +00002582 # If both operands are finite and equal in numerical value
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002583 # then an ordering is applied:
2584 #
Facundo Batista59c58842007-04-10 12:58:45 +00002585 # If the signs differ then max returns the operand with the
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002586 # positive sign and min returns the operand with the negative sign
2587 #
Facundo Batista59c58842007-04-10 12:58:45 +00002588 # If the signs are the same then the exponent is used to select
Facundo Batista353750c2007-09-13 18:13:15 +00002589 # the result. This is exactly the ordering used in compare_total.
2590 c = self.compare_total(other)
2591
2592 if c == -1:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002593 ans = other
Facundo Batista353750c2007-09-13 18:13:15 +00002594 else:
2595 ans = self
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002596
Facundo Batistae64acfa2007-12-17 14:18:42 +00002597 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002598
2599 def min(self, other, context=None):
2600 """Returns the smaller value.
2601
Facundo Batista59c58842007-04-10 12:58:45 +00002602 Like min(self, other) except if one is not a number, returns
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002603 NaN (and signals if one is sNaN). Also rounds.
2604 """
Facundo Batista353750c2007-09-13 18:13:15 +00002605 other = _convert_other(other, raiseit=True)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002606
Facundo Batista6c398da2007-09-17 17:30:13 +00002607 if context is None:
2608 context = getcontext()
2609
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002610 if self._is_special or other._is_special:
Facundo Batista59c58842007-04-10 12:58:45 +00002611 # If one operand is a quiet NaN and the other is number, then the
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002612 # number is always returned
2613 sn = self._isnan()
2614 on = other._isnan()
2615 if sn or on:
Mark Dickinson7c62f892008-12-11 09:17:40 +00002616 if on == 1 and sn == 0:
2617 return self._fix(context)
2618 if sn == 1 and on == 0:
2619 return other._fix(context)
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002620 return self._check_nans(other, context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002621
Mark Dickinson2fc92632008-02-06 22:10:50 +00002622 c = self._cmp(other)
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00002623 if c == 0:
Facundo Batista353750c2007-09-13 18:13:15 +00002624 c = self.compare_total(other)
2625
2626 if c == -1:
2627 ans = self
2628 else:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002629 ans = other
Raymond Hettinger636a6b12004-09-19 01:54:09 +00002630
Facundo Batistae64acfa2007-12-17 14:18:42 +00002631 return ans._fix(context)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002632
2633 def _isinteger(self):
2634 """Returns whether self is an integer"""
Facundo Batista353750c2007-09-13 18:13:15 +00002635 if self._is_special:
2636 return False
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002637 if self._exp >= 0:
2638 return True
2639 rest = self._int[self._exp:]
Facundo Batista72bc54f2007-11-23 17:59:00 +00002640 return rest == '0'*len(rest)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002641
2642 def _iseven(self):
Facundo Batista353750c2007-09-13 18:13:15 +00002643 """Returns True if self is even. Assumes self is an integer."""
2644 if not self or self._exp > 0:
2645 return True
Facundo Batista72bc54f2007-11-23 17:59:00 +00002646 return self._int[-1+self._exp] in '02468'
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002647
2648 def adjusted(self):
2649 """Return the adjusted exponent of self"""
2650 try:
2651 return self._exp + len(self._int) - 1
Facundo Batista59c58842007-04-10 12:58:45 +00002652 # If NaN or Infinity, self._exp is string
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00002653 except TypeError:
2654 return 0
2655
Facundo Batista353750c2007-09-13 18:13:15 +00002656 def canonical(self, context=None):
2657 """Returns the same Decimal object.
2658
2659 As we do not have different encodings for the same number, the
2660 received object already is in its canonical form.
2661 """
2662 return self
2663
2664 def compare_signal(self, other, context=None):
2665 """Compares self to the other operand numerically.
2666
2667 It's pretty much like compare(), but all NaNs signal, with signaling
2668 NaNs taking precedence over quiet NaNs.
2669 """
Mark Dickinson2fc92632008-02-06 22:10:50 +00002670 other = _convert_other(other, raiseit = True)
2671 ans = self._compare_check_nans(other, context)
2672 if ans:
2673 return ans
Facundo Batista353750c2007-09-13 18:13:15 +00002674 return self.compare(other, context=context)
2675
2676 def compare_total(self, other):
2677 """Compares self to other using the abstract representations.
2678
2679 This is not like the standard compare, which use their numerical
2680 value. Note that a total ordering is defined for all possible abstract
2681 representations.
2682 """
2683 # if one is negative and the other is positive, it's easy
2684 if self._sign and not other._sign:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002685 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002686 if not self._sign and other._sign:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002687 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002688 sign = self._sign
2689
2690 # let's handle both NaN types
2691 self_nan = self._isnan()
2692 other_nan = other._isnan()
2693 if self_nan or other_nan:
2694 if self_nan == other_nan:
Mark Dickinson7f265b72009-08-28 13:35:02 +00002695 # compare payloads as though they're integers
2696 self_key = len(self._int), self._int
2697 other_key = len(other._int), other._int
2698 if self_key < other_key:
Facundo Batista353750c2007-09-13 18:13:15 +00002699 if sign:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002700 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002701 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002702 return _NegativeOne
Mark Dickinson7f265b72009-08-28 13:35:02 +00002703 if self_key > other_key:
Facundo Batista353750c2007-09-13 18:13:15 +00002704 if sign:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002705 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002706 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002707 return _One
2708 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002709
2710 if sign:
2711 if self_nan == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002712 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002713 if other_nan == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002714 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002715 if self_nan == 2:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002716 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002717 if other_nan == 2:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002718 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002719 else:
2720 if self_nan == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002721 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002722 if other_nan == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002723 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002724 if self_nan == 2:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002725 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002726 if other_nan == 2:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002727 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002728
2729 if self < other:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002730 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002731 if self > other:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002732 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002733
2734 if self._exp < other._exp:
2735 if sign:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002736 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002737 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002738 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002739 if self._exp > other._exp:
2740 if sign:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002741 return _NegativeOne
Facundo Batista353750c2007-09-13 18:13:15 +00002742 else:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002743 return _One
2744 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002745
2746
2747 def compare_total_mag(self, other):
2748 """Compares self to other using abstract repr., ignoring sign.
2749
2750 Like compare_total, but with operand's sign ignored and assumed to be 0.
2751 """
2752 s = self.copy_abs()
2753 o = other.copy_abs()
2754 return s.compare_total(o)
2755
2756 def copy_abs(self):
2757 """Returns a copy with the sign set to 0. """
Facundo Batista72bc54f2007-11-23 17:59:00 +00002758 return _dec_from_triple(0, self._int, self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002759
2760 def copy_negate(self):
2761 """Returns a copy with the sign inverted."""
2762 if self._sign:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002763 return _dec_from_triple(0, self._int, self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002764 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00002765 return _dec_from_triple(1, self._int, self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002766
2767 def copy_sign(self, other):
2768 """Returns self with the sign of other."""
Facundo Batista72bc54f2007-11-23 17:59:00 +00002769 return _dec_from_triple(other._sign, self._int,
2770 self._exp, self._is_special)
Facundo Batista353750c2007-09-13 18:13:15 +00002771
2772 def exp(self, context=None):
2773 """Returns e ** self."""
2774
2775 if context is None:
2776 context = getcontext()
2777
2778 # exp(NaN) = NaN
2779 ans = self._check_nans(context=context)
2780 if ans:
2781 return ans
2782
2783 # exp(-Infinity) = 0
2784 if self._isinfinity() == -1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002785 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002786
2787 # exp(0) = 1
2788 if not self:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002789 return _One
Facundo Batista353750c2007-09-13 18:13:15 +00002790
2791 # exp(Infinity) = Infinity
2792 if self._isinfinity() == 1:
2793 return Decimal(self)
2794
2795 # the result is now guaranteed to be inexact (the true
2796 # mathematical result is transcendental). There's no need to
2797 # raise Rounded and Inexact here---they'll always be raised as
2798 # a result of the call to _fix.
2799 p = context.prec
2800 adj = self.adjusted()
2801
2802 # we only need to do any computation for quite a small range
2803 # of adjusted exponents---for example, -29 <= adj <= 10 for
2804 # the default context. For smaller exponent the result is
2805 # indistinguishable from 1 at the given precision, while for
2806 # larger exponent the result either overflows or underflows.
2807 if self._sign == 0 and adj > len(str((context.Emax+1)*3)):
2808 # overflow
Facundo Batista72bc54f2007-11-23 17:59:00 +00002809 ans = _dec_from_triple(0, '1', context.Emax+1)
Facundo Batista353750c2007-09-13 18:13:15 +00002810 elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)):
2811 # underflow to 0
Facundo Batista72bc54f2007-11-23 17:59:00 +00002812 ans = _dec_from_triple(0, '1', context.Etiny()-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002813 elif self._sign == 0 and adj < -p:
2814 # p+1 digits; final round will raise correct flags
Facundo Batista72bc54f2007-11-23 17:59:00 +00002815 ans = _dec_from_triple(0, '1' + '0'*(p-1) + '1', -p)
Facundo Batista353750c2007-09-13 18:13:15 +00002816 elif self._sign == 1 and adj < -p-1:
2817 # p+1 digits; final round will raise correct flags
Facundo Batista72bc54f2007-11-23 17:59:00 +00002818 ans = _dec_from_triple(0, '9'*(p+1), -p-1)
Facundo Batista353750c2007-09-13 18:13:15 +00002819 # general case
2820 else:
2821 op = _WorkRep(self)
2822 c, e = op.int, op.exp
2823 if op.sign == 1:
2824 c = -c
2825
2826 # compute correctly rounded result: increase precision by
2827 # 3 digits at a time until we get an unambiguously
2828 # roundable result
2829 extra = 3
2830 while True:
2831 coeff, exp = _dexp(c, e, p+extra)
2832 if coeff % (5*10**(len(str(coeff))-p-1)):
2833 break
2834 extra += 3
2835
Facundo Batista72bc54f2007-11-23 17:59:00 +00002836 ans = _dec_from_triple(0, str(coeff), exp)
Facundo Batista353750c2007-09-13 18:13:15 +00002837
2838 # at this stage, ans should round correctly with *any*
2839 # rounding mode, not just with ROUND_HALF_EVEN
2840 context = context._shallow_copy()
2841 rounding = context._set_rounding(ROUND_HALF_EVEN)
2842 ans = ans._fix(context)
2843 context.rounding = rounding
2844
2845 return ans
2846
2847 def is_canonical(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002848 """Return True if self is canonical; otherwise return False.
2849
2850 Currently, the encoding of a Decimal instance is always
2851 canonical, so this method returns True for any Decimal.
2852 """
2853 return True
Facundo Batista353750c2007-09-13 18:13:15 +00002854
2855 def is_finite(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002856 """Return True if self is finite; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00002857
Facundo Batista1a191df2007-10-02 17:01:24 +00002858 A Decimal instance is considered finite if it is neither
2859 infinite nor a NaN.
Facundo Batista353750c2007-09-13 18:13:15 +00002860 """
Facundo Batista1a191df2007-10-02 17:01:24 +00002861 return not self._is_special
Facundo Batista353750c2007-09-13 18:13:15 +00002862
2863 def is_infinite(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002864 """Return True if self is infinite; otherwise return False."""
2865 return self._exp == 'F'
Facundo Batista353750c2007-09-13 18:13:15 +00002866
2867 def is_nan(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002868 """Return True if self is a qNaN or sNaN; otherwise return False."""
2869 return self._exp in ('n', 'N')
Facundo Batista353750c2007-09-13 18:13:15 +00002870
2871 def is_normal(self, context=None):
Facundo Batista1a191df2007-10-02 17:01:24 +00002872 """Return True if self is a normal number; otherwise return False."""
2873 if self._is_special or not self:
2874 return False
Facundo Batista353750c2007-09-13 18:13:15 +00002875 if context is None:
2876 context = getcontext()
Facundo Batista1a191df2007-10-02 17:01:24 +00002877 return context.Emin <= self.adjusted() <= context.Emax
Facundo Batista353750c2007-09-13 18:13:15 +00002878
2879 def is_qnan(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002880 """Return True if self is a quiet NaN; otherwise return False."""
2881 return self._exp == 'n'
Facundo Batista353750c2007-09-13 18:13:15 +00002882
2883 def is_signed(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002884 """Return True if self is negative; otherwise return False."""
2885 return self._sign == 1
Facundo Batista353750c2007-09-13 18:13:15 +00002886
2887 def is_snan(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002888 """Return True if self is a signaling NaN; otherwise return False."""
2889 return self._exp == 'N'
Facundo Batista353750c2007-09-13 18:13:15 +00002890
2891 def is_subnormal(self, context=None):
Facundo Batista1a191df2007-10-02 17:01:24 +00002892 """Return True if self is subnormal; otherwise return False."""
2893 if self._is_special or not self:
2894 return False
Facundo Batista353750c2007-09-13 18:13:15 +00002895 if context is None:
2896 context = getcontext()
Facundo Batista1a191df2007-10-02 17:01:24 +00002897 return self.adjusted() < context.Emin
Facundo Batista353750c2007-09-13 18:13:15 +00002898
2899 def is_zero(self):
Facundo Batista1a191df2007-10-02 17:01:24 +00002900 """Return True if self is a zero; otherwise return False."""
Facundo Batista72bc54f2007-11-23 17:59:00 +00002901 return not self._is_special and self._int == '0'
Facundo Batista353750c2007-09-13 18:13:15 +00002902
2903 def _ln_exp_bound(self):
2904 """Compute a lower bound for the adjusted exponent of self.ln().
2905 In other words, compute r such that self.ln() >= 10**r. Assumes
2906 that self is finite and positive and that self != 1.
2907 """
2908
2909 # for 0.1 <= x <= 10 we use the inequalities 1-1/x <= ln(x) <= x-1
2910 adj = self._exp + len(self._int) - 1
2911 if adj >= 1:
2912 # argument >= 10; we use 23/10 = 2.3 as a lower bound for ln(10)
2913 return len(str(adj*23//10)) - 1
2914 if adj <= -2:
2915 # argument <= 0.1
2916 return len(str((-1-adj)*23//10)) - 1
2917 op = _WorkRep(self)
2918 c, e = op.int, op.exp
2919 if adj == 0:
2920 # 1 < self < 10
2921 num = str(c-10**-e)
2922 den = str(c)
2923 return len(num) - len(den) - (num < den)
2924 # adj == -1, 0.1 <= self < 1
2925 return e + len(str(10**-e - c)) - 1
2926
2927
2928 def ln(self, context=None):
2929 """Returns the natural (base e) logarithm of self."""
2930
2931 if context is None:
2932 context = getcontext()
2933
2934 # ln(NaN) = NaN
2935 ans = self._check_nans(context=context)
2936 if ans:
2937 return ans
2938
2939 # ln(0.0) == -Infinity
2940 if not self:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002941 return _NegativeInfinity
Facundo Batista353750c2007-09-13 18:13:15 +00002942
2943 # ln(Infinity) = Infinity
2944 if self._isinfinity() == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002945 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00002946
2947 # ln(1.0) == 0.0
Mark Dickinsone4d46b22009-01-03 12:09:22 +00002948 if self == _One:
2949 return _Zero
Facundo Batista353750c2007-09-13 18:13:15 +00002950
2951 # ln(negative) raises InvalidOperation
2952 if self._sign == 1:
2953 return context._raise_error(InvalidOperation,
2954 'ln of a negative value')
2955
2956 # result is irrational, so necessarily inexact
2957 op = _WorkRep(self)
2958 c, e = op.int, op.exp
2959 p = context.prec
2960
2961 # correctly rounded result: repeatedly increase precision by 3
2962 # until we get an unambiguously roundable result
2963 places = p - self._ln_exp_bound() + 2 # at least p+3 places
2964 while True:
2965 coeff = _dlog(c, e, places)
2966 # assert len(str(abs(coeff)))-p >= 1
2967 if coeff % (5*10**(len(str(abs(coeff)))-p-1)):
2968 break
2969 places += 3
Facundo Batista72bc54f2007-11-23 17:59:00 +00002970 ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)
Facundo Batista353750c2007-09-13 18:13:15 +00002971
2972 context = context._shallow_copy()
2973 rounding = context._set_rounding(ROUND_HALF_EVEN)
2974 ans = ans._fix(context)
2975 context.rounding = rounding
2976 return ans
2977
2978 def _log10_exp_bound(self):
2979 """Compute a lower bound for the adjusted exponent of self.log10().
2980 In other words, find r such that self.log10() >= 10**r.
2981 Assumes that self is finite and positive and that self != 1.
2982 """
2983
2984 # For x >= 10 or x < 0.1 we only need a bound on the integer
2985 # part of log10(self), and this comes directly from the
2986 # exponent of x. For 0.1 <= x <= 10 we use the inequalities
2987 # 1-1/x <= log(x) <= x-1. If x > 1 we have |log10(x)| >
2988 # (1-1/x)/2.31 > 0. If x < 1 then |log10(x)| > (1-x)/2.31 > 0
2989
2990 adj = self._exp + len(self._int) - 1
2991 if adj >= 1:
2992 # self >= 10
2993 return len(str(adj))-1
2994 if adj <= -2:
2995 # self < 0.1
2996 return len(str(-1-adj))-1
2997 op = _WorkRep(self)
2998 c, e = op.int, op.exp
2999 if adj == 0:
3000 # 1 < self < 10
3001 num = str(c-10**-e)
3002 den = str(231*c)
3003 return len(num) - len(den) - (num < den) + 2
3004 # adj == -1, 0.1 <= self < 1
3005 num = str(10**-e-c)
3006 return len(num) + e - (num < "231") - 1
3007
3008 def log10(self, context=None):
3009 """Returns the base 10 logarithm of self."""
3010
3011 if context is None:
3012 context = getcontext()
3013
3014 # log10(NaN) = NaN
3015 ans = self._check_nans(context=context)
3016 if ans:
3017 return ans
3018
3019 # log10(0.0) == -Infinity
3020 if not self:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00003021 return _NegativeInfinity
Facundo Batista353750c2007-09-13 18:13:15 +00003022
3023 # log10(Infinity) = Infinity
3024 if self._isinfinity() == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00003025 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00003026
3027 # log10(negative or -Infinity) raises InvalidOperation
3028 if self._sign == 1:
3029 return context._raise_error(InvalidOperation,
3030 'log10 of a negative value')
3031
3032 # log10(10**n) = n
Facundo Batista72bc54f2007-11-23 17:59:00 +00003033 if self._int[0] == '1' and self._int[1:] == '0'*(len(self._int) - 1):
Facundo Batista353750c2007-09-13 18:13:15 +00003034 # answer may need rounding
3035 ans = Decimal(self._exp + len(self._int) - 1)
3036 else:
3037 # result is irrational, so necessarily inexact
3038 op = _WorkRep(self)
3039 c, e = op.int, op.exp
3040 p = context.prec
3041
3042 # correctly rounded result: repeatedly increase precision
3043 # until result is unambiguously roundable
3044 places = p-self._log10_exp_bound()+2
3045 while True:
3046 coeff = _dlog10(c, e, places)
3047 # assert len(str(abs(coeff)))-p >= 1
3048 if coeff % (5*10**(len(str(abs(coeff)))-p-1)):
3049 break
3050 places += 3
Facundo Batista72bc54f2007-11-23 17:59:00 +00003051 ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)
Facundo Batista353750c2007-09-13 18:13:15 +00003052
3053 context = context._shallow_copy()
3054 rounding = context._set_rounding(ROUND_HALF_EVEN)
3055 ans = ans._fix(context)
3056 context.rounding = rounding
3057 return ans
3058
3059 def logb(self, context=None):
3060 """ Returns the exponent of the magnitude of self's MSD.
3061
3062 The result is the integer which is the exponent of the magnitude
3063 of the most significant digit of self (as though it were truncated
3064 to a single digit while maintaining the value of that digit and
3065 without limiting the resulting exponent).
3066 """
3067 # logb(NaN) = NaN
3068 ans = self._check_nans(context=context)
3069 if ans:
3070 return ans
3071
3072 if context is None:
3073 context = getcontext()
3074
3075 # logb(+/-Inf) = +Inf
3076 if self._isinfinity():
Mark Dickinsone4d46b22009-01-03 12:09:22 +00003077 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00003078
3079 # logb(0) = -Inf, DivisionByZero
3080 if not self:
Facundo Batistacce8df22007-09-18 16:53:18 +00003081 return context._raise_error(DivisionByZero, 'logb(0)', 1)
Facundo Batista353750c2007-09-13 18:13:15 +00003082
3083 # otherwise, simply return the adjusted exponent of self, as a
3084 # Decimal. Note that no attempt is made to fit the result
3085 # into the current context.
Mark Dickinson5e672d02009-10-27 16:54:45 +00003086 ans = Decimal(self.adjusted())
3087 return ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003088
3089 def _islogical(self):
3090 """Return True if self is a logical operand.
3091
Andrew M. Kuchlingc8acc882008-01-16 00:32:03 +00003092 For being logical, it must be a finite number with a sign of 0,
Facundo Batista353750c2007-09-13 18:13:15 +00003093 an exponent of 0, and a coefficient whose digits must all be
3094 either 0 or 1.
3095 """
3096 if self._sign != 0 or self._exp != 0:
3097 return False
3098 for dig in self._int:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003099 if dig not in '01':
Facundo Batista353750c2007-09-13 18:13:15 +00003100 return False
3101 return True
3102
3103 def _fill_logical(self, context, opa, opb):
3104 dif = context.prec - len(opa)
3105 if dif > 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003106 opa = '0'*dif + opa
Facundo Batista353750c2007-09-13 18:13:15 +00003107 elif dif < 0:
3108 opa = opa[-context.prec:]
3109 dif = context.prec - len(opb)
3110 if dif > 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003111 opb = '0'*dif + opb
Facundo Batista353750c2007-09-13 18:13:15 +00003112 elif dif < 0:
3113 opb = opb[-context.prec:]
3114 return opa, opb
3115
3116 def logical_and(self, other, context=None):
3117 """Applies an 'and' operation between self and other's digits."""
3118 if context is None:
3119 context = getcontext()
3120 if not self._islogical() or not other._islogical():
3121 return context._raise_error(InvalidOperation)
3122
3123 # fill to context.prec
3124 (opa, opb) = self._fill_logical(context, self._int, other._int)
3125
3126 # make the operation, and clean starting zeroes
Facundo Batista72bc54f2007-11-23 17:59:00 +00003127 result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)])
3128 return _dec_from_triple(0, result.lstrip('0') or '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00003129
3130 def logical_invert(self, context=None):
3131 """Invert all its digits."""
3132 if context is None:
3133 context = getcontext()
Facundo Batista72bc54f2007-11-23 17:59:00 +00003134 return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0),
3135 context)
Facundo Batista353750c2007-09-13 18:13:15 +00003136
3137 def logical_or(self, other, context=None):
3138 """Applies an 'or' operation between self and other's digits."""
3139 if context is None:
3140 context = getcontext()
3141 if not self._islogical() or not other._islogical():
3142 return context._raise_error(InvalidOperation)
3143
3144 # fill to context.prec
3145 (opa, opb) = self._fill_logical(context, self._int, other._int)
3146
3147 # make the operation, and clean starting zeroes
Mark Dickinsonc95c6f12009-01-04 21:30:17 +00003148 result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)])
Facundo Batista72bc54f2007-11-23 17:59:00 +00003149 return _dec_from_triple(0, result.lstrip('0') or '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00003150
3151 def logical_xor(self, other, context=None):
3152 """Applies an 'xor' operation between self and other's digits."""
3153 if context is None:
3154 context = getcontext()
3155 if not self._islogical() or not other._islogical():
3156 return context._raise_error(InvalidOperation)
3157
3158 # fill to context.prec
3159 (opa, opb) = self._fill_logical(context, self._int, other._int)
3160
3161 # make the operation, and clean starting zeroes
Mark Dickinsonc95c6f12009-01-04 21:30:17 +00003162 result = "".join([str(int(a)^int(b)) for a,b in zip(opa,opb)])
Facundo Batista72bc54f2007-11-23 17:59:00 +00003163 return _dec_from_triple(0, result.lstrip('0') or '0', 0)
Facundo Batista353750c2007-09-13 18:13:15 +00003164
3165 def max_mag(self, other, context=None):
3166 """Compares the values numerically with their sign ignored."""
3167 other = _convert_other(other, raiseit=True)
3168
Facundo Batista6c398da2007-09-17 17:30:13 +00003169 if context is None:
3170 context = getcontext()
3171
Facundo Batista353750c2007-09-13 18:13:15 +00003172 if self._is_special or other._is_special:
3173 # If one operand is a quiet NaN and the other is number, then the
3174 # number is always returned
3175 sn = self._isnan()
3176 on = other._isnan()
3177 if sn or on:
Mark Dickinson7c62f892008-12-11 09:17:40 +00003178 if on == 1 and sn == 0:
3179 return self._fix(context)
3180 if sn == 1 and on == 0:
3181 return other._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003182 return self._check_nans(other, context)
3183
Mark Dickinson2fc92632008-02-06 22:10:50 +00003184 c = self.copy_abs()._cmp(other.copy_abs())
Facundo Batista353750c2007-09-13 18:13:15 +00003185 if c == 0:
3186 c = self.compare_total(other)
3187
3188 if c == -1:
3189 ans = other
3190 else:
3191 ans = self
3192
Facundo Batistae64acfa2007-12-17 14:18:42 +00003193 return ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003194
3195 def min_mag(self, other, context=None):
3196 """Compares the values numerically with their sign ignored."""
3197 other = _convert_other(other, raiseit=True)
3198
Facundo Batista6c398da2007-09-17 17:30:13 +00003199 if context is None:
3200 context = getcontext()
3201
Facundo Batista353750c2007-09-13 18:13:15 +00003202 if self._is_special or other._is_special:
3203 # If one operand is a quiet NaN and the other is number, then the
3204 # number is always returned
3205 sn = self._isnan()
3206 on = other._isnan()
3207 if sn or on:
Mark Dickinson7c62f892008-12-11 09:17:40 +00003208 if on == 1 and sn == 0:
3209 return self._fix(context)
3210 if sn == 1 and on == 0:
3211 return other._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003212 return self._check_nans(other, context)
3213
Mark Dickinson2fc92632008-02-06 22:10:50 +00003214 c = self.copy_abs()._cmp(other.copy_abs())
Facundo Batista353750c2007-09-13 18:13:15 +00003215 if c == 0:
3216 c = self.compare_total(other)
3217
3218 if c == -1:
3219 ans = self
3220 else:
3221 ans = other
3222
Facundo Batistae64acfa2007-12-17 14:18:42 +00003223 return ans._fix(context)
Facundo Batista353750c2007-09-13 18:13:15 +00003224
3225 def next_minus(self, context=None):
3226 """Returns the largest representable number smaller than itself."""
3227 if context is None:
3228 context = getcontext()
3229
3230 ans = self._check_nans(context=context)
3231 if ans:
3232 return ans
3233
3234 if self._isinfinity() == -1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00003235 return _NegativeInfinity
Facundo Batista353750c2007-09-13 18:13:15 +00003236 if self._isinfinity() == 1:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003237 return _dec_from_triple(0, '9'*context.prec, context.Etop())
Facundo Batista353750c2007-09-13 18:13:15 +00003238
3239 context = context.copy()
3240 context._set_rounding(ROUND_FLOOR)
3241 context._ignore_all_flags()
3242 new_self = self._fix(context)
3243 if new_self != self:
3244 return new_self
Facundo Batista72bc54f2007-11-23 17:59:00 +00003245 return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),
3246 context)
Facundo Batista353750c2007-09-13 18:13:15 +00003247
3248 def next_plus(self, context=None):
3249 """Returns the smallest representable number larger than itself."""
3250 if context is None:
3251 context = getcontext()
3252
3253 ans = self._check_nans(context=context)
3254 if ans:
3255 return ans
3256
3257 if self._isinfinity() == 1:
Mark Dickinsone4d46b22009-01-03 12:09:22 +00003258 return _Infinity
Facundo Batista353750c2007-09-13 18:13:15 +00003259 if self._isinfinity() == -1:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003260 return _dec_from_triple(1, '9'*context.prec, context.Etop())
Facundo Batista353750c2007-09-13 18:13:15 +00003261
3262 context = context.copy()
3263 context._set_rounding(ROUND_CEILING)
3264 context._ignore_all_flags()
3265 new_self = self._fix(context)
3266 if new_self != self:
3267 return new_self
Facundo Batista72bc54f2007-11-23 17:59:00 +00003268 return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),
3269 context)
Facundo Batista353750c2007-09-13 18:13:15 +00003270
3271 def next_toward(self, other, context=None):
3272 """Returns the number closest to self, in the direction towards other.
3273
3274 The result is the closest representable number to self
3275 (excluding self) that is in the direction towards other,
3276 unless both have the same value. If the two operands are
3277 numerically equal, then the result is a copy of self with the
3278 sign set to be the same as the sign of other.
3279 """
3280 other = _convert_other(other, raiseit=True)
3281
3282 if context is None:
3283 context = getcontext()
3284
3285 ans = self._check_nans(other, context)
3286 if ans:
3287 return ans
3288
Mark Dickinson2fc92632008-02-06 22:10:50 +00003289 comparison = self._cmp(other)
Facundo Batista353750c2007-09-13 18:13:15 +00003290 if comparison == 0:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003291 return self.copy_sign(other)
Facundo Batista353750c2007-09-13 18:13:15 +00003292
3293 if comparison == -1:
3294 ans = self.next_plus(context)
3295 else: # comparison == 1
3296 ans = self.next_minus(context)
3297
3298 # decide which flags to raise using value of ans
3299 if ans._isinfinity():
3300 context._raise_error(Overflow,
3301 'Infinite result from next_toward',
3302 ans._sign)
3303 context._raise_error(Rounded)
3304 context._raise_error(Inexact)
3305 elif ans.adjusted() < context.Emin:
3306 context._raise_error(Underflow)
3307 context._raise_error(Subnormal)
3308 context._raise_error(Rounded)
3309 context._raise_error(Inexact)
3310 # if precision == 1 then we don't raise Clamped for a
3311 # result 0E-Etiny.
3312 if not ans:
3313 context._raise_error(Clamped)
3314
3315 return ans
3316
3317 def number_class(self, context=None):
3318 """Returns an indication of the class of self.
3319
3320 The class is one of the following strings:
Facundo Batista0f5e7bf2007-12-19 12:53:01 +00003321 sNaN
3322 NaN
Facundo Batista353750c2007-09-13 18:13:15 +00003323 -Infinity
3324 -Normal
3325 -Subnormal
3326 -Zero
3327 +Zero
3328 +Subnormal
3329 +Normal
3330 +Infinity
3331 """
3332 if self.is_snan():
3333 return "sNaN"
3334 if self.is_qnan():
3335 return "NaN"
3336 inf = self._isinfinity()
3337 if inf == 1:
3338 return "+Infinity"
3339 if inf == -1:
3340 return "-Infinity"
3341 if self.is_zero():
3342 if self._sign:
3343 return "-Zero"
3344 else:
3345 return "+Zero"
3346 if context is None:
3347 context = getcontext()
3348 if self.is_subnormal(context=context):
3349 if self._sign:
3350 return "-Subnormal"
3351 else:
3352 return "+Subnormal"
3353 # just a normal, regular, boring number, :)
3354 if self._sign:
3355 return "-Normal"
3356 else:
3357 return "+Normal"
3358
3359 def radix(self):
3360 """Just returns 10, as this is Decimal, :)"""
3361 return Decimal(10)
3362
3363 def rotate(self, other, context=None):
3364 """Returns a rotated copy of self, value-of-other times."""
3365 if context is None:
3366 context = getcontext()
3367
3368 ans = self._check_nans(other, context)
3369 if ans:
3370 return ans
3371
3372 if other._exp != 0:
3373 return context._raise_error(InvalidOperation)
3374 if not (-context.prec <= int(other) <= context.prec):
3375 return context._raise_error(InvalidOperation)
3376
3377 if self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00003378 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003379
3380 # get values, pad if necessary
3381 torot = int(other)
3382 rotdig = self._int
3383 topad = context.prec - len(rotdig)
3384 if topad:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003385 rotdig = '0'*topad + rotdig
Facundo Batista353750c2007-09-13 18:13:15 +00003386
3387 # let's rotate!
3388 rotated = rotdig[torot:] + rotdig[:torot]
Facundo Batista72bc54f2007-11-23 17:59:00 +00003389 return _dec_from_triple(self._sign,
3390 rotated.lstrip('0') or '0', self._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00003391
3392 def scaleb (self, other, context=None):
3393 """Returns self operand after adding the second value to its exp."""
3394 if context is None:
3395 context = getcontext()
3396
3397 ans = self._check_nans(other, context)
3398 if ans:
3399 return ans
3400
3401 if other._exp != 0:
3402 return context._raise_error(InvalidOperation)
3403 liminf = -2 * (context.Emax + context.prec)
3404 limsup = 2 * (context.Emax + context.prec)
3405 if not (liminf <= int(other) <= limsup):
3406 return context._raise_error(InvalidOperation)
3407
3408 if self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00003409 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003410
Facundo Batista72bc54f2007-11-23 17:59:00 +00003411 d = _dec_from_triple(self._sign, self._int, self._exp + int(other))
Facundo Batista353750c2007-09-13 18:13:15 +00003412 d = d._fix(context)
3413 return d
3414
3415 def shift(self, other, context=None):
3416 """Returns a shifted copy of self, value-of-other times."""
3417 if context is None:
3418 context = getcontext()
3419
3420 ans = self._check_nans(other, context)
3421 if ans:
3422 return ans
3423
3424 if other._exp != 0:
3425 return context._raise_error(InvalidOperation)
3426 if not (-context.prec <= int(other) <= context.prec):
3427 return context._raise_error(InvalidOperation)
3428
3429 if self._isinfinity():
Facundo Batista6c398da2007-09-17 17:30:13 +00003430 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003431
3432 # get values, pad if necessary
3433 torot = int(other)
3434 if not torot:
Facundo Batista6c398da2007-09-17 17:30:13 +00003435 return Decimal(self)
Facundo Batista353750c2007-09-13 18:13:15 +00003436 rotdig = self._int
3437 topad = context.prec - len(rotdig)
3438 if topad:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003439 rotdig = '0'*topad + rotdig
Facundo Batista353750c2007-09-13 18:13:15 +00003440
3441 # let's shift!
3442 if torot < 0:
3443 rotated = rotdig[:torot]
3444 else:
Facundo Batista72bc54f2007-11-23 17:59:00 +00003445 rotated = rotdig + '0'*torot
Facundo Batista353750c2007-09-13 18:13:15 +00003446 rotated = rotated[-context.prec:]
3447
Facundo Batista72bc54f2007-11-23 17:59:00 +00003448 return _dec_from_triple(self._sign,
3449 rotated.lstrip('0') or '0', self._exp)
Facundo Batista353750c2007-09-13 18:13:15 +00003450
Facundo Batista59c58842007-04-10 12:58:45 +00003451 # Support for pickling, copy, and deepcopy
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003452 def __reduce__(self):
3453 return (self.__class__, (str(self),))
3454
3455 def __copy__(self):
3456 if type(self) == Decimal:
Martin v. Löwiscfe31282006-07-19 17:18:32 +00003457 return self # I'm immutable; therefore I am my own clone
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003458 return self.__class__(str(self))
3459
3460 def __deepcopy__(self, memo):
3461 if type(self) == Decimal:
Martin v. Löwiscfe31282006-07-19 17:18:32 +00003462 return self # My components are also immutable
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003463 return self.__class__(str(self))
3464
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003465 # PEP 3101 support. See also _parse_format_specifier and _format_align
3466 def __format__(self, specifier, context=None):
Mark Dickinsonf4da7772008-02-29 03:29:17 +00003467 """Format a Decimal instance according to the given specifier.
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00003468
3469 The specifier should be a standard format specifier, with the
3470 form described in PEP 3101. Formatting types 'e', 'E', 'f',
3471 'F', 'g', 'G', and '%' are supported. If the formatting type
3472 is omitted it defaults to 'g' or 'G', depending on the value
3473 of context.capitals.
3474
3475 At this time the 'n' format specifier type (which is supposed
3476 to use the current locale) is not supported.
3477 """
3478
3479 # Note: PEP 3101 says that if the type is not present then
3480 # there should be at least one digit after the decimal point.
3481 # We take the liberty of ignoring this requirement for
3482 # Decimal---it's presumably there to make sure that
3483 # format(float, '') behaves similarly to str(float).
3484 if context is None:
3485 context = getcontext()
3486
3487 spec = _parse_format_specifier(specifier)
3488
3489 # special values don't care about the type or precision...
3490 if self._is_special:
3491 return _format_align(str(self), spec)
3492
3493 # a type of None defaults to 'g' or 'G', depending on context
3494 # if type is '%', adjust exponent of self accordingly
3495 if spec['type'] is None:
3496 spec['type'] = ['g', 'G'][context.capitals]
3497 elif spec['type'] == '%':
3498 self = _dec_from_triple(self._sign, self._int, self._exp+2)
3499
3500 # round if necessary, taking rounding mode from the context
3501 rounding = context.rounding
3502 precision = spec['precision']
3503 if precision is not None:
3504 if spec['type'] in 'eE':
3505 self = self._round(precision+1, rounding)
3506 elif spec['type'] in 'gG':
3507 if len(self._int) > precision:
3508 self = self._round(precision, rounding)
3509 elif spec['type'] in 'fF%':
3510 self = self._rescale(-precision, rounding)
3511 # special case: zeros with a positive exponent can't be
3512 # represented in fixed point; rescale them to 0e0.
3513 elif not self and self._exp > 0 and spec['type'] in 'fF%':
3514 self = self._rescale(0, rounding)
3515
3516 # figure out placement of the decimal point
3517 leftdigits = self._exp + len(self._int)
3518 if spec['type'] in 'fF%':
3519 dotplace = leftdigits
3520 elif spec['type'] in 'eE':
3521 if not self and precision is not None:
3522 dotplace = 1 - precision
3523 else:
3524 dotplace = 1
3525 elif spec['type'] in 'gG':
3526 if self._exp <= 0 and leftdigits > -6:
3527 dotplace = leftdigits
3528 else:
3529 dotplace = 1
3530
3531 # figure out main part of numeric string...
3532 if dotplace <= 0:
3533 num = '0.' + '0'*(-dotplace) + self._int
3534 elif dotplace >= len(self._int):
3535 # make sure we're not padding a '0' with extra zeros on the right
3536 assert dotplace==len(self._int) or self._int != '0'
3537 num = self._int + '0'*(dotplace-len(self._int))
3538 else:
3539 num = self._int[:dotplace] + '.' + self._int[dotplace:]
3540
3541 # ...then the trailing exponent, or trailing '%'
3542 if leftdigits != dotplace or spec['type'] in 'eE':
3543 echar = {'E': 'E', 'e': 'e', 'G': 'E', 'g': 'e'}[spec['type']]
3544 num = num + "{0}{1:+}".format(echar, leftdigits-dotplace)
3545 elif spec['type'] == '%':
3546 num = num + '%'
3547
3548 # add sign
3549 if self._sign == 1:
3550 num = '-' + num
3551 return _format_align(num, spec)
3552
3553
Facundo Batista72bc54f2007-11-23 17:59:00 +00003554def _dec_from_triple(sign, coefficient, exponent, special=False):
3555 """Create a decimal instance directly, without any validation,
3556 normalization (e.g. removal of leading zeros) or argument
3557 conversion.
3558
3559 This function is for *internal use only*.
3560 """
3561
3562 self = object.__new__(Decimal)
3563 self._sign = sign
3564 self._int = coefficient
3565 self._exp = exponent
3566 self._is_special = special
3567
3568 return self
3569
Raymond Hettinger45fd4762009-02-03 03:42:07 +00003570# Register Decimal as a kind of Number (an abstract base class).
3571# However, do not register it as Real (because Decimals are not
3572# interoperable with floats).
3573_numbers.Number.register(Decimal)
3574
3575
Facundo Batista59c58842007-04-10 12:58:45 +00003576##### Context class #######################################################
Raymond Hettingerd9c0a7a2004-07-03 10:02:28 +00003577
Martin v. Löwiscfe31282006-07-19 17:18:32 +00003578
3579# get rounding method function:
Facundo Batista59c58842007-04-10 12:58:45 +00003580rounding_functions = [name for name in Decimal.__dict__.keys()
3581 if name.startswith('_round_')]
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003582for name in rounding_functions:
Facundo Batista59c58842007-04-10 12:58:45 +00003583 # name is like _round_half_even, goes to the global ROUND_HALF_EVEN value.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003584 globalname = name[1:].upper()
3585 val = globals()[globalname]
3586 Decimal._pick_rounding_function[val] = name
3587
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003588del name, val, globalname, rounding_functions
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003589
Nick Coghlanced12182006-09-02 03:54:17 +00003590class _ContextManager(object):
Nick Coghlan8b6999b2006-08-31 12:00:43 +00003591 """Context manager class to support localcontext().
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003592
Nick Coghlanced12182006-09-02 03:54:17 +00003593 Sets a copy of the supplied context in __enter__() and restores
Nick Coghlan8b6999b2006-08-31 12:00:43 +00003594 the previous decimal context in __exit__()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003595 """
3596 def __init__(self, new_context):
Nick Coghlanced12182006-09-02 03:54:17 +00003597 self.new_context = new_context.copy()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003598 def __enter__(self):
3599 self.saved_context = getcontext()
3600 setcontext(self.new_context)
3601 return self.new_context
3602 def __exit__(self, t, v, tb):
3603 setcontext(self.saved_context)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003604
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003605class Context(object):
3606 """Contains the context for a Decimal instance.
3607
3608 Contains:
3609 prec - precision (for use in rounding, division, square roots..)
Facundo Batista59c58842007-04-10 12:58:45 +00003610 rounding - rounding type (how you round)
Raymond Hettingerbf440692004-07-10 14:14:37 +00003611 traps - If traps[exception] = 1, then the exception is
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003612 raised when it is caused. Otherwise, a value is
3613 substituted in.
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003614 flags - When an exception is caused, flags[exception] is set.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003615 (Whether or not the trap_enabler is set)
3616 Should be reset by user of Decimal instance.
Raymond Hettinger0ea241e2004-07-04 13:53:24 +00003617 Emin - Minimum exponent
3618 Emax - Maximum exponent
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003619 capitals - If 1, 1*10^1 is printed as 1E+1.
3620 If 0, printed as 1e1
Raymond Hettingere0f15812004-07-05 05:36:39 +00003621 _clamp - If 1, change exponents if too high (Default 0)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003622 """
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003623
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003624 def __init__(self, prec=None, rounding=None,
Raymond Hettingerabf8a562004-10-12 09:12:16 +00003625 traps=None, flags=None,
Raymond Hettinger0ea241e2004-07-04 13:53:24 +00003626 Emin=None, Emax=None,
Raymond Hettingere0f15812004-07-05 05:36:39 +00003627 capitals=None, _clamp=0,
Raymond Hettingerabf8a562004-10-12 09:12:16 +00003628 _ignored_flags=None):
3629 if flags is None:
3630 flags = []
3631 if _ignored_flags is None:
3632 _ignored_flags = []
Raymond Hettingerbf440692004-07-10 14:14:37 +00003633 if not isinstance(flags, dict):
Mark Dickinson71f3b852008-05-04 02:25:46 +00003634 flags = dict([(s, int(s in flags)) for s in _signals])
Raymond Hettingerb91af522004-07-14 16:35:30 +00003635 del s
Raymond Hettingerbf440692004-07-10 14:14:37 +00003636 if traps is not None and not isinstance(traps, dict):
Mark Dickinson71f3b852008-05-04 02:25:46 +00003637 traps = dict([(s, int(s in traps)) for s in _signals])
Raymond Hettingerb91af522004-07-14 16:35:30 +00003638 del s
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003639 for name, val in locals().items():
3640 if val is None:
Raymond Hettingereb260842005-06-07 18:52:34 +00003641 setattr(self, name, _copy.copy(getattr(DefaultContext, name)))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003642 else:
3643 setattr(self, name, val)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003644 del self.self
3645
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003646 def __repr__(self):
Raymond Hettingerbf440692004-07-10 14:14:37 +00003647 """Show the current context."""
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003648 s = []
Facundo Batista59c58842007-04-10 12:58:45 +00003649 s.append('Context(prec=%(prec)d, rounding=%(rounding)s, '
3650 'Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d'
3651 % vars(self))
3652 names = [f.__name__ for f, v in self.flags.items() if v]
3653 s.append('flags=[' + ', '.join(names) + ']')
3654 names = [t.__name__ for t, v in self.traps.items() if v]
3655 s.append('traps=[' + ', '.join(names) + ']')
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003656 return ', '.join(s) + ')'
3657
Raymond Hettingerd9c0a7a2004-07-03 10:02:28 +00003658 def clear_flags(self):
3659 """Reset all flags to zero"""
3660 for flag in self.flags:
Raymond Hettingerb1b605e2004-07-04 01:55:39 +00003661 self.flags[flag] = 0
Raymond Hettingerd9c0a7a2004-07-03 10:02:28 +00003662
Raymond Hettinger9fce44b2004-08-08 04:03:24 +00003663 def _shallow_copy(self):
3664 """Returns a shallow copy from self."""
Facundo Batistae64acfa2007-12-17 14:18:42 +00003665 nc = Context(self.prec, self.rounding, self.traps,
3666 self.flags, self.Emin, self.Emax,
3667 self.capitals, self._clamp, self._ignored_flags)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003668 return nc
Raymond Hettinger9fce44b2004-08-08 04:03:24 +00003669
3670 def copy(self):
3671 """Returns a deep copy from self."""
Facundo Batista59c58842007-04-10 12:58:45 +00003672 nc = Context(self.prec, self.rounding, self.traps.copy(),
Facundo Batistae64acfa2007-12-17 14:18:42 +00003673 self.flags.copy(), self.Emin, self.Emax,
3674 self.capitals, self._clamp, self._ignored_flags)
Raymond Hettinger9fce44b2004-08-08 04:03:24 +00003675 return nc
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003676 __copy__ = copy
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003677
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003678 def _raise_error(self, condition, explanation = None, *args):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003679 """Handles an error
3680
3681 If the flag is in _ignored_flags, returns the default response.
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003682 Otherwise, it sets the flag, then, if the corresponding
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003683 trap_enabler is set, it reaises the exception. Otherwise, it returns
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003684 the default value after setting the flag.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003685 """
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003686 error = _condition_map.get(condition, condition)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003687 if error in self._ignored_flags:
Facundo Batista59c58842007-04-10 12:58:45 +00003688 # Don't touch the flag
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003689 return error().handle(self, *args)
3690
Mark Dickinson1840c1a2008-05-03 18:23:14 +00003691 self.flags[error] = 1
Raymond Hettingerbf440692004-07-10 14:14:37 +00003692 if not self.traps[error]:
Facundo Batista59c58842007-04-10 12:58:45 +00003693 # The errors define how to handle themselves.
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003694 return condition().handle(self, *args)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003695
3696 # Errors should only be risked on copies of the context
Facundo Batista59c58842007-04-10 12:58:45 +00003697 # self._ignored_flags = []
Mark Dickinson8aca9d02008-05-04 02:05:06 +00003698 raise error(explanation)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003699
3700 def _ignore_all_flags(self):
3701 """Ignore all flags, if they are raised"""
Raymond Hettingerfed52962004-07-14 15:41:57 +00003702 return self._ignore_flags(*_signals)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003703
3704 def _ignore_flags(self, *flags):
3705 """Ignore the flags, if they are raised"""
3706 # Do not mutate-- This way, copies of a context leave the original
3707 # alone.
3708 self._ignored_flags = (self._ignored_flags + list(flags))
3709 return list(flags)
3710
3711 def _regard_flags(self, *flags):
3712 """Stop ignoring the flags, if they are raised"""
3713 if flags and isinstance(flags[0], (tuple,list)):
3714 flags = flags[0]
3715 for flag in flags:
3716 self._ignored_flags.remove(flag)
3717
Nick Coghlan53663a62008-07-15 14:27:37 +00003718 # We inherit object.__hash__, so we must deny this explicitly
3719 __hash__ = None
Raymond Hettinger5aa478b2004-07-09 10:02:53 +00003720
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003721 def Etiny(self):
3722 """Returns Etiny (= Emin - prec + 1)"""
3723 return int(self.Emin - self.prec + 1)
3724
3725 def Etop(self):
Raymond Hettingere0f15812004-07-05 05:36:39 +00003726 """Returns maximum exponent (= Emax - prec + 1)"""
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003727 return int(self.Emax - self.prec + 1)
3728
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003729 def _set_rounding(self, type):
3730 """Sets the rounding type.
3731
3732 Sets the rounding type, and returns the current (previous)
3733 rounding type. Often used like:
3734
3735 context = context.copy()
3736 # so you don't change the calling context
3737 # if an error occurs in the middle.
3738 rounding = context._set_rounding(ROUND_UP)
3739 val = self.__sub__(other, context=context)
3740 context._set_rounding(rounding)
3741
3742 This will make it round up for that operation.
3743 """
3744 rounding = self.rounding
3745 self.rounding= type
3746 return rounding
3747
Raymond Hettingerfed52962004-07-14 15:41:57 +00003748 def create_decimal(self, num='0'):
Mark Dickinson59bc20b2008-01-12 01:56:00 +00003749 """Creates a new Decimal instance but using self as context.
3750
3751 This method implements the to-number operation of the
3752 IBM Decimal specification."""
3753
3754 if isinstance(num, basestring) and num != num.strip():
3755 return self._raise_error(ConversionSyntax,
3756 "no trailing or leading whitespace is "
3757 "permitted.")
3758
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003759 d = Decimal(num, context=self)
Facundo Batista353750c2007-09-13 18:13:15 +00003760 if d._isnan() and len(d._int) > self.prec - self._clamp:
3761 return self._raise_error(ConversionSyntax,
3762 "diagnostic info too long in NaN")
Raymond Hettingerdab988d2004-10-09 07:10:44 +00003763 return d._fix(self)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003764
Facundo Batista59c58842007-04-10 12:58:45 +00003765 # Methods
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003766 def abs(self, a):
3767 """Returns the absolute value of the operand.
3768
3769 If the operand is negative, the result is the same as using the minus
Facundo Batista59c58842007-04-10 12:58:45 +00003770 operation on the operand. Otherwise, the result is the same as using
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003771 the plus operation on the operand.
3772
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003773 >>> ExtendedContext.abs(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003774 Decimal('2.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003775 >>> ExtendedContext.abs(Decimal('-100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003776 Decimal('100')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003777 >>> ExtendedContext.abs(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003778 Decimal('101.5')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003779 >>> ExtendedContext.abs(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003780 Decimal('101.5')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003781 """
3782 return a.__abs__(context=self)
3783
3784 def add(self, a, b):
3785 """Return the sum of the two operands.
3786
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003787 >>> ExtendedContext.add(Decimal('12'), Decimal('7.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003788 Decimal('19.00')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003789 >>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003790 Decimal('1.02E+4')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003791 """
3792 return a.__add__(b, context=self)
3793
3794 def _apply(self, a):
Raymond Hettingerdab988d2004-10-09 07:10:44 +00003795 return str(a._fix(self))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003796
Facundo Batista353750c2007-09-13 18:13:15 +00003797 def canonical(self, a):
3798 """Returns the same Decimal object.
3799
3800 As we do not have different encodings for the same number, the
3801 received object already is in its canonical form.
3802
3803 >>> ExtendedContext.canonical(Decimal('2.50'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003804 Decimal('2.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003805 """
3806 return a.canonical(context=self)
3807
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003808 def compare(self, a, b):
3809 """Compares values numerically.
3810
3811 If the signs of the operands differ, a value representing each operand
3812 ('-1' if the operand is less than zero, '0' if the operand is zero or
3813 negative zero, or '1' if the operand is greater than zero) is used in
3814 place of that operand for the comparison instead of the actual
3815 operand.
3816
3817 The comparison is then effected by subtracting the second operand from
3818 the first and then returning a value according to the result of the
3819 subtraction: '-1' if the result is less than zero, '0' if the result is
3820 zero or negative zero, or '1' if the result is greater than zero.
3821
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003822 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003823 Decimal('-1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003824 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003825 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003826 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003827 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003828 >>> ExtendedContext.compare(Decimal('3'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003829 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003830 >>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003831 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003832 >>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003833 Decimal('-1')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003834 """
3835 return a.compare(b, context=self)
3836
Facundo Batista353750c2007-09-13 18:13:15 +00003837 def compare_signal(self, a, b):
3838 """Compares the values of the two operands numerically.
3839
3840 It's pretty much like compare(), but all NaNs signal, with signaling
3841 NaNs taking precedence over quiet NaNs.
3842
3843 >>> c = ExtendedContext
3844 >>> c.compare_signal(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003845 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003846 >>> c.compare_signal(Decimal('2.1'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003847 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00003848 >>> c.flags[InvalidOperation] = 0
3849 >>> print c.flags[InvalidOperation]
3850 0
3851 >>> c.compare_signal(Decimal('NaN'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003852 Decimal('NaN')
Facundo Batista353750c2007-09-13 18:13:15 +00003853 >>> print c.flags[InvalidOperation]
3854 1
3855 >>> c.flags[InvalidOperation] = 0
3856 >>> print c.flags[InvalidOperation]
3857 0
3858 >>> c.compare_signal(Decimal('sNaN'), Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003859 Decimal('NaN')
Facundo Batista353750c2007-09-13 18:13:15 +00003860 >>> print c.flags[InvalidOperation]
3861 1
3862 """
3863 return a.compare_signal(b, context=self)
3864
3865 def compare_total(self, a, b):
3866 """Compares two operands using their abstract representation.
3867
3868 This is not like the standard compare, which use their numerical
3869 value. Note that a total ordering is defined for all possible abstract
3870 representations.
3871
3872 >>> ExtendedContext.compare_total(Decimal('12.73'), Decimal('127.9'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003873 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003874 >>> ExtendedContext.compare_total(Decimal('-127'), Decimal('12'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003875 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003876 >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003877 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003878 >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.30'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003879 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00003880 >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('12.300'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003881 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00003882 >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('NaN'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003883 Decimal('-1')
Facundo Batista353750c2007-09-13 18:13:15 +00003884 """
3885 return a.compare_total(b)
3886
3887 def compare_total_mag(self, a, b):
3888 """Compares two operands using their abstract representation ignoring sign.
3889
3890 Like compare_total, but with operand's sign ignored and assumed to be 0.
3891 """
3892 return a.compare_total_mag(b)
3893
3894 def copy_abs(self, a):
3895 """Returns a copy of the operand with the sign set to 0.
3896
3897 >>> ExtendedContext.copy_abs(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003898 Decimal('2.1')
Facundo Batista353750c2007-09-13 18:13:15 +00003899 >>> ExtendedContext.copy_abs(Decimal('-100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003900 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00003901 """
3902 return a.copy_abs()
3903
3904 def copy_decimal(self, a):
3905 """Returns a copy of the decimal objet.
3906
3907 >>> ExtendedContext.copy_decimal(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003908 Decimal('2.1')
Facundo Batista353750c2007-09-13 18:13:15 +00003909 >>> ExtendedContext.copy_decimal(Decimal('-1.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003910 Decimal('-1.00')
Facundo Batista353750c2007-09-13 18:13:15 +00003911 """
Facundo Batista6c398da2007-09-17 17:30:13 +00003912 return Decimal(a)
Facundo Batista353750c2007-09-13 18:13:15 +00003913
3914 def copy_negate(self, a):
3915 """Returns a copy of the operand with the sign inverted.
3916
3917 >>> ExtendedContext.copy_negate(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003918 Decimal('-101.5')
Facundo Batista353750c2007-09-13 18:13:15 +00003919 >>> ExtendedContext.copy_negate(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003920 Decimal('101.5')
Facundo Batista353750c2007-09-13 18:13:15 +00003921 """
3922 return a.copy_negate()
3923
3924 def copy_sign(self, a, b):
3925 """Copies the second operand's sign to the first one.
3926
3927 In detail, it returns a copy of the first operand with the sign
3928 equal to the sign of the second operand.
3929
3930 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003931 Decimal('1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003932 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003933 Decimal('1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003934 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003935 Decimal('-1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003936 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003937 Decimal('-1.50')
Facundo Batista353750c2007-09-13 18:13:15 +00003938 """
3939 return a.copy_sign(b)
3940
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003941 def divide(self, a, b):
3942 """Decimal division in a specified context.
3943
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003944 >>> ExtendedContext.divide(Decimal('1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003945 Decimal('0.333333333')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003946 >>> ExtendedContext.divide(Decimal('2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003947 Decimal('0.666666667')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003948 >>> ExtendedContext.divide(Decimal('5'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003949 Decimal('2.5')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003950 >>> ExtendedContext.divide(Decimal('1'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003951 Decimal('0.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003952 >>> ExtendedContext.divide(Decimal('12'), Decimal('12'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003953 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003954 >>> ExtendedContext.divide(Decimal('8.00'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003955 Decimal('4.00')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003956 >>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003957 Decimal('1.20')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003958 >>> ExtendedContext.divide(Decimal('1000'), Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003959 Decimal('10')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003960 >>> ExtendedContext.divide(Decimal('1000'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003961 Decimal('1000')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003962 >>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003963 Decimal('1.20E+6')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003964 """
3965 return a.__div__(b, context=self)
3966
3967 def divide_int(self, a, b):
3968 """Divides two numbers and returns the integer part of the result.
3969
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003970 >>> ExtendedContext.divide_int(Decimal('2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003971 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003972 >>> ExtendedContext.divide_int(Decimal('10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003973 Decimal('3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00003974 >>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003975 Decimal('3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00003976 """
3977 return a.__floordiv__(b, context=self)
3978
3979 def divmod(self, a, b):
3980 return a.__divmod__(b, context=self)
3981
Facundo Batista353750c2007-09-13 18:13:15 +00003982 def exp(self, a):
3983 """Returns e ** a.
3984
3985 >>> c = ExtendedContext.copy()
3986 >>> c.Emin = -999
3987 >>> c.Emax = 999
3988 >>> c.exp(Decimal('-Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003989 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00003990 >>> c.exp(Decimal('-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003991 Decimal('0.367879441')
Facundo Batista353750c2007-09-13 18:13:15 +00003992 >>> c.exp(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003993 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00003994 >>> c.exp(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003995 Decimal('2.71828183')
Facundo Batista353750c2007-09-13 18:13:15 +00003996 >>> c.exp(Decimal('0.693147181'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003997 Decimal('2.00000000')
Facundo Batista353750c2007-09-13 18:13:15 +00003998 >>> c.exp(Decimal('+Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00003999 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004000 """
4001 return a.exp(context=self)
4002
4003 def fma(self, a, b, c):
4004 """Returns a multiplied by b, plus c.
4005
4006 The first two operands are multiplied together, using multiply,
4007 the third operand is then added to the result of that
4008 multiplication, using add, all with only one final rounding.
4009
4010 >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004011 Decimal('22')
Facundo Batista353750c2007-09-13 18:13:15 +00004012 >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004013 Decimal('-8')
Facundo Batista353750c2007-09-13 18:13:15 +00004014 >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004015 Decimal('1.38435736E+12')
Facundo Batista353750c2007-09-13 18:13:15 +00004016 """
4017 return a.fma(b, c, context=self)
4018
4019 def is_canonical(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004020 """Return True if the operand is canonical; otherwise return False.
4021
4022 Currently, the encoding of a Decimal instance is always
4023 canonical, so this method returns True for any Decimal.
Facundo Batista353750c2007-09-13 18:13:15 +00004024
4025 >>> ExtendedContext.is_canonical(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004026 True
Facundo Batista353750c2007-09-13 18:13:15 +00004027 """
Facundo Batista1a191df2007-10-02 17:01:24 +00004028 return a.is_canonical()
Facundo Batista353750c2007-09-13 18:13:15 +00004029
4030 def is_finite(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004031 """Return True if the operand is finite; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004032
Facundo Batista1a191df2007-10-02 17:01:24 +00004033 A Decimal instance is considered finite if it is neither
4034 infinite nor a NaN.
Facundo Batista353750c2007-09-13 18:13:15 +00004035
4036 >>> ExtendedContext.is_finite(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004037 True
Facundo Batista353750c2007-09-13 18:13:15 +00004038 >>> ExtendedContext.is_finite(Decimal('-0.3'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004039 True
Facundo Batista353750c2007-09-13 18:13:15 +00004040 >>> ExtendedContext.is_finite(Decimal('0'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004041 True
Facundo Batista353750c2007-09-13 18:13:15 +00004042 >>> ExtendedContext.is_finite(Decimal('Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004043 False
Facundo Batista353750c2007-09-13 18:13:15 +00004044 >>> ExtendedContext.is_finite(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004045 False
Facundo Batista353750c2007-09-13 18:13:15 +00004046 """
4047 return a.is_finite()
4048
4049 def is_infinite(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004050 """Return True if the operand is infinite; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004051
4052 >>> ExtendedContext.is_infinite(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004053 False
Facundo Batista353750c2007-09-13 18:13:15 +00004054 >>> ExtendedContext.is_infinite(Decimal('-Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004055 True
Facundo Batista353750c2007-09-13 18:13:15 +00004056 >>> ExtendedContext.is_infinite(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004057 False
Facundo Batista353750c2007-09-13 18:13:15 +00004058 """
4059 return a.is_infinite()
4060
4061 def is_nan(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004062 """Return True if the operand is a qNaN or sNaN;
4063 otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004064
4065 >>> ExtendedContext.is_nan(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004066 False
Facundo Batista353750c2007-09-13 18:13:15 +00004067 >>> ExtendedContext.is_nan(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004068 True
Facundo Batista353750c2007-09-13 18:13:15 +00004069 >>> ExtendedContext.is_nan(Decimal('-sNaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004070 True
Facundo Batista353750c2007-09-13 18:13:15 +00004071 """
4072 return a.is_nan()
4073
4074 def is_normal(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004075 """Return True if the operand is a normal number;
4076 otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004077
4078 >>> c = ExtendedContext.copy()
4079 >>> c.Emin = -999
4080 >>> c.Emax = 999
4081 >>> c.is_normal(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004082 True
Facundo Batista353750c2007-09-13 18:13:15 +00004083 >>> c.is_normal(Decimal('0.1E-999'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004084 False
Facundo Batista353750c2007-09-13 18:13:15 +00004085 >>> c.is_normal(Decimal('0.00'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004086 False
Facundo Batista353750c2007-09-13 18:13:15 +00004087 >>> c.is_normal(Decimal('-Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004088 False
Facundo Batista353750c2007-09-13 18:13:15 +00004089 >>> c.is_normal(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004090 False
Facundo Batista353750c2007-09-13 18:13:15 +00004091 """
4092 return a.is_normal(context=self)
4093
4094 def is_qnan(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004095 """Return True if the operand is a quiet NaN; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004096
4097 >>> ExtendedContext.is_qnan(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004098 False
Facundo Batista353750c2007-09-13 18:13:15 +00004099 >>> ExtendedContext.is_qnan(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004100 True
Facundo Batista353750c2007-09-13 18:13:15 +00004101 >>> ExtendedContext.is_qnan(Decimal('sNaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004102 False
Facundo Batista353750c2007-09-13 18:13:15 +00004103 """
4104 return a.is_qnan()
4105
4106 def is_signed(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004107 """Return True if the operand is negative; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004108
4109 >>> ExtendedContext.is_signed(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004110 False
Facundo Batista353750c2007-09-13 18:13:15 +00004111 >>> ExtendedContext.is_signed(Decimal('-12'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004112 True
Facundo Batista353750c2007-09-13 18:13:15 +00004113 >>> ExtendedContext.is_signed(Decimal('-0'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004114 True
Facundo Batista353750c2007-09-13 18:13:15 +00004115 """
4116 return a.is_signed()
4117
4118 def is_snan(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004119 """Return True if the operand is a signaling NaN;
4120 otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004121
4122 >>> ExtendedContext.is_snan(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004123 False
Facundo Batista353750c2007-09-13 18:13:15 +00004124 >>> ExtendedContext.is_snan(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004125 False
Facundo Batista353750c2007-09-13 18:13:15 +00004126 >>> ExtendedContext.is_snan(Decimal('sNaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004127 True
Facundo Batista353750c2007-09-13 18:13:15 +00004128 """
4129 return a.is_snan()
4130
4131 def is_subnormal(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004132 """Return True if the operand is subnormal; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004133
4134 >>> c = ExtendedContext.copy()
4135 >>> c.Emin = -999
4136 >>> c.Emax = 999
4137 >>> c.is_subnormal(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004138 False
Facundo Batista353750c2007-09-13 18:13:15 +00004139 >>> c.is_subnormal(Decimal('0.1E-999'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004140 True
Facundo Batista353750c2007-09-13 18:13:15 +00004141 >>> c.is_subnormal(Decimal('0.00'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004142 False
Facundo Batista353750c2007-09-13 18:13:15 +00004143 >>> c.is_subnormal(Decimal('-Inf'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004144 False
Facundo Batista353750c2007-09-13 18:13:15 +00004145 >>> c.is_subnormal(Decimal('NaN'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004146 False
Facundo Batista353750c2007-09-13 18:13:15 +00004147 """
4148 return a.is_subnormal(context=self)
4149
4150 def is_zero(self, a):
Facundo Batista1a191df2007-10-02 17:01:24 +00004151 """Return True if the operand is a zero; otherwise return False.
Facundo Batista353750c2007-09-13 18:13:15 +00004152
4153 >>> ExtendedContext.is_zero(Decimal('0'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004154 True
Facundo Batista353750c2007-09-13 18:13:15 +00004155 >>> ExtendedContext.is_zero(Decimal('2.50'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004156 False
Facundo Batista353750c2007-09-13 18:13:15 +00004157 >>> ExtendedContext.is_zero(Decimal('-0E+2'))
Facundo Batista1a191df2007-10-02 17:01:24 +00004158 True
Facundo Batista353750c2007-09-13 18:13:15 +00004159 """
4160 return a.is_zero()
4161
4162 def ln(self, a):
4163 """Returns the natural (base e) logarithm of the operand.
4164
4165 >>> c = ExtendedContext.copy()
4166 >>> c.Emin = -999
4167 >>> c.Emax = 999
4168 >>> c.ln(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004169 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004170 >>> c.ln(Decimal('1.000'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004171 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004172 >>> c.ln(Decimal('2.71828183'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004173 Decimal('1.00000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004174 >>> c.ln(Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004175 Decimal('2.30258509')
Facundo Batista353750c2007-09-13 18:13:15 +00004176 >>> c.ln(Decimal('+Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004177 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004178 """
4179 return a.ln(context=self)
4180
4181 def log10(self, a):
4182 """Returns the base 10 logarithm of the operand.
4183
4184 >>> c = ExtendedContext.copy()
4185 >>> c.Emin = -999
4186 >>> c.Emax = 999
4187 >>> c.log10(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004188 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004189 >>> c.log10(Decimal('0.001'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004190 Decimal('-3')
Facundo Batista353750c2007-09-13 18:13:15 +00004191 >>> c.log10(Decimal('1.000'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004192 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004193 >>> c.log10(Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004194 Decimal('0.301029996')
Facundo Batista353750c2007-09-13 18:13:15 +00004195 >>> c.log10(Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004196 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004197 >>> c.log10(Decimal('70'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004198 Decimal('1.84509804')
Facundo Batista353750c2007-09-13 18:13:15 +00004199 >>> c.log10(Decimal('+Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004200 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004201 """
4202 return a.log10(context=self)
4203
4204 def logb(self, a):
4205 """ Returns the exponent of the magnitude of the operand's MSD.
4206
4207 The result is the integer which is the exponent of the magnitude
4208 of the most significant digit of the operand (as though the
4209 operand were truncated to a single digit while maintaining the
4210 value of that digit and without limiting the resulting exponent).
4211
4212 >>> ExtendedContext.logb(Decimal('250'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004213 Decimal('2')
Facundo Batista353750c2007-09-13 18:13:15 +00004214 >>> ExtendedContext.logb(Decimal('2.50'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004215 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004216 >>> ExtendedContext.logb(Decimal('0.03'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004217 Decimal('-2')
Facundo Batista353750c2007-09-13 18:13:15 +00004218 >>> ExtendedContext.logb(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004219 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004220 """
4221 return a.logb(context=self)
4222
4223 def logical_and(self, a, b):
4224 """Applies the logical operation 'and' between each operand's digits.
4225
4226 The operands must be both logical numbers.
4227
4228 >>> ExtendedContext.logical_and(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004229 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004230 >>> ExtendedContext.logical_and(Decimal('0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004231 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004232 >>> ExtendedContext.logical_and(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004233 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004234 >>> ExtendedContext.logical_and(Decimal('1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004235 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004236 >>> ExtendedContext.logical_and(Decimal('1100'), Decimal('1010'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004237 Decimal('1000')
Facundo Batista353750c2007-09-13 18:13:15 +00004238 >>> ExtendedContext.logical_and(Decimal('1111'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004239 Decimal('10')
Facundo Batista353750c2007-09-13 18:13:15 +00004240 """
4241 return a.logical_and(b, context=self)
4242
4243 def logical_invert(self, a):
4244 """Invert all the digits in the operand.
4245
4246 The operand must be a logical number.
4247
4248 >>> ExtendedContext.logical_invert(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004249 Decimal('111111111')
Facundo Batista353750c2007-09-13 18:13:15 +00004250 >>> ExtendedContext.logical_invert(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004251 Decimal('111111110')
Facundo Batista353750c2007-09-13 18:13:15 +00004252 >>> ExtendedContext.logical_invert(Decimal('111111111'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004253 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004254 >>> ExtendedContext.logical_invert(Decimal('101010101'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004255 Decimal('10101010')
Facundo Batista353750c2007-09-13 18:13:15 +00004256 """
4257 return a.logical_invert(context=self)
4258
4259 def logical_or(self, a, b):
4260 """Applies the logical operation 'or' between each operand's digits.
4261
4262 The operands must be both logical numbers.
4263
4264 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004265 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004266 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004267 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004268 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004269 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004270 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004271 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004272 >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004273 Decimal('1110')
Facundo Batista353750c2007-09-13 18:13:15 +00004274 >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004275 Decimal('1110')
Facundo Batista353750c2007-09-13 18:13:15 +00004276 """
4277 return a.logical_or(b, context=self)
4278
4279 def logical_xor(self, a, b):
4280 """Applies the logical operation 'xor' between each operand's digits.
4281
4282 The operands must be both logical numbers.
4283
4284 >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004285 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004286 >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004287 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004288 >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004289 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004290 >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004291 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004292 >>> ExtendedContext.logical_xor(Decimal('1100'), Decimal('1010'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004293 Decimal('110')
Facundo Batista353750c2007-09-13 18:13:15 +00004294 >>> ExtendedContext.logical_xor(Decimal('1111'), Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004295 Decimal('1101')
Facundo Batista353750c2007-09-13 18:13:15 +00004296 """
4297 return a.logical_xor(b, context=self)
4298
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004299 def max(self, a,b):
4300 """max compares two values numerically and returns the maximum.
4301
4302 If either operand is a NaN then the general rules apply.
Andrew M. Kuchlingc8acc882008-01-16 00:32:03 +00004303 Otherwise, the operands are compared as though by the compare
Facundo Batista59c58842007-04-10 12:58:45 +00004304 operation. If they are numerically equal then the left-hand operand
4305 is chosen as the result. Otherwise the maximum (closer to positive
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004306 infinity) of the two operands is chosen as the result.
4307
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004308 >>> ExtendedContext.max(Decimal('3'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004309 Decimal('3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004310 >>> ExtendedContext.max(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004311 Decimal('3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004312 >>> ExtendedContext.max(Decimal('1.0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004313 Decimal('1')
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00004314 >>> ExtendedContext.max(Decimal('7'), Decimal('NaN'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004315 Decimal('7')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004316 """
4317 return a.max(b, context=self)
4318
Facundo Batista353750c2007-09-13 18:13:15 +00004319 def max_mag(self, a, b):
4320 """Compares the values numerically with their sign ignored."""
4321 return a.max_mag(b, context=self)
4322
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004323 def min(self, a,b):
4324 """min compares two values numerically and returns the minimum.
4325
4326 If either operand is a NaN then the general rules apply.
Andrew M. Kuchlingc8acc882008-01-16 00:32:03 +00004327 Otherwise, the operands are compared as though by the compare
Facundo Batista59c58842007-04-10 12:58:45 +00004328 operation. If they are numerically equal then the left-hand operand
4329 is chosen as the result. Otherwise the minimum (closer to negative
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004330 infinity) of the two operands is chosen as the result.
4331
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004332 >>> ExtendedContext.min(Decimal('3'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004333 Decimal('2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004334 >>> ExtendedContext.min(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004335 Decimal('-10')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004336 >>> ExtendedContext.min(Decimal('1.0'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004337 Decimal('1.0')
Raymond Hettingerd6c700a2004-08-17 06:39:37 +00004338 >>> ExtendedContext.min(Decimal('7'), Decimal('NaN'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004339 Decimal('7')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004340 """
4341 return a.min(b, context=self)
4342
Facundo Batista353750c2007-09-13 18:13:15 +00004343 def min_mag(self, a, b):
4344 """Compares the values numerically with their sign ignored."""
4345 return a.min_mag(b, context=self)
4346
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004347 def minus(self, a):
4348 """Minus corresponds to unary prefix minus in Python.
4349
4350 The operation is evaluated using the same rules as subtract; the
4351 operation minus(a) is calculated as subtract('0', a) where the '0'
4352 has the same exponent as the operand.
4353
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004354 >>> ExtendedContext.minus(Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004355 Decimal('-1.3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004356 >>> ExtendedContext.minus(Decimal('-1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004357 Decimal('1.3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004358 """
4359 return a.__neg__(context=self)
4360
4361 def multiply(self, a, b):
4362 """multiply multiplies two operands.
4363
Martin v. Löwiscfe31282006-07-19 17:18:32 +00004364 If either operand is a special value then the general rules apply.
4365 Otherwise, the operands are multiplied together ('long multiplication'),
4366 resulting in a number which may be as long as the sum of the lengths
4367 of the two operands.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004368
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004369 >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004370 Decimal('3.60')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004371 >>> ExtendedContext.multiply(Decimal('7'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004372 Decimal('21')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004373 >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004374 Decimal('0.72')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004375 >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004376 Decimal('-0.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004377 >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004378 Decimal('4.28135971E+11')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004379 """
4380 return a.__mul__(b, context=self)
4381
Facundo Batista353750c2007-09-13 18:13:15 +00004382 def next_minus(self, a):
4383 """Returns the largest representable number smaller than a.
4384
4385 >>> c = ExtendedContext.copy()
4386 >>> c.Emin = -999
4387 >>> c.Emax = 999
4388 >>> ExtendedContext.next_minus(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004389 Decimal('0.999999999')
Facundo Batista353750c2007-09-13 18:13:15 +00004390 >>> c.next_minus(Decimal('1E-1007'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004391 Decimal('0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004392 >>> ExtendedContext.next_minus(Decimal('-1.00000003'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004393 Decimal('-1.00000004')
Facundo Batista353750c2007-09-13 18:13:15 +00004394 >>> c.next_minus(Decimal('Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004395 Decimal('9.99999999E+999')
Facundo Batista353750c2007-09-13 18:13:15 +00004396 """
4397 return a.next_minus(context=self)
4398
4399 def next_plus(self, a):
4400 """Returns the smallest representable number larger than a.
4401
4402 >>> c = ExtendedContext.copy()
4403 >>> c.Emin = -999
4404 >>> c.Emax = 999
4405 >>> ExtendedContext.next_plus(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004406 Decimal('1.00000001')
Facundo Batista353750c2007-09-13 18:13:15 +00004407 >>> c.next_plus(Decimal('-1E-1007'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004408 Decimal('-0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004409 >>> ExtendedContext.next_plus(Decimal('-1.00000003'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004410 Decimal('-1.00000002')
Facundo Batista353750c2007-09-13 18:13:15 +00004411 >>> c.next_plus(Decimal('-Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004412 Decimal('-9.99999999E+999')
Facundo Batista353750c2007-09-13 18:13:15 +00004413 """
4414 return a.next_plus(context=self)
4415
4416 def next_toward(self, a, b):
4417 """Returns the number closest to a, in direction towards b.
4418
4419 The result is the closest representable number from the first
4420 operand (but not the first operand) that is in the direction
4421 towards the second operand, unless the operands have the same
4422 value.
4423
4424 >>> c = ExtendedContext.copy()
4425 >>> c.Emin = -999
4426 >>> c.Emax = 999
4427 >>> c.next_toward(Decimal('1'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004428 Decimal('1.00000001')
Facundo Batista353750c2007-09-13 18:13:15 +00004429 >>> c.next_toward(Decimal('-1E-1007'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004430 Decimal('-0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004431 >>> c.next_toward(Decimal('-1.00000003'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004432 Decimal('-1.00000002')
Facundo Batista353750c2007-09-13 18:13:15 +00004433 >>> c.next_toward(Decimal('1'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004434 Decimal('0.999999999')
Facundo Batista353750c2007-09-13 18:13:15 +00004435 >>> c.next_toward(Decimal('1E-1007'), Decimal('-100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004436 Decimal('0E-1007')
Facundo Batista353750c2007-09-13 18:13:15 +00004437 >>> c.next_toward(Decimal('-1.00000003'), Decimal('-10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004438 Decimal('-1.00000004')
Facundo Batista353750c2007-09-13 18:13:15 +00004439 >>> c.next_toward(Decimal('0.00'), Decimal('-0.0000'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004440 Decimal('-0.00')
Facundo Batista353750c2007-09-13 18:13:15 +00004441 """
4442 return a.next_toward(b, context=self)
4443
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004444 def normalize(self, a):
Raymond Hettingere0f15812004-07-05 05:36:39 +00004445 """normalize reduces an operand to its simplest form.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004446
4447 Essentially a plus operation with all trailing zeros removed from the
4448 result.
4449
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004450 >>> ExtendedContext.normalize(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004451 Decimal('2.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004452 >>> ExtendedContext.normalize(Decimal('-2.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004453 Decimal('-2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004454 >>> ExtendedContext.normalize(Decimal('1.200'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004455 Decimal('1.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004456 >>> ExtendedContext.normalize(Decimal('-120'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004457 Decimal('-1.2E+2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004458 >>> ExtendedContext.normalize(Decimal('120.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004459 Decimal('1.2E+2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004460 >>> ExtendedContext.normalize(Decimal('0.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004461 Decimal('0')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004462 """
4463 return a.normalize(context=self)
4464
Facundo Batista353750c2007-09-13 18:13:15 +00004465 def number_class(self, a):
4466 """Returns an indication of the class of the operand.
4467
4468 The class is one of the following strings:
4469 -sNaN
4470 -NaN
4471 -Infinity
4472 -Normal
4473 -Subnormal
4474 -Zero
4475 +Zero
4476 +Subnormal
4477 +Normal
4478 +Infinity
4479
4480 >>> c = Context(ExtendedContext)
4481 >>> c.Emin = -999
4482 >>> c.Emax = 999
4483 >>> c.number_class(Decimal('Infinity'))
4484 '+Infinity'
4485 >>> c.number_class(Decimal('1E-10'))
4486 '+Normal'
4487 >>> c.number_class(Decimal('2.50'))
4488 '+Normal'
4489 >>> c.number_class(Decimal('0.1E-999'))
4490 '+Subnormal'
4491 >>> c.number_class(Decimal('0'))
4492 '+Zero'
4493 >>> c.number_class(Decimal('-0'))
4494 '-Zero'
4495 >>> c.number_class(Decimal('-0.1E-999'))
4496 '-Subnormal'
4497 >>> c.number_class(Decimal('-1E-10'))
4498 '-Normal'
4499 >>> c.number_class(Decimal('-2.50'))
4500 '-Normal'
4501 >>> c.number_class(Decimal('-Infinity'))
4502 '-Infinity'
4503 >>> c.number_class(Decimal('NaN'))
4504 'NaN'
4505 >>> c.number_class(Decimal('-NaN'))
4506 'NaN'
4507 >>> c.number_class(Decimal('sNaN'))
4508 'sNaN'
4509 """
4510 return a.number_class(context=self)
4511
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004512 def plus(self, a):
4513 """Plus corresponds to unary prefix plus in Python.
4514
4515 The operation is evaluated using the same rules as add; the
4516 operation plus(a) is calculated as add('0', a) where the '0'
4517 has the same exponent as the operand.
4518
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004519 >>> ExtendedContext.plus(Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004520 Decimal('1.3')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004521 >>> ExtendedContext.plus(Decimal('-1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004522 Decimal('-1.3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004523 """
4524 return a.__pos__(context=self)
4525
4526 def power(self, a, b, modulo=None):
4527 """Raises a to the power of b, to modulo if given.
4528
Facundo Batista353750c2007-09-13 18:13:15 +00004529 With two arguments, compute a**b. If a is negative then b
4530 must be integral. The result will be inexact unless b is
4531 integral and the result is finite and can be expressed exactly
4532 in 'precision' digits.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004533
Facundo Batista353750c2007-09-13 18:13:15 +00004534 With three arguments, compute (a**b) % modulo. For the
4535 three argument form, the following restrictions on the
4536 arguments hold:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004537
Facundo Batista353750c2007-09-13 18:13:15 +00004538 - all three arguments must be integral
4539 - b must be nonnegative
4540 - at least one of a or b must be nonzero
4541 - modulo must be nonzero and have at most 'precision' digits
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004542
Facundo Batista353750c2007-09-13 18:13:15 +00004543 The result of pow(a, b, modulo) is identical to the result
4544 that would be obtained by computing (a**b) % modulo with
4545 unbounded precision, but is computed more efficiently. It is
4546 always exact.
4547
4548 >>> c = ExtendedContext.copy()
4549 >>> c.Emin = -999
4550 >>> c.Emax = 999
4551 >>> c.power(Decimal('2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004552 Decimal('8')
Facundo Batista353750c2007-09-13 18:13:15 +00004553 >>> c.power(Decimal('-2'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004554 Decimal('-8')
Facundo Batista353750c2007-09-13 18:13:15 +00004555 >>> c.power(Decimal('2'), Decimal('-3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004556 Decimal('0.125')
Facundo Batista353750c2007-09-13 18:13:15 +00004557 >>> c.power(Decimal('1.7'), Decimal('8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004558 Decimal('69.7575744')
Facundo Batista353750c2007-09-13 18:13:15 +00004559 >>> c.power(Decimal('10'), Decimal('0.301029996'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004560 Decimal('2.00000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004561 >>> c.power(Decimal('Infinity'), Decimal('-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004562 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004563 >>> c.power(Decimal('Infinity'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004564 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004565 >>> c.power(Decimal('Infinity'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004566 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004567 >>> c.power(Decimal('-Infinity'), Decimal('-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004568 Decimal('-0')
Facundo Batista353750c2007-09-13 18:13:15 +00004569 >>> c.power(Decimal('-Infinity'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004570 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004571 >>> c.power(Decimal('-Infinity'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004572 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004573 >>> c.power(Decimal('-Infinity'), Decimal('2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004574 Decimal('Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004575 >>> c.power(Decimal('0'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004576 Decimal('NaN')
Facundo Batista353750c2007-09-13 18:13:15 +00004577
4578 >>> c.power(Decimal('3'), Decimal('7'), Decimal('16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004579 Decimal('11')
Facundo Batista353750c2007-09-13 18:13:15 +00004580 >>> c.power(Decimal('-3'), Decimal('7'), Decimal('16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004581 Decimal('-11')
Facundo Batista353750c2007-09-13 18:13:15 +00004582 >>> c.power(Decimal('-3'), Decimal('8'), Decimal('16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004583 Decimal('1')
Facundo Batista353750c2007-09-13 18:13:15 +00004584 >>> c.power(Decimal('3'), Decimal('7'), Decimal('-16'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004585 Decimal('11')
Facundo Batista353750c2007-09-13 18:13:15 +00004586 >>> c.power(Decimal('23E12345'), Decimal('67E189'), Decimal('123456789'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004587 Decimal('11729830')
Facundo Batista353750c2007-09-13 18:13:15 +00004588 >>> c.power(Decimal('-0'), Decimal('17'), Decimal('1729'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004589 Decimal('-0')
Facundo Batista353750c2007-09-13 18:13:15 +00004590 >>> c.power(Decimal('-23'), Decimal('0'), Decimal('65537'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004591 Decimal('1')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004592 """
4593 return a.__pow__(b, modulo, context=self)
4594
4595 def quantize(self, a, b):
Facundo Batista59c58842007-04-10 12:58:45 +00004596 """Returns a value equal to 'a' (rounded), having the exponent of 'b'.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004597
4598 The coefficient of the result is derived from that of the left-hand
Facundo Batista59c58842007-04-10 12:58:45 +00004599 operand. It may be rounded using the current rounding setting (if the
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004600 exponent is being increased), multiplied by a positive power of ten (if
4601 the exponent is being decreased), or is unchanged (if the exponent is
4602 already equal to that of the right-hand operand).
4603
4604 Unlike other operations, if the length of the coefficient after the
4605 quantize operation would be greater than precision then an Invalid
Facundo Batista59c58842007-04-10 12:58:45 +00004606 operation condition is raised. This guarantees that, unless there is
4607 an error condition, the exponent of the result of a quantize is always
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004608 equal to that of the right-hand operand.
4609
4610 Also unlike other operations, quantize will never raise Underflow, even
4611 if the result is subnormal and inexact.
4612
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004613 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004614 Decimal('2.170')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004615 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004616 Decimal('2.17')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004617 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004618 Decimal('2.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004619 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004620 Decimal('2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004621 >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004622 Decimal('0E+1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004623 >>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004624 Decimal('-Infinity')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004625 >>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004626 Decimal('NaN')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004627 >>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004628 Decimal('-0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004629 >>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004630 Decimal('-0E+5')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004631 >>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004632 Decimal('NaN')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004633 >>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004634 Decimal('NaN')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004635 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004636 Decimal('217.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004637 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004638 Decimal('217')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004639 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004640 Decimal('2.2E+2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004641 >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004642 Decimal('2E+2')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004643 """
4644 return a.quantize(b, context=self)
4645
Facundo Batista353750c2007-09-13 18:13:15 +00004646 def radix(self):
4647 """Just returns 10, as this is Decimal, :)
4648
4649 >>> ExtendedContext.radix()
Raymond Hettingerabe32372008-02-14 02:41:22 +00004650 Decimal('10')
Facundo Batista353750c2007-09-13 18:13:15 +00004651 """
4652 return Decimal(10)
4653
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004654 def remainder(self, a, b):
4655 """Returns the remainder from integer division.
4656
4657 The result is the residue of the dividend after the operation of
Facundo Batista59c58842007-04-10 12:58:45 +00004658 calculating integer division as described for divide-integer, rounded
Neal Norwitz0d4c06e2007-04-25 06:30:05 +00004659 to precision digits if necessary. The sign of the result, if
Facundo Batista59c58842007-04-10 12:58:45 +00004660 non-zero, is the same as that of the original dividend.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004661
4662 This operation will fail under the same conditions as integer division
4663 (that is, if integer division on the same two operands would fail, the
4664 remainder cannot be calculated).
4665
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004666 >>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004667 Decimal('2.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004668 >>> ExtendedContext.remainder(Decimal('10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004669 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004670 >>> ExtendedContext.remainder(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004671 Decimal('-1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004672 >>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004673 Decimal('0.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004674 >>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004675 Decimal('0.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004676 >>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004677 Decimal('1.0')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004678 """
4679 return a.__mod__(b, context=self)
4680
4681 def remainder_near(self, a, b):
4682 """Returns to be "a - b * n", where n is the integer nearest the exact
4683 value of "x / b" (if two integers are equally near then the even one
Facundo Batista59c58842007-04-10 12:58:45 +00004684 is chosen). If the result is equal to 0 then its sign will be the
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004685 sign of a.
4686
4687 This operation will fail under the same conditions as integer division
4688 (that is, if integer division on the same two operands would fail, the
4689 remainder cannot be calculated).
4690
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004691 >>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004692 Decimal('-0.9')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004693 >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004694 Decimal('-2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004695 >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004696 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004697 >>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004698 Decimal('-1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004699 >>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004700 Decimal('0.2')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004701 >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004702 Decimal('0.1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004703 >>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004704 Decimal('-0.3')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004705 """
4706 return a.remainder_near(b, context=self)
4707
Facundo Batista353750c2007-09-13 18:13:15 +00004708 def rotate(self, a, b):
4709 """Returns a rotated copy of a, b times.
4710
4711 The coefficient of the result is a rotated copy of the digits in
4712 the coefficient of the first operand. The number of places of
4713 rotation is taken from the absolute value of the second operand,
4714 with the rotation being to the left if the second operand is
4715 positive or to the right otherwise.
4716
4717 >>> ExtendedContext.rotate(Decimal('34'), Decimal('8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004718 Decimal('400000003')
Facundo Batista353750c2007-09-13 18:13:15 +00004719 >>> ExtendedContext.rotate(Decimal('12'), Decimal('9'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004720 Decimal('12')
Facundo Batista353750c2007-09-13 18:13:15 +00004721 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004722 Decimal('891234567')
Facundo Batista353750c2007-09-13 18:13:15 +00004723 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004724 Decimal('123456789')
Facundo Batista353750c2007-09-13 18:13:15 +00004725 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004726 Decimal('345678912')
Facundo Batista353750c2007-09-13 18:13:15 +00004727 """
4728 return a.rotate(b, context=self)
4729
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004730 def same_quantum(self, a, b):
4731 """Returns True if the two operands have the same exponent.
4732
4733 The result is never affected by either the sign or the coefficient of
4734 either operand.
4735
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004736 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004737 False
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004738 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004739 True
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004740 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004741 False
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004742 >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004743 True
4744 """
4745 return a.same_quantum(b)
4746
Facundo Batista353750c2007-09-13 18:13:15 +00004747 def scaleb (self, a, b):
4748 """Returns the first operand after adding the second value its exp.
4749
4750 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004751 Decimal('0.0750')
Facundo Batista353750c2007-09-13 18:13:15 +00004752 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004753 Decimal('7.50')
Facundo Batista353750c2007-09-13 18:13:15 +00004754 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004755 Decimal('7.50E+3')
Facundo Batista353750c2007-09-13 18:13:15 +00004756 """
4757 return a.scaleb (b, context=self)
4758
4759 def shift(self, a, b):
4760 """Returns a shifted copy of a, b times.
4761
4762 The coefficient of the result is a shifted copy of the digits
4763 in the coefficient of the first operand. The number of places
4764 to shift is taken from the absolute value of the second operand,
4765 with the shift being to the left if the second operand is
4766 positive or to the right otherwise. Digits shifted into the
4767 coefficient are zeros.
4768
4769 >>> ExtendedContext.shift(Decimal('34'), Decimal('8'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004770 Decimal('400000000')
Facundo Batista353750c2007-09-13 18:13:15 +00004771 >>> ExtendedContext.shift(Decimal('12'), Decimal('9'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004772 Decimal('0')
Facundo Batista353750c2007-09-13 18:13:15 +00004773 >>> ExtendedContext.shift(Decimal('123456789'), Decimal('-2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004774 Decimal('1234567')
Facundo Batista353750c2007-09-13 18:13:15 +00004775 >>> ExtendedContext.shift(Decimal('123456789'), Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004776 Decimal('123456789')
Facundo Batista353750c2007-09-13 18:13:15 +00004777 >>> ExtendedContext.shift(Decimal('123456789'), Decimal('+2'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004778 Decimal('345678900')
Facundo Batista353750c2007-09-13 18:13:15 +00004779 """
4780 return a.shift(b, context=self)
4781
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004782 def sqrt(self, a):
Facundo Batista59c58842007-04-10 12:58:45 +00004783 """Square root of a non-negative number to context precision.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004784
4785 If the result must be inexact, it is rounded using the round-half-even
4786 algorithm.
4787
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004788 >>> ExtendedContext.sqrt(Decimal('0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004789 Decimal('0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004790 >>> ExtendedContext.sqrt(Decimal('-0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004791 Decimal('-0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004792 >>> ExtendedContext.sqrt(Decimal('0.39'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004793 Decimal('0.624499800')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004794 >>> ExtendedContext.sqrt(Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004795 Decimal('10')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004796 >>> ExtendedContext.sqrt(Decimal('1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004797 Decimal('1')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004798 >>> ExtendedContext.sqrt(Decimal('1.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004799 Decimal('1.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004800 >>> ExtendedContext.sqrt(Decimal('1.00'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004801 Decimal('1.0')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004802 >>> ExtendedContext.sqrt(Decimal('7'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004803 Decimal('2.64575131')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004804 >>> ExtendedContext.sqrt(Decimal('10'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004805 Decimal('3.16227766')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004806 >>> ExtendedContext.prec
Raymond Hettinger6ea48452004-07-03 12:26:21 +00004807 9
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004808 """
4809 return a.sqrt(context=self)
4810
4811 def subtract(self, a, b):
Georg Brandlf33d01d2005-08-22 19:35:18 +00004812 """Return the difference between the two operands.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004813
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004814 >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004815 Decimal('0.23')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004816 >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004817 Decimal('0.00')
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00004818 >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004819 Decimal('-0.77')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004820 """
4821 return a.__sub__(b, context=self)
4822
4823 def to_eng_string(self, a):
4824 """Converts a number to a string, using scientific notation.
4825
4826 The operation is not affected by the context.
4827 """
4828 return a.to_eng_string(context=self)
4829
4830 def to_sci_string(self, a):
4831 """Converts a number to a string, using scientific notation.
4832
4833 The operation is not affected by the context.
4834 """
4835 return a.__str__(context=self)
4836
Facundo Batista353750c2007-09-13 18:13:15 +00004837 def to_integral_exact(self, a):
4838 """Rounds to an integer.
4839
4840 When the operand has a negative exponent, the result is the same
4841 as using the quantize() operation using the given operand as the
4842 left-hand-operand, 1E+0 as the right-hand-operand, and the precision
4843 of the operand as the precision setting; Inexact and Rounded flags
4844 are allowed in this operation. The rounding mode is taken from the
4845 context.
4846
4847 >>> ExtendedContext.to_integral_exact(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004848 Decimal('2')
Facundo Batista353750c2007-09-13 18:13:15 +00004849 >>> ExtendedContext.to_integral_exact(Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004850 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004851 >>> ExtendedContext.to_integral_exact(Decimal('100.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004852 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004853 >>> ExtendedContext.to_integral_exact(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004854 Decimal('102')
Facundo Batista353750c2007-09-13 18:13:15 +00004855 >>> ExtendedContext.to_integral_exact(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004856 Decimal('-102')
Facundo Batista353750c2007-09-13 18:13:15 +00004857 >>> ExtendedContext.to_integral_exact(Decimal('10E+5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004858 Decimal('1.0E+6')
Facundo Batista353750c2007-09-13 18:13:15 +00004859 >>> ExtendedContext.to_integral_exact(Decimal('7.89E+77'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004860 Decimal('7.89E+77')
Facundo Batista353750c2007-09-13 18:13:15 +00004861 >>> ExtendedContext.to_integral_exact(Decimal('-Inf'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004862 Decimal('-Infinity')
Facundo Batista353750c2007-09-13 18:13:15 +00004863 """
4864 return a.to_integral_exact(context=self)
4865
4866 def to_integral_value(self, a):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004867 """Rounds to an integer.
4868
4869 When the operand has a negative exponent, the result is the same
4870 as using the quantize() operation using the given operand as the
4871 left-hand-operand, 1E+0 as the right-hand-operand, and the precision
4872 of the operand as the precision setting, except that no flags will
Facundo Batista59c58842007-04-10 12:58:45 +00004873 be set. The rounding mode is taken from the context.
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004874
Facundo Batista353750c2007-09-13 18:13:15 +00004875 >>> ExtendedContext.to_integral_value(Decimal('2.1'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004876 Decimal('2')
Facundo Batista353750c2007-09-13 18:13:15 +00004877 >>> ExtendedContext.to_integral_value(Decimal('100'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004878 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004879 >>> ExtendedContext.to_integral_value(Decimal('100.0'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004880 Decimal('100')
Facundo Batista353750c2007-09-13 18:13:15 +00004881 >>> ExtendedContext.to_integral_value(Decimal('101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004882 Decimal('102')
Facundo Batista353750c2007-09-13 18:13:15 +00004883 >>> ExtendedContext.to_integral_value(Decimal('-101.5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004884 Decimal('-102')
Facundo Batista353750c2007-09-13 18:13:15 +00004885 >>> ExtendedContext.to_integral_value(Decimal('10E+5'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004886 Decimal('1.0E+6')
Facundo Batista353750c2007-09-13 18:13:15 +00004887 >>> ExtendedContext.to_integral_value(Decimal('7.89E+77'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004888 Decimal('7.89E+77')
Facundo Batista353750c2007-09-13 18:13:15 +00004889 >>> ExtendedContext.to_integral_value(Decimal('-Inf'))
Raymond Hettingerabe32372008-02-14 02:41:22 +00004890 Decimal('-Infinity')
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004891 """
Facundo Batista353750c2007-09-13 18:13:15 +00004892 return a.to_integral_value(context=self)
4893
4894 # the method name changed, but we provide also the old one, for compatibility
4895 to_integral = to_integral_value
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004896
4897class _WorkRep(object):
4898 __slots__ = ('sign','int','exp')
Raymond Hettinger17931de2004-10-27 06:21:46 +00004899 # sign: 0 or 1
Raymond Hettinger636a6b12004-09-19 01:54:09 +00004900 # int: int or long
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004901 # exp: None, int, or string
4902
4903 def __init__(self, value=None):
4904 if value is None:
4905 self.sign = None
Raymond Hettinger636a6b12004-09-19 01:54:09 +00004906 self.int = 0
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004907 self.exp = None
Raymond Hettinger17931de2004-10-27 06:21:46 +00004908 elif isinstance(value, Decimal):
4909 self.sign = value._sign
Facundo Batista72bc54f2007-11-23 17:59:00 +00004910 self.int = int(value._int)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004911 self.exp = value._exp
Raymond Hettinger17931de2004-10-27 06:21:46 +00004912 else:
4913 # assert isinstance(value, tuple)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004914 self.sign = value[0]
4915 self.int = value[1]
4916 self.exp = value[2]
4917
4918 def __repr__(self):
4919 return "(%r, %r, %r)" % (self.sign, self.int, self.exp)
4920
4921 __str__ = __repr__
4922
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004923
4924
Facundo Batistae64acfa2007-12-17 14:18:42 +00004925def _normalize(op1, op2, prec = 0):
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004926 """Normalizes op1, op2 to have the same exp and length of coefficient.
4927
4928 Done during addition.
4929 """
Facundo Batista353750c2007-09-13 18:13:15 +00004930 if op1.exp < op2.exp:
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004931 tmp = op2
4932 other = op1
4933 else:
4934 tmp = op1
4935 other = op2
4936
Facundo Batista353750c2007-09-13 18:13:15 +00004937 # Let exp = min(tmp.exp - 1, tmp.adjusted() - precision - 1).
4938 # Then adding 10**exp to tmp has the same effect (after rounding)
4939 # as adding any positive quantity smaller than 10**exp; similarly
4940 # for subtraction. So if other is smaller than 10**exp we replace
4941 # it with 10**exp. This avoids tmp.exp - other.exp getting too large.
Facundo Batistae64acfa2007-12-17 14:18:42 +00004942 tmp_len = len(str(tmp.int))
4943 other_len = len(str(other.int))
4944 exp = tmp.exp + min(-1, tmp_len - prec - 2)
4945 if other_len + other.exp - 1 < exp:
4946 other.int = 1
4947 other.exp = exp
Raymond Hettinger636a6b12004-09-19 01:54:09 +00004948
Facundo Batista353750c2007-09-13 18:13:15 +00004949 tmp.int *= 10 ** (tmp.exp - other.exp)
4950 tmp.exp = other.exp
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00004951 return op1, op2
4952
Facundo Batista353750c2007-09-13 18:13:15 +00004953##### Integer arithmetic functions used by ln, log10, exp and __pow__ #####
4954
4955# This function from Tim Peters was taken from here:
4956# http://mail.python.org/pipermail/python-list/1999-July/007758.html
4957# The correction being in the function definition is for speed, and
4958# the whole function is not resolved with math.log because of avoiding
4959# the use of floats.
4960def _nbits(n, correction = {
4961 '0': 4, '1': 3, '2': 2, '3': 2,
4962 '4': 1, '5': 1, '6': 1, '7': 1,
4963 '8': 0, '9': 0, 'a': 0, 'b': 0,
4964 'c': 0, 'd': 0, 'e': 0, 'f': 0}):
4965 """Number of bits in binary representation of the positive integer n,
4966 or 0 if n == 0.
4967 """
4968 if n < 0:
4969 raise ValueError("The argument to _nbits should be nonnegative.")
4970 hex_n = "%x" % n
4971 return 4*len(hex_n) - correction[hex_n[0]]
4972
4973def _sqrt_nearest(n, a):
4974 """Closest integer to the square root of the positive integer n. a is
4975 an initial approximation to the square root. Any positive integer
4976 will do for a, but the closer a is to the square root of n the
4977 faster convergence will be.
4978
4979 """
4980 if n <= 0 or a <= 0:
4981 raise ValueError("Both arguments to _sqrt_nearest should be positive.")
4982
4983 b=0
4984 while a != b:
4985 b, a = a, a--n//a>>1
4986 return a
4987
4988def _rshift_nearest(x, shift):
4989 """Given an integer x and a nonnegative integer shift, return closest
4990 integer to x / 2**shift; use round-to-even in case of a tie.
4991
4992 """
4993 b, q = 1L << shift, x >> shift
4994 return q + (2*(x & (b-1)) + (q&1) > b)
4995
4996def _div_nearest(a, b):
4997 """Closest integer to a/b, a and b positive integers; rounds to even
4998 in the case of a tie.
4999
5000 """
5001 q, r = divmod(a, b)
5002 return q + (2*r + (q&1) > b)
5003
5004def _ilog(x, M, L = 8):
5005 """Integer approximation to M*log(x/M), with absolute error boundable
5006 in terms only of x/M.
5007
5008 Given positive integers x and M, return an integer approximation to
5009 M * log(x/M). For L = 8 and 0.1 <= x/M <= 10 the difference
5010 between the approximation and the exact result is at most 22. For
5011 L = 8 and 1.0 <= x/M <= 10.0 the difference is at most 15. In
5012 both cases these are upper bounds on the error; it will usually be
5013 much smaller."""
5014
5015 # The basic algorithm is the following: let log1p be the function
5016 # log1p(x) = log(1+x). Then log(x/M) = log1p((x-M)/M). We use
5017 # the reduction
5018 #
5019 # log1p(y) = 2*log1p(y/(1+sqrt(1+y)))
5020 #
5021 # repeatedly until the argument to log1p is small (< 2**-L in
5022 # absolute value). For small y we can use the Taylor series
5023 # expansion
5024 #
5025 # log1p(y) ~ y - y**2/2 + y**3/3 - ... - (-y)**T/T
5026 #
5027 # truncating at T such that y**T is small enough. The whole
5028 # computation is carried out in a form of fixed-point arithmetic,
5029 # with a real number z being represented by an integer
5030 # approximation to z*M. To avoid loss of precision, the y below
5031 # is actually an integer approximation to 2**R*y*M, where R is the
5032 # number of reductions performed so far.
5033
5034 y = x-M
5035 # argument reduction; R = number of reductions performed
5036 R = 0
5037 while (R <= L and long(abs(y)) << L-R >= M or
5038 R > L and abs(y) >> R-L >= M):
5039 y = _div_nearest(long(M*y) << 1,
5040 M + _sqrt_nearest(M*(M+_rshift_nearest(y, R)), M))
5041 R += 1
5042
5043 # Taylor series with T terms
5044 T = -int(-10*len(str(M))//(3*L))
5045 yshift = _rshift_nearest(y, R)
5046 w = _div_nearest(M, T)
5047 for k in xrange(T-1, 0, -1):
5048 w = _div_nearest(M, k) - _div_nearest(yshift*w, M)
5049
5050 return _div_nearest(w*y, M)
5051
5052def _dlog10(c, e, p):
5053 """Given integers c, e and p with c > 0, p >= 0, compute an integer
5054 approximation to 10**p * log10(c*10**e), with an absolute error of
5055 at most 1. Assumes that c*10**e is not exactly 1."""
5056
5057 # increase precision by 2; compensate for this by dividing
5058 # final result by 100
5059 p += 2
5060
5061 # write c*10**e as d*10**f with either:
5062 # f >= 0 and 1 <= d <= 10, or
5063 # f <= 0 and 0.1 <= d <= 1.
5064 # Thus for c*10**e close to 1, f = 0
5065 l = len(str(c))
5066 f = e+l - (e+l >= 1)
5067
5068 if p > 0:
5069 M = 10**p
5070 k = e+p-f
5071 if k >= 0:
5072 c *= 10**k
5073 else:
5074 c = _div_nearest(c, 10**-k)
5075
5076 log_d = _ilog(c, M) # error < 5 + 22 = 27
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005077 log_10 = _log10_digits(p) # error < 1
Facundo Batista353750c2007-09-13 18:13:15 +00005078 log_d = _div_nearest(log_d*M, log_10)
5079 log_tenpower = f*M # exact
5080 else:
5081 log_d = 0 # error < 2.31
Neal Norwitz18aa3882008-08-24 05:04:52 +00005082 log_tenpower = _div_nearest(f, 10**-p) # error < 0.5
Facundo Batista353750c2007-09-13 18:13:15 +00005083
5084 return _div_nearest(log_tenpower+log_d, 100)
5085
5086def _dlog(c, e, p):
5087 """Given integers c, e and p with c > 0, compute an integer
5088 approximation to 10**p * log(c*10**e), with an absolute error of
5089 at most 1. Assumes that c*10**e is not exactly 1."""
5090
5091 # Increase precision by 2. The precision increase is compensated
5092 # for at the end with a division by 100.
5093 p += 2
5094
5095 # rewrite c*10**e as d*10**f with either f >= 0 and 1 <= d <= 10,
5096 # or f <= 0 and 0.1 <= d <= 1. Then we can compute 10**p * log(c*10**e)
5097 # as 10**p * log(d) + 10**p*f * log(10).
5098 l = len(str(c))
5099 f = e+l - (e+l >= 1)
5100
5101 # compute approximation to 10**p*log(d), with error < 27
5102 if p > 0:
5103 k = e+p-f
5104 if k >= 0:
5105 c *= 10**k
5106 else:
5107 c = _div_nearest(c, 10**-k) # error of <= 0.5 in c
5108
5109 # _ilog magnifies existing error in c by a factor of at most 10
5110 log_d = _ilog(c, 10**p) # error < 5 + 22 = 27
5111 else:
5112 # p <= 0: just approximate the whole thing by 0; error < 2.31
5113 log_d = 0
5114
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005115 # compute approximation to f*10**p*log(10), with error < 11.
Facundo Batista353750c2007-09-13 18:13:15 +00005116 if f:
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005117 extra = len(str(abs(f)))-1
5118 if p + extra >= 0:
5119 # error in f * _log10_digits(p+extra) < |f| * 1 = |f|
5120 # after division, error < |f|/10**extra + 0.5 < 10 + 0.5 < 11
5121 f_log_ten = _div_nearest(f*_log10_digits(p+extra), 10**extra)
Facundo Batista353750c2007-09-13 18:13:15 +00005122 else:
5123 f_log_ten = 0
5124 else:
5125 f_log_ten = 0
5126
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005127 # error in sum < 11+27 = 38; error after division < 0.38 + 0.5 < 1
Facundo Batista353750c2007-09-13 18:13:15 +00005128 return _div_nearest(f_log_ten + log_d, 100)
5129
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005130class _Log10Memoize(object):
5131 """Class to compute, store, and allow retrieval of, digits of the
5132 constant log(10) = 2.302585.... This constant is needed by
5133 Decimal.ln, Decimal.log10, Decimal.exp and Decimal.__pow__."""
5134 def __init__(self):
5135 self.digits = "23025850929940456840179914546843642076011014886"
5136
5137 def getdigits(self, p):
5138 """Given an integer p >= 0, return floor(10**p)*log(10).
5139
5140 For example, self.getdigits(3) returns 2302.
5141 """
5142 # digits are stored as a string, for quick conversion to
5143 # integer in the case that we've already computed enough
5144 # digits; the stored digits should always be correct
5145 # (truncated, not rounded to nearest).
5146 if p < 0:
5147 raise ValueError("p should be nonnegative")
5148
5149 if p >= len(self.digits):
5150 # compute p+3, p+6, p+9, ... digits; continue until at
5151 # least one of the extra digits is nonzero
5152 extra = 3
5153 while True:
5154 # compute p+extra digits, correct to within 1ulp
5155 M = 10**(p+extra+2)
5156 digits = str(_div_nearest(_ilog(10*M, M), 100))
5157 if digits[-extra:] != '0'*extra:
5158 break
5159 extra += 3
5160 # keep all reliable digits so far; remove trailing zeros
5161 # and next nonzero digit
5162 self.digits = digits.rstrip('0')[:-1]
5163 return int(self.digits[:p+1])
5164
5165_log10_digits = _Log10Memoize().getdigits
5166
Facundo Batista353750c2007-09-13 18:13:15 +00005167def _iexp(x, M, L=8):
5168 """Given integers x and M, M > 0, such that x/M is small in absolute
5169 value, compute an integer approximation to M*exp(x/M). For 0 <=
5170 x/M <= 2.4, the absolute error in the result is bounded by 60 (and
5171 is usually much smaller)."""
5172
5173 # Algorithm: to compute exp(z) for a real number z, first divide z
5174 # by a suitable power R of 2 so that |z/2**R| < 2**-L. Then
5175 # compute expm1(z/2**R) = exp(z/2**R) - 1 using the usual Taylor
5176 # series
5177 #
5178 # expm1(x) = x + x**2/2! + x**3/3! + ...
5179 #
5180 # Now use the identity
5181 #
5182 # expm1(2x) = expm1(x)*(expm1(x)+2)
5183 #
5184 # R times to compute the sequence expm1(z/2**R),
5185 # expm1(z/2**(R-1)), ... , exp(z/2), exp(z).
5186
5187 # Find R such that x/2**R/M <= 2**-L
5188 R = _nbits((long(x)<<L)//M)
5189
5190 # Taylor series. (2**L)**T > M
5191 T = -int(-10*len(str(M))//(3*L))
5192 y = _div_nearest(x, T)
5193 Mshift = long(M)<<R
5194 for i in xrange(T-1, 0, -1):
5195 y = _div_nearest(x*(Mshift + y), Mshift * i)
5196
5197 # Expansion
5198 for k in xrange(R-1, -1, -1):
5199 Mshift = long(M)<<(k+2)
5200 y = _div_nearest(y*(y+Mshift), Mshift)
5201
5202 return M+y
5203
5204def _dexp(c, e, p):
5205 """Compute an approximation to exp(c*10**e), with p decimal places of
5206 precision.
5207
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005208 Returns integers d, f such that:
Facundo Batista353750c2007-09-13 18:13:15 +00005209
5210 10**(p-1) <= d <= 10**p, and
5211 (d-1)*10**f < exp(c*10**e) < (d+1)*10**f
5212
5213 In other words, d*10**f is an approximation to exp(c*10**e) with p
5214 digits of precision, and with an error in d of at most 1. This is
5215 almost, but not quite, the same as the error being < 1ulp: when d
5216 = 10**(p-1) the error could be up to 10 ulp."""
5217
5218 # we'll call iexp with M = 10**(p+2), giving p+3 digits of precision
5219 p += 2
5220
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005221 # compute log(10) with extra precision = adjusted exponent of c*10**e
Facundo Batista353750c2007-09-13 18:13:15 +00005222 extra = max(0, e + len(str(c)) - 1)
5223 q = p + extra
Facundo Batista353750c2007-09-13 18:13:15 +00005224
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005225 # compute quotient c*10**e/(log(10)) = c*10**(e+q)/(log(10)*10**q),
Facundo Batista353750c2007-09-13 18:13:15 +00005226 # rounding down
5227 shift = e+q
5228 if shift >= 0:
5229 cshift = c*10**shift
5230 else:
5231 cshift = c//10**-shift
Facundo Batistabe6c7ba2007-10-02 18:21:18 +00005232 quot, rem = divmod(cshift, _log10_digits(q))
Facundo Batista353750c2007-09-13 18:13:15 +00005233
5234 # reduce remainder back to original precision
5235 rem = _div_nearest(rem, 10**extra)
5236
5237 # error in result of _iexp < 120; error after division < 0.62
5238 return _div_nearest(_iexp(rem, 10**p), 1000), quot - p + 3
5239
5240def _dpower(xc, xe, yc, ye, p):
5241 """Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and
5242 y = yc*10**ye, compute x**y. Returns a pair of integers (c, e) such that:
5243
5244 10**(p-1) <= c <= 10**p, and
5245 (c-1)*10**e < x**y < (c+1)*10**e
5246
5247 in other words, c*10**e is an approximation to x**y with p digits
5248 of precision, and with an error in c of at most 1. (This is
5249 almost, but not quite, the same as the error being < 1ulp: when c
5250 == 10**(p-1) we can only guarantee error < 10ulp.)
5251
5252 We assume that: x is positive and not equal to 1, and y is nonzero.
5253 """
5254
5255 # Find b such that 10**(b-1) <= |y| <= 10**b
5256 b = len(str(abs(yc))) + ye
5257
5258 # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point
5259 lxc = _dlog(xc, xe, p+b+1)
5260
5261 # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1)
5262 shift = ye-b
5263 if shift >= 0:
5264 pc = lxc*yc*10**shift
5265 else:
5266 pc = _div_nearest(lxc*yc, 10**-shift)
5267
5268 if pc == 0:
5269 # we prefer a result that isn't exactly 1; this makes it
5270 # easier to compute a correctly rounded result in __pow__
5271 if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1:
5272 coeff, exp = 10**(p-1)+1, 1-p
5273 else:
5274 coeff, exp = 10**p-1, -p
5275 else:
5276 coeff, exp = _dexp(pc, -(p+1), p+1)
5277 coeff = _div_nearest(coeff, 10)
5278 exp += 1
5279
5280 return coeff, exp
5281
5282def _log10_lb(c, correction = {
5283 '1': 100, '2': 70, '3': 53, '4': 40, '5': 31,
5284 '6': 23, '7': 16, '8': 10, '9': 5}):
5285 """Compute a lower bound for 100*log10(c) for a positive integer c."""
5286 if c <= 0:
5287 raise ValueError("The argument to _log10_lb should be nonnegative.")
5288 str_c = str(c)
5289 return 100*len(str_c) - correction[str_c[0]]
5290
Facundo Batista59c58842007-04-10 12:58:45 +00005291##### Helper Functions ####################################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005292
Facundo Batista353750c2007-09-13 18:13:15 +00005293def _convert_other(other, raiseit=False):
Raymond Hettinger636a6b12004-09-19 01:54:09 +00005294 """Convert other to Decimal.
5295
5296 Verifies that it's ok to use in an implicit construction.
5297 """
5298 if isinstance(other, Decimal):
5299 return other
5300 if isinstance(other, (int, long)):
5301 return Decimal(other)
Facundo Batista353750c2007-09-13 18:13:15 +00005302 if raiseit:
5303 raise TypeError("Unable to convert %s to Decimal" % other)
Raymond Hettinger267b8682005-03-27 10:47:39 +00005304 return NotImplemented
Raymond Hettinger636a6b12004-09-19 01:54:09 +00005305
Facundo Batista59c58842007-04-10 12:58:45 +00005306##### Setup Specific Contexts ############################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005307
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005308# The default context prototype used by Context()
Raymond Hettingerfed52962004-07-14 15:41:57 +00005309# Is mutable, so that new contexts can have different default values
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005310
5311DefaultContext = Context(
Raymond Hettinger6ea48452004-07-03 12:26:21 +00005312 prec=28, rounding=ROUND_HALF_EVEN,
Raymond Hettingerbf440692004-07-10 14:14:37 +00005313 traps=[DivisionByZero, Overflow, InvalidOperation],
5314 flags=[],
Raymond Hettinger99148e72004-07-14 19:56:56 +00005315 Emax=999999999,
5316 Emin=-999999999,
Raymond Hettingere0f15812004-07-05 05:36:39 +00005317 capitals=1
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005318)
5319
5320# Pre-made alternate contexts offered by the specification
5321# Don't change these; the user should be able to select these
5322# contexts and be able to reproduce results from other implementations
5323# of the spec.
5324
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00005325BasicContext = Context(
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005326 prec=9, rounding=ROUND_HALF_UP,
Raymond Hettingerbf440692004-07-10 14:14:37 +00005327 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow],
5328 flags=[],
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005329)
5330
Raymond Hettinger9ec3e3b2004-07-03 13:48:56 +00005331ExtendedContext = Context(
Raymond Hettinger6ea48452004-07-03 12:26:21 +00005332 prec=9, rounding=ROUND_HALF_EVEN,
Raymond Hettingerbf440692004-07-10 14:14:37 +00005333 traps=[],
5334 flags=[],
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005335)
5336
5337
Facundo Batista72bc54f2007-11-23 17:59:00 +00005338##### crud for parsing strings #############################################
Mark Dickinson6a123cb2008-02-24 18:12:36 +00005339#
Facundo Batista72bc54f2007-11-23 17:59:00 +00005340# Regular expression used for parsing numeric strings. Additional
5341# comments:
5342#
5343# 1. Uncomment the two '\s*' lines to allow leading and/or trailing
5344# whitespace. But note that the specification disallows whitespace in
5345# a numeric string.
5346#
5347# 2. For finite numbers (not infinities and NaNs) the body of the
5348# number between the optional sign and the optional exponent must have
5349# at least one decimal digit, possibly after the decimal point. The
5350# lookahead expression '(?=\d|\.\d)' checks this.
Facundo Batista72bc54f2007-11-23 17:59:00 +00005351
5352import re
Mark Dickinson70c32892008-07-02 09:37:01 +00005353_parser = re.compile(r""" # A numeric string consists of:
Facundo Batista72bc54f2007-11-23 17:59:00 +00005354# \s*
Mark Dickinson70c32892008-07-02 09:37:01 +00005355 (?P<sign>[-+])? # an optional sign, followed by either...
Facundo Batista72bc54f2007-11-23 17:59:00 +00005356 (
Mark Dickinson9a6e6452009-08-02 11:01:01 +00005357 (?=\d|\.\d) # ...a number (with at least one digit)
5358 (?P<int>\d*) # having a (possibly empty) integer part
5359 (\.(?P<frac>\d*))? # followed by an optional fractional part
5360 (E(?P<exp>[-+]?\d+))? # followed by an optional exponent, or...
Facundo Batista72bc54f2007-11-23 17:59:00 +00005361 |
Mark Dickinson70c32892008-07-02 09:37:01 +00005362 Inf(inity)? # ...an infinity, or...
Facundo Batista72bc54f2007-11-23 17:59:00 +00005363 |
Mark Dickinson70c32892008-07-02 09:37:01 +00005364 (?P<signal>s)? # ...an (optionally signaling)
5365 NaN # NaN
Mark Dickinson9a6e6452009-08-02 11:01:01 +00005366 (?P<diag>\d*) # with (possibly empty) diagnostic info.
Facundo Batista72bc54f2007-11-23 17:59:00 +00005367 )
5368# \s*
Mark Dickinson59bc20b2008-01-12 01:56:00 +00005369 \Z
Mark Dickinson9a6e6452009-08-02 11:01:01 +00005370""", re.VERBOSE | re.IGNORECASE | re.UNICODE).match
Facundo Batista72bc54f2007-11-23 17:59:00 +00005371
Facundo Batista2ec74152007-12-03 17:55:00 +00005372_all_zeros = re.compile('0*$').match
5373_exact_half = re.compile('50*$').match
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005374
5375##### PEP3101 support functions ##############################################
5376# The functions parse_format_specifier and format_align have little to do
5377# with the Decimal class, and could potentially be reused for other pure
5378# Python numeric classes that want to implement __format__
5379#
5380# A format specifier for Decimal looks like:
5381#
5382# [[fill]align][sign][0][minimumwidth][.precision][type]
5383#
5384
5385_parse_format_specifier_regex = re.compile(r"""\A
5386(?:
5387 (?P<fill>.)?
5388 (?P<align>[<>=^])
5389)?
5390(?P<sign>[-+ ])?
5391(?P<zeropad>0)?
5392(?P<minimumwidth>(?!0)\d+)?
5393(?:\.(?P<precision>0|(?!0)\d+))?
5394(?P<type>[eEfFgG%])?
5395\Z
5396""", re.VERBOSE)
5397
Facundo Batista72bc54f2007-11-23 17:59:00 +00005398del re
5399
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005400def _parse_format_specifier(format_spec):
5401 """Parse and validate a format specifier.
5402
5403 Turns a standard numeric format specifier into a dict, with the
5404 following entries:
5405
5406 fill: fill character to pad field to minimum width
5407 align: alignment type, either '<', '>', '=' or '^'
5408 sign: either '+', '-' or ' '
5409 minimumwidth: nonnegative integer giving minimum width
5410 precision: nonnegative integer giving precision, or None
5411 type: one of the characters 'eEfFgG%', or None
5412 unicode: either True or False (always True for Python 3.x)
5413
5414 """
5415 m = _parse_format_specifier_regex.match(format_spec)
5416 if m is None:
5417 raise ValueError("Invalid format specifier: " + format_spec)
5418
5419 # get the dictionary
5420 format_dict = m.groupdict()
5421
5422 # defaults for fill and alignment
5423 fill = format_dict['fill']
5424 align = format_dict['align']
5425 if format_dict.pop('zeropad') is not None:
5426 # in the face of conflict, refuse the temptation to guess
5427 if fill is not None and fill != '0':
5428 raise ValueError("Fill character conflicts with '0'"
5429 " in format specifier: " + format_spec)
5430 if align is not None and align != '=':
5431 raise ValueError("Alignment conflicts with '0' in "
5432 "format specifier: " + format_spec)
5433 fill = '0'
5434 align = '='
5435 format_dict['fill'] = fill or ' '
5436 format_dict['align'] = align or '<'
5437
5438 if format_dict['sign'] is None:
5439 format_dict['sign'] = '-'
5440
5441 # turn minimumwidth and precision entries into integers.
5442 # minimumwidth defaults to 0; precision remains None if not given
5443 format_dict['minimumwidth'] = int(format_dict['minimumwidth'] or '0')
5444 if format_dict['precision'] is not None:
5445 format_dict['precision'] = int(format_dict['precision'])
5446
5447 # if format type is 'g' or 'G' then a precision of 0 makes little
5448 # sense; convert it to 1. Same if format type is unspecified.
5449 if format_dict['precision'] == 0:
Mark Dickinsonc3c112d2009-09-07 16:19:35 +00005450 if format_dict['type'] is None or format_dict['type'] in 'gG':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005451 format_dict['precision'] = 1
5452
5453 # record whether return type should be str or unicode
5454 format_dict['unicode'] = isinstance(format_spec, unicode)
5455
5456 return format_dict
5457
5458def _format_align(body, spec_dict):
5459 """Given an unpadded, non-aligned numeric string, add padding and
5460 aligment to conform with the given format specifier dictionary (as
5461 output from parse_format_specifier).
5462
5463 It's assumed that if body is negative then it starts with '-'.
5464 Any leading sign ('-' or '+') is stripped from the body before
5465 applying the alignment and padding rules, and replaced in the
5466 appropriate position.
5467
5468 """
5469 # figure out the sign; we only examine the first character, so if
5470 # body has leading whitespace the results may be surprising.
5471 if len(body) > 0 and body[0] in '-+':
5472 sign = body[0]
5473 body = body[1:]
5474 else:
5475 sign = ''
5476
5477 if sign != '-':
5478 if spec_dict['sign'] in ' +':
5479 sign = spec_dict['sign']
5480 else:
5481 sign = ''
5482
5483 # how much extra space do we have to play with?
5484 minimumwidth = spec_dict['minimumwidth']
5485 fill = spec_dict['fill']
5486 padding = fill*(max(minimumwidth - (len(sign+body)), 0))
5487
5488 align = spec_dict['align']
5489 if align == '<':
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005490 result = sign + body + padding
Mark Dickinson71416822009-03-17 18:07:41 +00005491 elif align == '>':
5492 result = padding + sign + body
Mark Dickinson1ddf1d82008-02-29 02:16:37 +00005493 elif align == '=':
5494 result = sign + padding + body
5495 else: #align == '^'
5496 half = len(padding)//2
5497 result = padding[:half] + sign + body + padding[half:]
5498
5499 # make sure that result is unicode if necessary
5500 if spec_dict['unicode']:
5501 result = unicode(result)
5502
5503 return result
Facundo Batista72bc54f2007-11-23 17:59:00 +00005504
Facundo Batista59c58842007-04-10 12:58:45 +00005505##### Useful Constants (internal use only) ################################
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005506
Facundo Batista59c58842007-04-10 12:58:45 +00005507# Reusable defaults
Mark Dickinsone4d46b22009-01-03 12:09:22 +00005508_Infinity = Decimal('Inf')
5509_NegativeInfinity = Decimal('-Inf')
Mark Dickinsonfd6032d2009-01-02 23:16:51 +00005510_NaN = Decimal('NaN')
Mark Dickinsone4d46b22009-01-03 12:09:22 +00005511_Zero = Decimal(0)
5512_One = Decimal(1)
5513_NegativeOne = Decimal(-1)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005514
Mark Dickinsone4d46b22009-01-03 12:09:22 +00005515# _SignedInfinity[sign] is infinity w/ that sign
5516_SignedInfinity = (_Infinity, _NegativeInfinity)
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005517
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005518
Raymond Hettinger7c85fa42004-07-01 11:01:35 +00005519
5520if __name__ == '__main__':
5521 import doctest, sys
5522 doctest.testmod(sys.modules[__name__])