2004-07-01 08:01:35 -03:00
|
|
|
# Copyright (c) 2004 Python Software Foundation.
|
|
|
|
# All rights reserved.
|
|
|
|
|
|
|
|
# Written by Eric Price <eprice at tjhsst.edu>
|
|
|
|
# and Facundo Batista <facundo at taniquetil.com.ar>
|
|
|
|
# and Raymond Hettinger <python at rcn.com>
|
2004-07-01 11:28:36 -03:00
|
|
|
# and Aahz <aahz at pobox.com>
|
2004-07-01 08:01:35 -03:00
|
|
|
# and Tim Peters
|
|
|
|
|
2004-08-19 19:39:55 -03:00
|
|
|
# This module is currently Py2.3 compatible and should be kept that way
|
|
|
|
# unless a major compelling advantage arises. IOW, 2.3 compatibility is
|
|
|
|
# strongly preferred, but not guaranteed.
|
|
|
|
|
|
|
|
# Also, this module should be kept in sync with the latest updates of
|
|
|
|
# the IBM specification as it evolves. Those updates will be treated
|
|
|
|
# as bug fixes (deviation from the spec is a compatibility, usability
|
|
|
|
# bug) and will be backported. At this point the spec is stabilizing
|
|
|
|
# and the updates are becoming fewer, smaller, and less significant.
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
"""
|
|
|
|
This is a Py2.3 implementation of decimal floating point arithmetic based on
|
|
|
|
the General Decimal Arithmetic Specification:
|
|
|
|
|
|
|
|
www2.hursley.ibm.com/decimal/decarith.html
|
|
|
|
|
2004-07-04 10:53:24 -03:00
|
|
|
and IEEE standard 854-1987:
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html
|
|
|
|
|
|
|
|
Decimal floating point has finite precision with arbitrarily large bounds.
|
|
|
|
|
|
|
|
The purpose of the module is to support arithmetic using familiar
|
|
|
|
"schoolhouse" rules and to avoid the some of tricky representation
|
|
|
|
issues associated with binary floating point. The package is especially
|
|
|
|
useful for financial applications or for contexts where users have
|
|
|
|
expectations that are at odds with binary floating point (for instance,
|
|
|
|
in binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead
|
|
|
|
of the expected Decimal("0.00") returned by decimal floating point).
|
|
|
|
|
|
|
|
Here are some examples of using the decimal module:
|
|
|
|
|
|
|
|
>>> from decimal import *
|
2004-07-07 21:49:18 -03:00
|
|
|
>>> setcontext(ExtendedContext)
|
2004-07-01 08:01:35 -03:00
|
|
|
>>> Decimal(0)
|
|
|
|
Decimal("0")
|
|
|
|
>>> Decimal("1")
|
|
|
|
Decimal("1")
|
|
|
|
>>> Decimal("-.0123")
|
|
|
|
Decimal("-0.0123")
|
|
|
|
>>> Decimal(123456)
|
|
|
|
Decimal("123456")
|
|
|
|
>>> Decimal("123.45e12345678901234567890")
|
|
|
|
Decimal("1.2345E+12345678901234567892")
|
|
|
|
>>> Decimal("1.33") + Decimal("1.27")
|
|
|
|
Decimal("2.60")
|
|
|
|
>>> Decimal("12.34") + Decimal("3.87") - Decimal("18.41")
|
|
|
|
Decimal("-2.20")
|
|
|
|
>>> dig = Decimal(1)
|
|
|
|
>>> print dig / Decimal(3)
|
|
|
|
0.333333333
|
|
|
|
>>> getcontext().prec = 18
|
|
|
|
>>> print dig / Decimal(3)
|
|
|
|
0.333333333333333333
|
|
|
|
>>> print dig.sqrt()
|
|
|
|
1
|
|
|
|
>>> print Decimal(3).sqrt()
|
|
|
|
1.73205080756887729
|
|
|
|
>>> print Decimal(3) ** 123
|
|
|
|
4.85192780976896427E+58
|
|
|
|
>>> inf = Decimal(1) / Decimal(0)
|
|
|
|
>>> print inf
|
|
|
|
Infinity
|
|
|
|
>>> neginf = Decimal(-1) / Decimal(0)
|
|
|
|
>>> print neginf
|
|
|
|
-Infinity
|
|
|
|
>>> print neginf + inf
|
|
|
|
NaN
|
|
|
|
>>> print neginf * inf
|
|
|
|
-Infinity
|
|
|
|
>>> print dig / 0
|
|
|
|
Infinity
|
2004-07-10 11:14:37 -03:00
|
|
|
>>> getcontext().traps[DivisionByZero] = 1
|
2004-07-01 08:01:35 -03:00
|
|
|
>>> print dig / 0
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
...
|
|
|
|
...
|
|
|
|
DivisionByZero: x / 0
|
|
|
|
>>> c = Context()
|
2004-07-10 11:14:37 -03:00
|
|
|
>>> c.traps[InvalidOperation] = 0
|
2004-07-09 07:02:53 -03:00
|
|
|
>>> print c.flags[InvalidOperation]
|
2004-07-01 08:01:35 -03:00
|
|
|
0
|
|
|
|
>>> c.divide(Decimal(0), Decimal(0))
|
|
|
|
Decimal("NaN")
|
2004-07-10 11:14:37 -03:00
|
|
|
>>> c.traps[InvalidOperation] = 1
|
2004-07-09 07:02:53 -03:00
|
|
|
>>> print c.flags[InvalidOperation]
|
2004-07-01 08:01:35 -03:00
|
|
|
1
|
2004-07-09 07:02:53 -03:00
|
|
|
>>> c.flags[InvalidOperation] = 0
|
|
|
|
>>> print c.flags[InvalidOperation]
|
2004-07-01 08:01:35 -03:00
|
|
|
0
|
|
|
|
>>> print c.divide(Decimal(0), Decimal(0))
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
...
|
|
|
|
...
|
2004-07-09 07:02:53 -03:00
|
|
|
InvalidOperation: 0 / 0
|
|
|
|
>>> print c.flags[InvalidOperation]
|
2004-07-01 08:01:35 -03:00
|
|
|
1
|
2004-07-09 07:02:53 -03:00
|
|
|
>>> c.flags[InvalidOperation] = 0
|
2004-07-10 11:14:37 -03:00
|
|
|
>>> c.traps[InvalidOperation] = 0
|
2004-07-01 08:01:35 -03:00
|
|
|
>>> print c.divide(Decimal(0), Decimal(0))
|
|
|
|
NaN
|
2004-07-09 07:02:53 -03:00
|
|
|
>>> print c.flags[InvalidOperation]
|
2004-07-01 08:01:35 -03:00
|
|
|
1
|
|
|
|
>>>
|
|
|
|
"""
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
# Two major classes
|
|
|
|
'Decimal', 'Context',
|
|
|
|
|
|
|
|
# Contexts
|
2004-07-03 10:48:56 -03:00
|
|
|
'DefaultContext', 'BasicContext', 'ExtendedContext',
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
# Exceptions
|
2004-07-09 07:52:54 -03:00
|
|
|
'DecimalException', 'Clamped', 'InvalidOperation', 'DivisionByZero',
|
|
|
|
'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
# Constants for use in setting up contexts
|
|
|
|
'ROUND_DOWN', 'ROUND_HALF_UP', 'ROUND_HALF_EVEN', 'ROUND_CEILING',
|
|
|
|
'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN',
|
|
|
|
|
|
|
|
# Functions for manipulating contexts
|
2004-07-04 10:53:24 -03:00
|
|
|
'setcontext', 'getcontext'
|
2004-07-01 08:01:35 -03:00
|
|
|
]
|
|
|
|
|
2005-06-07 15:52:34 -03:00
|
|
|
import copy as _copy
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
#Rounding
|
2004-07-04 10:53:24 -03:00
|
|
|
ROUND_DOWN = 'ROUND_DOWN'
|
|
|
|
ROUND_HALF_UP = 'ROUND_HALF_UP'
|
|
|
|
ROUND_HALF_EVEN = 'ROUND_HALF_EVEN'
|
|
|
|
ROUND_CEILING = 'ROUND_CEILING'
|
|
|
|
ROUND_FLOOR = 'ROUND_FLOOR'
|
|
|
|
ROUND_UP = 'ROUND_UP'
|
|
|
|
ROUND_HALF_DOWN = 'ROUND_HALF_DOWN'
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
#Rounding decision (not part of the public API)
|
2004-07-04 10:53:24 -03:00
|
|
|
NEVER_ROUND = 'NEVER_ROUND' # Round in division (non-divmod), sqrt ONLY
|
|
|
|
ALWAYS_ROUND = 'ALWAYS_ROUND' # Every operation rounds at end.
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
#Errors
|
|
|
|
|
|
|
|
class DecimalException(ArithmeticError):
|
2004-07-09 07:02:53 -03:00
|
|
|
"""Base exception class.
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
Used exceptions derive from this.
|
|
|
|
If an exception derives from another exception besides this (such as
|
|
|
|
Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
|
|
|
|
called if the others are present. This isn't actually used for
|
|
|
|
anything, though.
|
|
|
|
|
|
|
|
handle -- Called when context._raise_error is called and the
|
|
|
|
trap_enabler is set. First argument is self, second is the
|
|
|
|
context. More arguments can be given, those being after
|
|
|
|
the explanation in _raise_error (For example,
|
|
|
|
context._raise_error(NewError, '(-x)!', self._sign) would
|
|
|
|
call NewError().handle(context, self._sign).)
|
|
|
|
|
|
|
|
To define a new exception, it should be sufficient to have it derive
|
|
|
|
from DecimalException.
|
|
|
|
"""
|
|
|
|
def handle(self, context, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Clamped(DecimalException):
|
|
|
|
"""Exponent of a 0 changed to fit bounds.
|
|
|
|
|
|
|
|
This occurs and signals clamped if the exponent of a result has been
|
|
|
|
altered in order to fit the constraints of a specific concrete
|
|
|
|
representation. This may occur when the exponent of a zero result would
|
|
|
|
be outside the bounds of a representation, or when a large normal
|
|
|
|
number would have an encoded exponent that cannot be represented. In
|
|
|
|
this latter case, the exponent is reduced to fit and the corresponding
|
|
|
|
number of zero digits are appended to the coefficient ("fold-down").
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidOperation(DecimalException):
|
|
|
|
"""An invalid operation was performed.
|
|
|
|
|
|
|
|
Various bad things cause this:
|
|
|
|
|
|
|
|
Something creates a signaling NaN
|
|
|
|
-INF + INF
|
|
|
|
0 * (+-)INF
|
|
|
|
(+-)INF / (+-)INF
|
|
|
|
x % 0
|
|
|
|
(+-)INF % x
|
|
|
|
x._rescale( non-integer )
|
|
|
|
sqrt(-x) , x > 0
|
|
|
|
0 ** 0
|
|
|
|
x ** (non-integer)
|
|
|
|
x ** (+-)INF
|
|
|
|
An operand is invalid
|
|
|
|
"""
|
|
|
|
def handle(self, context, *args):
|
|
|
|
if args:
|
|
|
|
if args[0] == 1: #sNaN, must drop 's' but keep diagnostics
|
|
|
|
return Decimal( (args[1]._sign, args[1]._int, 'n') )
|
|
|
|
return NaN
|
|
|
|
|
|
|
|
class ConversionSyntax(InvalidOperation):
|
|
|
|
"""Trying to convert badly formed string.
|
|
|
|
|
|
|
|
This occurs and signals invalid-operation if an string is being
|
|
|
|
converted to a number and it does not conform to the numeric string
|
|
|
|
syntax. The result is [0,qNaN].
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self, context, *args):
|
|
|
|
return (0, (0,), 'n') #Passed to something which uses a tuple.
|
|
|
|
|
|
|
|
class DivisionByZero(DecimalException, ZeroDivisionError):
|
|
|
|
"""Division by 0.
|
|
|
|
|
|
|
|
This occurs and signals division-by-zero if division of a finite number
|
|
|
|
by zero was attempted (during a divide-integer or divide operation, or a
|
|
|
|
power operation with negative right-hand operand), and the dividend was
|
|
|
|
not zero.
|
|
|
|
|
|
|
|
The result of the operation is [sign,inf], where sign is the exclusive
|
|
|
|
or of the signs of the operands for divide, or is 1 for an odd power of
|
|
|
|
-0, for power.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self, context, sign, double = None, *args):
|
|
|
|
if double is not None:
|
|
|
|
return (Infsign[sign],)*2
|
|
|
|
return Infsign[sign]
|
|
|
|
|
|
|
|
class DivisionImpossible(InvalidOperation):
|
|
|
|
"""Cannot perform the division adequately.
|
|
|
|
|
|
|
|
This occurs and signals invalid-operation if the integer result of a
|
|
|
|
divide-integer or remainder operation had too many digits (would be
|
|
|
|
longer than precision). The result is [0,qNaN].
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self, context, *args):
|
|
|
|
return (NaN, NaN)
|
|
|
|
|
|
|
|
class DivisionUndefined(InvalidOperation, ZeroDivisionError):
|
|
|
|
"""Undefined result of division.
|
|
|
|
|
|
|
|
This occurs and signals invalid-operation if division by zero was
|
|
|
|
attempted (during a divide-integer, divide, or remainder operation), and
|
|
|
|
the dividend is also zero. The result is [0,qNaN].
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self, context, tup=None, *args):
|
|
|
|
if tup is not None:
|
|
|
|
return (NaN, NaN) #for 0 %0, 0 // 0
|
|
|
|
return NaN
|
|
|
|
|
|
|
|
class Inexact(DecimalException):
|
|
|
|
"""Had to round, losing information.
|
|
|
|
|
|
|
|
This occurs and signals inexact whenever the result of an operation is
|
|
|
|
not exact (that is, it needed to be rounded and any discarded digits
|
|
|
|
were non-zero), or if an overflow or underflow condition occurs. The
|
|
|
|
result in all cases is unchanged.
|
|
|
|
|
|
|
|
The inexact signal may be tested (or trapped) to determine if a given
|
|
|
|
operation (or sequence of operations) was inexact.
|
|
|
|
"""
|
2004-07-09 07:02:53 -03:00
|
|
|
pass
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
class InvalidContext(InvalidOperation):
|
|
|
|
"""Invalid context. Unknown rounding, for example.
|
|
|
|
|
|
|
|
This occurs and signals invalid-operation if an invalid context was
|
|
|
|
detected during an operation. This can occur if contexts are not checked
|
|
|
|
on creation and either the precision exceeds the capability of the
|
|
|
|
underlying concrete representation or an unknown or unsupported rounding
|
|
|
|
was specified. These aspects of the context need only be checked when
|
|
|
|
the values are required to be used. The result is [0,qNaN].
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self, context, *args):
|
|
|
|
return NaN
|
|
|
|
|
|
|
|
class Rounded(DecimalException):
|
|
|
|
"""Number got rounded (not necessarily changed during rounding).
|
|
|
|
|
|
|
|
This occurs and signals rounded whenever the result of an operation is
|
|
|
|
rounded (that is, some zero or non-zero digits were discarded from the
|
|
|
|
coefficient), or if an overflow or underflow condition occurs. The
|
|
|
|
result in all cases is unchanged.
|
|
|
|
|
|
|
|
The rounded signal may be tested (or trapped) to determine if a given
|
|
|
|
operation (or sequence of operations) caused a loss of precision.
|
|
|
|
"""
|
2004-07-09 07:02:53 -03:00
|
|
|
pass
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
class Subnormal(DecimalException):
|
|
|
|
"""Exponent < Emin before rounding.
|
|
|
|
|
|
|
|
This occurs and signals subnormal whenever the result of a conversion or
|
|
|
|
operation is subnormal (that is, its adjusted exponent is less than
|
|
|
|
Emin, before any rounding). The result in all cases is unchanged.
|
|
|
|
|
|
|
|
The subnormal signal may be tested (or trapped) to determine if a given
|
|
|
|
or operation (or sequence of operations) yielded a subnormal result.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
class Overflow(Inexact, Rounded):
|
|
|
|
"""Numerical overflow.
|
|
|
|
|
|
|
|
This occurs and signals overflow if the adjusted exponent of a result
|
|
|
|
(from a conversion or from an operation that is not an attempt to divide
|
|
|
|
by zero), after rounding, would be greater than the largest value that
|
|
|
|
can be handled by the implementation (the value Emax).
|
|
|
|
|
|
|
|
The result depends on the rounding mode:
|
|
|
|
|
|
|
|
For round-half-up and round-half-even (and for round-half-down and
|
|
|
|
round-up, if implemented), the result of the operation is [sign,inf],
|
|
|
|
where sign is the sign of the intermediate result. For round-down, the
|
|
|
|
result is the largest finite number that can be represented in the
|
|
|
|
current precision, with the sign of the intermediate result. For
|
|
|
|
round-ceiling, the result is the same as for round-down if the sign of
|
|
|
|
the intermediate result is 1, or is [0,inf] otherwise. For round-floor,
|
|
|
|
the result is the same as for round-down if the sign of the intermediate
|
|
|
|
result is 0, or is [1,inf] otherwise. In all cases, Inexact and Rounded
|
|
|
|
will also be raised.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self, context, sign, *args):
|
|
|
|
if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN,
|
|
|
|
ROUND_HALF_DOWN, ROUND_UP):
|
|
|
|
return Infsign[sign]
|
|
|
|
if sign == 0:
|
|
|
|
if context.rounding == ROUND_CEILING:
|
|
|
|
return Infsign[sign]
|
|
|
|
return Decimal((sign, (9,)*context.prec,
|
|
|
|
context.Emax-context.prec+1))
|
|
|
|
if sign == 1:
|
|
|
|
if context.rounding == ROUND_FLOOR:
|
|
|
|
return Infsign[sign]
|
|
|
|
return Decimal( (sign, (9,)*context.prec,
|
|
|
|
context.Emax-context.prec+1))
|
|
|
|
|
|
|
|
|
|
|
|
class Underflow(Inexact, Rounded, Subnormal):
|
|
|
|
"""Numerical underflow with result rounded to 0.
|
|
|
|
|
|
|
|
This occurs and signals underflow if a result is inexact and the
|
|
|
|
adjusted exponent of the result would be smaller (more negative) than
|
|
|
|
the smallest value that can be handled by the implementation (the value
|
|
|
|
Emin). That is, the result is both inexact and subnormal.
|
|
|
|
|
|
|
|
The result after an underflow will be a subnormal number rounded, if
|
|
|
|
necessary, so that its exponent is not less than Etiny. This may result
|
|
|
|
in 0 with the sign of the intermediate result and an exponent of Etiny.
|
|
|
|
|
|
|
|
In all cases, Inexact, Rounded, and Subnormal will also be raised.
|
|
|
|
"""
|
|
|
|
|
2004-07-09 07:02:53 -03:00
|
|
|
# List of public traps and flags
|
2004-07-14 12:41:57 -03:00
|
|
|
_signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
|
2004-07-09 07:02:53 -03:00
|
|
|
Underflow, InvalidOperation, Subnormal]
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-07-09 07:02:53 -03:00
|
|
|
# Map conditions (per the spec) to signals
|
|
|
|
_condition_map = {ConversionSyntax:InvalidOperation,
|
|
|
|
DivisionImpossible:InvalidOperation,
|
|
|
|
DivisionUndefined:InvalidOperation,
|
|
|
|
InvalidContext:InvalidOperation}
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
##### Context Functions #######################################
|
|
|
|
|
2004-07-14 18:04:27 -03:00
|
|
|
# The getcontext() and setcontext() function manage access to a thread-local
|
|
|
|
# current context. Py2.4 offers direct support for thread locals. If that
|
|
|
|
# is not available, use threading.currentThread() which is slower but will
|
2004-12-18 15:07:19 -04:00
|
|
|
# work for older Pythons. If threads are not part of the build, create a
|
|
|
|
# mock threading object with threading.local() returning the module namespace.
|
|
|
|
|
|
|
|
try:
|
|
|
|
import threading
|
|
|
|
except ImportError:
|
|
|
|
# Python was compiled without threads; create a mock object instead
|
|
|
|
import sys
|
|
|
|
class MockThreading:
|
|
|
|
def local(self, sys=sys):
|
|
|
|
return sys.modules[__name__]
|
|
|
|
threading = MockThreading()
|
|
|
|
del sys, MockThreading
|
2004-07-14 18:04:27 -03:00
|
|
|
|
|
|
|
try:
|
|
|
|
threading.local
|
|
|
|
|
|
|
|
except AttributeError:
|
|
|
|
|
|
|
|
#To fix reloading, force it to create a new context
|
|
|
|
#Old contexts have different exceptions in their dicts, making problems.
|
|
|
|
if hasattr(threading.currentThread(), '__decimal_context__'):
|
|
|
|
del threading.currentThread().__decimal_context__
|
|
|
|
|
|
|
|
def setcontext(context):
|
|
|
|
"""Set this thread's context to context."""
|
|
|
|
if context in (DefaultContext, BasicContext, ExtendedContext):
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context.copy()
|
2004-08-06 20:42:16 -03:00
|
|
|
context.clear_flags()
|
2004-07-01 08:01:35 -03:00
|
|
|
threading.currentThread().__decimal_context__ = context
|
2004-07-14 18:04:27 -03:00
|
|
|
|
|
|
|
def getcontext():
|
|
|
|
"""Returns this thread's context.
|
|
|
|
|
|
|
|
If this thread does not yet have a context, returns
|
|
|
|
a new context and sets this thread's context.
|
|
|
|
New contexts are copies of DefaultContext.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return threading.currentThread().__decimal_context__
|
|
|
|
except AttributeError:
|
|
|
|
context = Context()
|
|
|
|
threading.currentThread().__decimal_context__ = context
|
|
|
|
return context
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
local = threading.local()
|
2004-08-08 01:03:24 -03:00
|
|
|
if hasattr(local, '__decimal_context__'):
|
|
|
|
del local.__decimal_context__
|
2004-07-14 18:04:27 -03:00
|
|
|
|
|
|
|
def getcontext(_local=local):
|
|
|
|
"""Returns this thread's context.
|
|
|
|
|
|
|
|
If this thread does not yet have a context, returns
|
|
|
|
a new context and sets this thread's context.
|
|
|
|
New contexts are copies of DefaultContext.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return _local.__decimal_context__
|
|
|
|
except AttributeError:
|
|
|
|
context = Context()
|
|
|
|
_local.__decimal_context__ = context
|
|
|
|
return context
|
|
|
|
|
|
|
|
def setcontext(context, _local=local):
|
|
|
|
"""Set this thread's context to context."""
|
|
|
|
if context in (DefaultContext, BasicContext, ExtendedContext):
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context.copy()
|
2004-08-06 20:42:16 -03:00
|
|
|
context.clear_flags()
|
2004-07-14 18:04:27 -03:00
|
|
|
_local.__decimal_context__ = context
|
|
|
|
|
|
|
|
del threading, local # Don't contaminate the namespace
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
|
|
|
|
##### Decimal class ###########################################
|
|
|
|
|
|
|
|
class Decimal(object):
|
|
|
|
"""Floating point class for decimal arithmetic."""
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
__slots__ = ('_exp','_int','_sign', '_is_special')
|
|
|
|
# Generally, the value of the Decimal instance is given by
|
|
|
|
# (-1)**_sign * _int * 10**_exp
|
|
|
|
# Special values are signified by _is_special == True
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
# We're immutable, so use __new__ not __init__
|
2004-09-18 22:54:09 -03:00
|
|
|
def __new__(cls, value="0", context=None):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Create a decimal point instance.
|
|
|
|
|
|
|
|
>>> Decimal('3.14') # string input
|
|
|
|
Decimal("3.14")
|
|
|
|
>>> Decimal((0, (3, 1, 4), -2)) # tuple input (sign, digit_tuple, exponent)
|
|
|
|
Decimal("3.14")
|
|
|
|
>>> Decimal(314) # int or long
|
|
|
|
Decimal("314")
|
|
|
|
>>> Decimal(Decimal(314)) # another decimal instance
|
|
|
|
Decimal("314")
|
|
|
|
"""
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
self = object.__new__(cls)
|
|
|
|
self._is_special = False
|
|
|
|
|
|
|
|
# From an internal working value
|
|
|
|
if isinstance(value, _WorkRep):
|
2004-10-27 03:21:46 -03:00
|
|
|
self._sign = value.sign
|
2004-09-18 22:54:09 -03:00
|
|
|
self._int = tuple(map(int, str(value.int)))
|
|
|
|
self._exp = int(value.exp)
|
|
|
|
return self
|
|
|
|
|
|
|
|
# From another decimal
|
|
|
|
if isinstance(value, Decimal):
|
|
|
|
self._exp = value._exp
|
|
|
|
self._sign = value._sign
|
|
|
|
self._int = value._int
|
|
|
|
self._is_special = value._is_special
|
|
|
|
return self
|
|
|
|
|
|
|
|
# From an integer
|
2004-07-01 08:01:35 -03:00
|
|
|
if isinstance(value, (int,long)):
|
2004-09-18 22:54:09 -03:00
|
|
|
if value >= 0:
|
|
|
|
self._sign = 0
|
|
|
|
else:
|
|
|
|
self._sign = 1
|
|
|
|
self._exp = 0
|
|
|
|
self._int = tuple(map(int, str(abs(value))))
|
|
|
|
return self
|
|
|
|
|
|
|
|
# tuple/list conversion (possibly from as_tuple())
|
|
|
|
if isinstance(value, (list,tuple)):
|
|
|
|
if len(value) != 3:
|
|
|
|
raise ValueError, 'Invalid arguments'
|
2005-02-06 02:57:08 -04:00
|
|
|
if value[0] not in (0,1):
|
2004-09-18 22:54:09 -03:00
|
|
|
raise ValueError, 'Invalid sign'
|
|
|
|
for digit in value[1]:
|
|
|
|
if not isinstance(digit, (int,long)) or digit < 0:
|
|
|
|
raise ValueError, "The second value in the tuple must be composed of non negative integer elements."
|
|
|
|
|
|
|
|
self._sign = value[0]
|
|
|
|
self._int = tuple(value[1])
|
|
|
|
if value[2] in ('F','n','N'):
|
|
|
|
self._exp = value[2]
|
|
|
|
self._is_special = True
|
|
|
|
else:
|
|
|
|
self._exp = int(value[2])
|
|
|
|
return self
|
|
|
|
|
|
|
|
if isinstance(value, float):
|
|
|
|
raise TypeError("Cannot convert float to Decimal. " +
|
|
|
|
"First convert the float to a string")
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
# Other argument types may require the context during interpretation
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
|
|
|
# From a string
|
2004-07-01 08:01:35 -03:00
|
|
|
# REs insist on real strings, so we can too.
|
|
|
|
if isinstance(value, basestring):
|
2004-07-04 10:53:24 -03:00
|
|
|
if _isinfinity(value):
|
2004-07-01 08:01:35 -03:00
|
|
|
self._exp = 'F'
|
|
|
|
self._int = (0,)
|
2004-09-18 22:54:09 -03:00
|
|
|
self._is_special = True
|
|
|
|
if _isinfinity(value) == 1:
|
2004-07-01 08:01:35 -03:00
|
|
|
self._sign = 0
|
|
|
|
else:
|
|
|
|
self._sign = 1
|
2004-09-18 22:54:09 -03:00
|
|
|
return self
|
2004-07-04 10:53:24 -03:00
|
|
|
if _isnan(value):
|
|
|
|
sig, sign, diag = _isnan(value)
|
2004-09-18 22:54:09 -03:00
|
|
|
self._is_special = True
|
2004-07-01 08:01:35 -03:00
|
|
|
if len(diag) > context.prec: #Diagnostic info too long
|
|
|
|
self._sign, self._int, self._exp = \
|
|
|
|
context._raise_error(ConversionSyntax)
|
2004-09-18 22:54:09 -03:00
|
|
|
return self
|
2004-07-01 08:01:35 -03:00
|
|
|
if sig == 1:
|
|
|
|
self._exp = 'n' #qNaN
|
|
|
|
else: #sig == 2
|
|
|
|
self._exp = 'N' #sNaN
|
|
|
|
self._sign = sign
|
|
|
|
self._int = tuple(map(int, diag)) #Diagnostic info
|
2004-09-18 22:54:09 -03:00
|
|
|
return self
|
2004-07-03 07:02:28 -03:00
|
|
|
try:
|
|
|
|
self._sign, self._int, self._exp = _string2exact(value)
|
|
|
|
except ValueError:
|
2004-09-18 22:54:09 -03:00
|
|
|
self._is_special = True
|
2004-07-03 07:02:28 -03:00
|
|
|
self._sign, self._int, self._exp = context._raise_error(ConversionSyntax)
|
2004-09-18 22:54:09 -03:00
|
|
|
return self
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
raise TypeError("Cannot convert %r to Decimal" % value)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def _isnan(self):
|
|
|
|
"""Returns whether the number is not actually one.
|
|
|
|
|
|
|
|
0 if a number
|
|
|
|
1 if NaN
|
|
|
|
2 if sNaN
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
exp = self._exp
|
|
|
|
if exp == 'n':
|
|
|
|
return 1
|
|
|
|
elif exp == 'N':
|
|
|
|
return 2
|
2004-07-01 08:01:35 -03:00
|
|
|
return 0
|
|
|
|
|
|
|
|
def _isinfinity(self):
|
|
|
|
"""Returns whether the number is infinite
|
|
|
|
|
|
|
|
0 if finite or not a number
|
|
|
|
1 if +INF
|
|
|
|
-1 if -INF
|
|
|
|
"""
|
|
|
|
if self._exp == 'F':
|
|
|
|
if self._sign:
|
|
|
|
return -1
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def _check_nans(self, other = None, context=None):
|
|
|
|
"""Returns whether the number is not actually one.
|
|
|
|
|
|
|
|
if self, other are sNaN, signal
|
|
|
|
if self, other are NaN return nan
|
|
|
|
return 0
|
|
|
|
|
|
|
|
Done before operations.
|
|
|
|
"""
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
self_is_nan = self._isnan()
|
|
|
|
if other is None:
|
|
|
|
other_is_nan = False
|
|
|
|
else:
|
|
|
|
other_is_nan = other._isnan()
|
|
|
|
|
|
|
|
if self_is_nan or other_is_nan:
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
|
|
|
if self_is_nan == 2:
|
|
|
|
return context._raise_error(InvalidOperation, 'sNaN',
|
|
|
|
1, self)
|
|
|
|
if other_is_nan == 2:
|
|
|
|
return context._raise_error(InvalidOperation, 'sNaN',
|
|
|
|
1, other)
|
|
|
|
if self_is_nan:
|
|
|
|
return self
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
return other
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def __nonzero__(self):
|
|
|
|
"""Is the number non-zero?
|
|
|
|
|
|
|
|
0 if self == 0
|
|
|
|
1 if self != 0
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
2004-07-01 08:01:35 -03:00
|
|
|
return 1
|
2004-09-18 22:54:09 -03:00
|
|
|
return sum(self._int) != 0
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def __cmp__(self, other, context=None):
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
return 1 # Comparison involving NaN's always reports self > other
|
|
|
|
|
|
|
|
# INF = INF
|
|
|
|
return cmp(self._isinfinity(), other._isinfinity())
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if not self and not other:
|
|
|
|
return 0 #If both 0, sign comparison isn't certain.
|
|
|
|
|
|
|
|
#If different signs, neg one is less
|
|
|
|
if other._sign < self._sign:
|
|
|
|
return -1
|
|
|
|
if self._sign < other._sign:
|
|
|
|
return 1
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
self_adjusted = self.adjusted()
|
|
|
|
other_adjusted = other.adjusted()
|
|
|
|
if self_adjusted == other_adjusted and \
|
2004-07-01 08:01:35 -03:00
|
|
|
self._int + (0,)*(self._exp - other._exp) == \
|
|
|
|
other._int + (0,)*(other._exp - self._exp):
|
|
|
|
return 0 #equal, except in precision. ([0]*(-x) = [])
|
2004-09-18 22:54:09 -03:00
|
|
|
elif self_adjusted > other_adjusted and self._int[0] != 0:
|
2004-07-01 08:01:35 -03:00
|
|
|
return (-1)**self._sign
|
2004-09-18 22:54:09 -03:00
|
|
|
elif self_adjusted < other_adjusted and other._int[0] != 0:
|
2004-07-01 08:01:35 -03:00
|
|
|
return -((-1)**self._sign)
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
# Need to round, so make sure we have a valid context
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
rounding = context._set_rounding(ROUND_UP) #round away from 0
|
|
|
|
|
|
|
|
flags = context._ignore_all_flags()
|
|
|
|
res = self.__sub__(other, context=context)
|
|
|
|
|
|
|
|
context._regard_flags(*flags)
|
|
|
|
|
|
|
|
context.rounding = rounding
|
|
|
|
|
|
|
|
if not res:
|
|
|
|
return 0
|
|
|
|
elif res._sign:
|
|
|
|
return -1
|
|
|
|
return 1
|
|
|
|
|
2004-07-05 19:53:03 -03:00
|
|
|
def __eq__(self, other):
|
|
|
|
if not isinstance(other, (Decimal, int, long)):
|
2005-03-27 06:47:39 -04:00
|
|
|
return NotImplemented
|
2004-07-05 19:53:03 -03:00
|
|
|
return self.__cmp__(other) == 0
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
if not isinstance(other, (Decimal, int, long)):
|
2005-03-27 06:47:39 -04:00
|
|
|
return NotImplemented
|
2004-07-05 19:53:03 -03:00
|
|
|
return self.__cmp__(other) != 0
|
|
|
|
|
2006-08-23 21:41:19 -03:00
|
|
|
def __lt__(self, other):
|
|
|
|
if not isinstance(other, (Decimal, int, long)):
|
|
|
|
return NotImplemented
|
|
|
|
return self.__cmp__(other) < 0
|
|
|
|
|
|
|
|
def __le__(self, other):
|
|
|
|
if not isinstance(other, (Decimal, int, long)):
|
|
|
|
return NotImplemented
|
|
|
|
return self.__cmp__(other) <= 0
|
|
|
|
|
|
|
|
def __gt__(self, other):
|
|
|
|
if not isinstance(other, (Decimal, int, long)):
|
|
|
|
return NotImplemented
|
|
|
|
return self.__cmp__(other) > 0
|
|
|
|
|
|
|
|
def __ge__(self, other):
|
|
|
|
if not isinstance(other, (Decimal, int, long)):
|
|
|
|
return NotImplemented
|
|
|
|
return self.__cmp__(other) >= 0
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
def compare(self, other, context=None):
|
|
|
|
"""Compares one to another.
|
|
|
|
|
|
|
|
-1 => a < b
|
|
|
|
0 => a = b
|
|
|
|
1 => a > b
|
|
|
|
NaN => one is NaN
|
|
|
|
Like __cmp__, but returns Decimal instances.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
#compare(NaN, NaN) = NaN
|
2004-09-18 22:54:09 -03:00
|
|
|
if (self._is_special or other and other._is_special):
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
return Decimal(self.__cmp__(other, context))
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
"""x.__hash__() <==> hash(x)"""
|
|
|
|
# Decimal integers must hash the same as the ints
|
|
|
|
# Non-integer decimals are normalized and hashed as strings
|
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Inherits test_gzip/test_tarfile failures on 64-bit platforms from the trunk,
but I don't want the merge to hang around too long (even though the regular
p3yk-contributors are/have been busy with other things.)
Merged revisions 45621-46490 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r45621 | george.yoshida | 2006-04-21 18:34:17 +0200 (Fri, 21 Apr 2006) | 2 lines
Correct the grammar
........
r45622 | tim.peters | 2006-04-21 18:34:54 +0200 (Fri, 21 Apr 2006) | 2 lines
Whitespace normalization.
........
r45624 | thomas.heller | 2006-04-21 18:48:56 +0200 (Fri, 21 Apr 2006) | 1 line
Merge in changes from ctypes 0.9.9.6 upstream version.
........
r45625 | thomas.heller | 2006-04-21 18:51:04 +0200 (Fri, 21 Apr 2006) | 1 line
Merge in changes from ctypes 0.9.9.6 upstream version.
........
r45630 | thomas.heller | 2006-04-21 20:29:17 +0200 (Fri, 21 Apr 2006) | 8 lines
Documentation for ctypes.
I think that 'generic operating system services' is the best category.
Note that the Doc/lib/libctypes.latex file is generated from reST sources.
You are welcome to make typo fixes, and I'll try to keep the reST sources
in sync, but markup changes would be lost - they should be fixed in the tool
that creates the latex file.
The conversion script is external/ctypes/docs/manual/mkpydoc.py.
........
r45631 | tim.peters | 2006-04-21 23:18:10 +0200 (Fri, 21 Apr 2006) | 24 lines
SF bug #1473760 TempFile can hang on Windows.
Python 2.4 changed ntpath.abspath to do an import
inside the function. As a result, due to Python's
import lock, anything calling abspath on Windows
(directly, or indirectly like tempfile.TemporaryFile)
hung when it was called from a thread spawned as a
side effect of importing a module.
This is a depressingly frequent problem, and
deserves a more general fix. I'm settling for
a micro-fix here because this specific one accounts
for a report of Zope Corp's ZEO hanging on Windows,
and it was an odd way to change abspath to begin
with (ntpath needs a different implementation
depending on whether we're actually running on
Windows, and the _obvious_ way to arrange for that
is not to bury a possibly-failing import _inside_
the function).
Note that if/when other micro-fixes of this kind
get made, the new Lib/test/threaded_import_hangers.py
is a convenient place to add tests for them.
........
r45634 | phillip.eby | 2006-04-21 23:53:37 +0200 (Fri, 21 Apr 2006) | 2 lines
Guido wrote contextlib, not me, but thanks anyway. ;)
........
r45636 | andrew.kuchling | 2006-04-22 03:51:41 +0200 (Sat, 22 Apr 2006) | 1 line
Typo fixes
........
r45638 | andrew.kuchling | 2006-04-22 03:58:40 +0200 (Sat, 22 Apr 2006) | 1 line
Fix comment typo
........
r45639 | andrew.kuchling | 2006-04-22 04:06:03 +0200 (Sat, 22 Apr 2006) | 8 lines
Make copy of test_mailbox.py. We'll still want to check the backward
compatibility classes in the new mailbox.py that I'll be committing in
a few minutes.
One change has been made: the tests use len(mbox) instead of len(mbox.boxes).
The 'boxes' attribute was never documented and contains some internal state
that seems unlikely to have been useful.
........
r45640 | andrew.kuchling | 2006-04-22 04:32:43 +0200 (Sat, 22 Apr 2006) | 16 lines
Add Gregory K. Johnson's revised version of mailbox.py (funded by
the 2005 Summer of Code).
The revision adds a number of new mailbox classes that support adding
and removing messages; these classes also support mailbox locking and
default to using email.Message instead of rfc822.Message.
The old mailbox classes are largely left alone for backward compatibility.
The exception is the Maildir class, which was present in the old module
and now inherits from the new classes. The Maildir class's interface
is pretty simple, though, so I think it'll be compatible with existing
code.
(The change to the NEWS file also adds a missing word to a different
news item, which unfortunately required rewrapping the line.)
........
r45641 | tim.peters | 2006-04-22 07:52:59 +0200 (Sat, 22 Apr 2006) | 2 lines
Whitespace normalization.
........
r45642 | neal.norwitz | 2006-04-22 08:07:46 +0200 (Sat, 22 Apr 2006) | 1 line
Add libctypes as a dep
........
r45643 | martin.v.loewis | 2006-04-22 13:15:41 +0200 (Sat, 22 Apr 2006) | 1 line
Fix more ssize_t problems.
........
r45644 | martin.v.loewis | 2006-04-22 13:40:03 +0200 (Sat, 22 Apr 2006) | 1 line
Fix more ssize_t issues.
........
r45645 | george.yoshida | 2006-04-22 17:10:49 +0200 (Sat, 22 Apr 2006) | 2 lines
Typo fixes
........
r45647 | martin.v.loewis | 2006-04-22 17:19:54 +0200 (Sat, 22 Apr 2006) | 1 line
Port to Python 2.5. Drop .DEF file. Change output file names to .pyd.
........
r45648 | george.yoshida | 2006-04-22 17:27:14 +0200 (Sat, 22 Apr 2006) | 3 lines
- add versionadded tag
- make arbitrary arguments come last
........
r45649 | hyeshik.chang | 2006-04-22 17:48:15 +0200 (Sat, 22 Apr 2006) | 3 lines
Remove $CJKCodecs$ RCS tags. The CJKCodecs isn't maintained outside
anymore.
........
r45654 | greg.ward | 2006-04-23 05:47:58 +0200 (Sun, 23 Apr 2006) | 2 lines
Update optparse to Optik 1.5.1.
........
r45658 | george.yoshida | 2006-04-23 11:27:10 +0200 (Sun, 23 Apr 2006) | 2 lines
wrap SyntaxError with \exception{}
........
r45660 | ronald.oussoren | 2006-04-23 13:59:25 +0200 (Sun, 23 Apr 2006) | 6 lines
Patch 1471925 - Weak linking support for OSX
This patch causes several symbols in the socket and posix module to be weakly
linked on OSX and disables usage of ftime on OSX. These changes make it possible
to use a binary build on OSX 10.4 on a 10.3 system.
........
r45661 | ronald.oussoren | 2006-04-23 14:36:23 +0200 (Sun, 23 Apr 2006) | 5 lines
Patch 1471761 - test for broken poll at runtime
This patch checks if poll is broken when the select module is loaded instead
of doing so at configure-time. This functionality is only active on Mac OS X.
........
r45662 | nick.coghlan | 2006-04-23 17:13:32 +0200 (Sun, 23 Apr 2006) | 1 line
Add a Context Types section to parallel the Iterator Types section (uses the same terminology as the 2.5a1 implementation)
........
r45663 | nick.coghlan | 2006-04-23 17:14:37 +0200 (Sun, 23 Apr 2006) | 1 line
Update contextlib documentation to use the same terminology as the module implementation
........
r45664 | gerhard.haering | 2006-04-23 17:24:26 +0200 (Sun, 23 Apr 2006) | 2 lines
Updated the sqlite3 module to the external pysqlite 2.2.2 version.
........
r45666 | nick.coghlan | 2006-04-23 17:39:16 +0200 (Sun, 23 Apr 2006) | 1 line
Update with statement documentation to use same terminology as 2.5a1 implementation
........
r45667 | nick.coghlan | 2006-04-23 18:05:04 +0200 (Sun, 23 Apr 2006) | 1 line
Add a (very) brief mention of the with statement to the end of chapter 8
........
r45668 | nick.coghlan | 2006-04-23 18:35:19 +0200 (Sun, 23 Apr 2006) | 1 line
Take 2 on mentioning the with statement, this time without inadvertently killing the Unicode examples
........
r45669 | nick.coghlan | 2006-04-23 19:04:07 +0200 (Sun, 23 Apr 2006) | 1 line
Backdated NEWS entry to record the implementation of PEP 338 for alpha 1
........
r45670 | tim.peters | 2006-04-23 20:13:45 +0200 (Sun, 23 Apr 2006) | 2 lines
Whitespace normalization.
........
r45671 | skip.montanaro | 2006-04-23 21:14:27 +0200 (Sun, 23 Apr 2006) | 1 line
first cut at trace module doc
........
r45672 | skip.montanaro | 2006-04-23 21:26:33 +0200 (Sun, 23 Apr 2006) | 1 line
minor tweak
........
r45673 | skip.montanaro | 2006-04-23 21:30:50 +0200 (Sun, 23 Apr 2006) | 1 line
it's always helpful if the example works...
........
r45674 | skip.montanaro | 2006-04-23 21:32:14 +0200 (Sun, 23 Apr 2006) | 1 line
correct example
........
r45675 | andrew.kuchling | 2006-04-23 23:01:04 +0200 (Sun, 23 Apr 2006) | 1 line
Edits to the PEP 343 section
........
r45676 | andrew.kuchling | 2006-04-23 23:51:10 +0200 (Sun, 23 Apr 2006) | 1 line
Add two items
........
r45677 | tim.peters | 2006-04-24 04:03:16 +0200 (Mon, 24 Apr 2006) | 5 lines
Bug #1337990: clarified that `doctest` does not support examples
requiring both expected output and an exception.
I'll backport to 2.4 next.
........
r45679 | nick.coghlan | 2006-04-24 05:04:43 +0200 (Mon, 24 Apr 2006) | 1 line
Note changes made to PEP 343 related documentation
........
r45681 | nick.coghlan | 2006-04-24 06:17:02 +0200 (Mon, 24 Apr 2006) | 1 line
Change PEP 343 related documentation to use the term context specifier instead of context object
........
r45682 | nick.coghlan | 2006-04-24 06:32:47 +0200 (Mon, 24 Apr 2006) | 1 line
Add unit tests for the -m and -c command line switches
........
r45683 | nick.coghlan | 2006-04-24 06:37:15 +0200 (Mon, 24 Apr 2006) | 1 line
Fix contextlib.nested to cope with exit methods raising and handling exceptions
........
r45685 | nick.coghlan | 2006-04-24 06:59:28 +0200 (Mon, 24 Apr 2006) | 1 line
Fix broken contextlib test from last checkin (I'd've sworn I tested that before checking it in. . .)
........
r45686 | nick.coghlan | 2006-04-24 07:24:26 +0200 (Mon, 24 Apr 2006) | 1 line
Back out new command line tests (broke buildbot)
........
r45687 | nick.coghlan | 2006-04-24 07:52:15 +0200 (Mon, 24 Apr 2006) | 1 line
More reliable version of new command line tests that just checks the exit codes
........
r45688 | thomas.wouters | 2006-04-24 13:37:13 +0200 (Mon, 24 Apr 2006) | 4 lines
Stop test_tcl's testLoadTk from leaking the Tk commands 'loadtk' registers.
........
r45690 | andrew.kuchling | 2006-04-24 16:30:47 +0200 (Mon, 24 Apr 2006) | 2 lines
Edits, using the new term
'context specifier' in a few places
........
r45697 | phillip.eby | 2006-04-24 22:53:13 +0200 (Mon, 24 Apr 2006) | 2 lines
Revert addition of setuptools
........
r45698 | tim.peters | 2006-04-25 00:45:13 +0200 (Tue, 25 Apr 2006) | 2 lines
Whitespace normalization.
........
r45700 | trent.mick | 2006-04-25 02:34:50 +0200 (Tue, 25 Apr 2006) | 4 lines
Put break at correct level so *all* root HKEYs acutally get checked for
an installed VC6. Otherwise only the first such tree gets checked and this
warning doesn't get displayed.
........
r45701 | tim.peters | 2006-04-25 05:31:36 +0200 (Tue, 25 Apr 2006) | 3 lines
Patch #1475231: add a new SKIP doctest option, thanks to
Edward Loper.
........
r45702 | neal.norwitz | 2006-04-25 07:04:35 +0200 (Tue, 25 Apr 2006) | 1 line
versionadded for SKIP
........
r45703 | neal.norwitz | 2006-04-25 07:05:03 +0200 (Tue, 25 Apr 2006) | 1 line
Restore Walters name
........
r45704 | neal.norwitz | 2006-04-25 07:49:42 +0200 (Tue, 25 Apr 2006) | 1 line
Revert previous change, SKIP had a versionadded elsewhere
........
r45706 | nick.coghlan | 2006-04-25 12:56:51 +0200 (Tue, 25 Apr 2006) | 31 lines
Move the PEP 343 documentation and implementation closer to the
terminology in the alpha 1 documentation.
- "context manager" reverts to its alpha 1 definition
- the term "context specifier" goes away entirely
- contextlib.GeneratorContextManager is renamed GeneratorContext
There are still a number of changes relative to alpha 1:
- the expression in the with statement is explicitly called the
"context expression" in the language reference
- the terms 'with statement context', 'context object' or 'with
statement context' are used in several places instead of a bare
'context'. The aim of this is to avoid ambiguity in relation to the
runtime context set up when the block is executed, and the context
objects that already exist in various application domains (such as
decimal.Context)
- contextlib.contextmanager is renamed to contextfactory
This best reflects the nature of the function resulting from the
use of that decorator
- decimal.ContextManager is renamed to WithStatementContext
Simple dropping the 'Manager' part wasn't possible due to the
fact that decimal.Context already exists and means something
different. WithStatementContext is ugly but workable.
A technically unrelated change snuck into this commit:
contextlib.closing now avoids the overhead of creating a
generator, since it's trivial to implement that particular
context manager directly.
........
r45707 | nick.coghlan | 2006-04-25 13:05:56 +0200 (Tue, 25 Apr 2006) | 1 line
Fix latex typo
........
r45708 | thomas.wouters | 2006-04-25 14:28:56 +0200 (Tue, 25 Apr 2006) | 4 lines
Fix markup glitch in unittest docs. Will backport.
........
r45710 | andrew.kuchling | 2006-04-25 14:31:38 +0200 (Tue, 25 Apr 2006) | 1 line
Add two items; easy_install is now off the table, though pkgutil still is
........
r45711 | andrew.kuchling | 2006-04-25 14:47:25 +0200 (Tue, 25 Apr 2006) | 1 line
Rework context terminology
........
r45712 | thomas.wouters | 2006-04-25 15:53:23 +0200 (Tue, 25 Apr 2006) | 9 lines
SF bug/patch #1433877: string parameter to ioctl not null terminated
The new char-array used in ioctl calls wasn't explicitly NUL-terminated;
quite probably the cause for the test_pty failures on Solaris that we
circumvented earlier. (I wasn't able to reproduce it with this patch, but it
has been somewhat elusive to start with.)
........
r45713 | george.yoshida | 2006-04-25 16:09:58 +0200 (Tue, 25 Apr 2006) | 2 lines
minor tweak
........
r45714 | thomas.wouters | 2006-04-25 17:08:10 +0200 (Tue, 25 Apr 2006) | 7 lines
Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 and
AF_PACKET cases in getsockaddrarg were missing their own checks for
tuple-ness of the address argument, which means a confusing SystemError was
raised by PyArg_ParseTuple instead.
........
r45715 | thomas.wouters | 2006-04-25 17:29:46 +0200 (Tue, 25 Apr 2006) | 10 lines
Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses
MAXPATHLEN-sized buffers for various output-buffers (like to realpath()),
and that's correct on BSD platforms, but not Linux (which uses PATH_MAX, and
does not define MAXPATHLEN.) Cursory googling suggests Linux is following a
newer standard than BSD, but in cases like this, who knows. Using the
greater of PATH_MAX and 1024 as a fallback for MAXPATHLEN seems to be the
most portable solution.
........
r45717 | thomas.heller | 2006-04-25 20:26:08 +0200 (Tue, 25 Apr 2006) | 3 lines
Fix compiler warnings on Darwin.
Patch by Brett Canon, see
https://sourceforge.net/tracker/?func=detail&atid=532156&aid=1475959&group_id=71702
........
r45718 | guido.van.rossum | 2006-04-25 22:12:45 +0200 (Tue, 25 Apr 2006) | 4 lines
Implement MvL's improvement on __context__ in Condition;
this can just call __context__ on the underlying lock.
(The same change for Semaphore does *not* work!)
........
r45721 | tim.peters | 2006-04-26 03:15:53 +0200 (Wed, 26 Apr 2006) | 13 lines
Rev 45706 renamed stuff in contextlib.py, but didn't rename
uses of it in test_with.py. As a result, test_with has been skipped
(due to failing imports) on all buildbot boxes since. Alas, that's
not a test failure -- you have to pay attention to the
1 skip unexpected on PLATFORM:
test_with
kinds of output at the ends of test runs to notice that this got
broken.
It's likely that more renaming in test_with.py would be desirable.
........
r45722 | fred.drake | 2006-04-26 07:15:41 +0200 (Wed, 26 Apr 2006) | 1 line
markup fixes, cleanup
........
r45723 | fred.drake | 2006-04-26 07:19:39 +0200 (Wed, 26 Apr 2006) | 1 line
minor adjustment suggested by Peter Gephardt
........
r45724 | neal.norwitz | 2006-04-26 07:34:03 +0200 (Wed, 26 Apr 2006) | 10 lines
Patch from Aldo Cortesi (OpenBSD buildbot owner).
After the patch (45590) to add extra debug stats to the gc module, Python
was crashing on OpenBSD due to:
Fatal Python error: Interpreter not initialized (version mismatch?)
This seems to occur due to calling collect() when initialized (in pythonrun.c)
is set to 0. Now, the import will occur in the init function which
shouldn't suffer this problem.
........
r45725 | neal.norwitz | 2006-04-26 08:26:12 +0200 (Wed, 26 Apr 2006) | 3 lines
Fix this test on Solaris. There can be embedded \r, so don't just replace
the one at the end.
........
r45727 | nick.coghlan | 2006-04-26 13:50:04 +0200 (Wed, 26 Apr 2006) | 1 line
Fix an error in the last contextlib.closing example
........
r45728 | andrew.kuchling | 2006-04-26 14:21:06 +0200 (Wed, 26 Apr 2006) | 1 line
[Bug #1475080] Fix example
........
r45729 | andrew.kuchling | 2006-04-26 14:23:39 +0200 (Wed, 26 Apr 2006) | 1 line
Add labels to all sections
........
r45730 | thomas.wouters | 2006-04-26 17:53:30 +0200 (Wed, 26 Apr 2006) | 7 lines
The result of SF patch #1471578: big-memory tests for strings, lists and
tuples. Lots to be added, still, but this will give big-memory people
something to play with in 2.5 alpha 2, and hopefully get more people to
write these tests.
........
r45731 | tim.peters | 2006-04-26 19:11:16 +0200 (Wed, 26 Apr 2006) | 2 lines
Whitespace normalization.
........
r45732 | martin.v.loewis | 2006-04-26 19:19:44 +0200 (Wed, 26 Apr 2006) | 1 line
Use GS- and bufferoverlowU.lib where appropriate, for AMD64.
........
r45733 | thomas.wouters | 2006-04-26 20:46:01 +0200 (Wed, 26 Apr 2006) | 5 lines
Add tests for += and *= on strings, and fix the memory-use estimate for the
list.extend tests (they were estimating half the actual use.)
........
r45734 | thomas.wouters | 2006-04-26 21:14:46 +0200 (Wed, 26 Apr 2006) | 5 lines
Some more test-size-estimate fixes: test_append and test_insert trigger a
list resize, which overallocates.
........
r45735 | hyeshik.chang | 2006-04-26 21:20:26 +0200 (Wed, 26 Apr 2006) | 3 lines
Fix build on MIPS for libffi. I haven't tested this yet because I
don't have an access on MIPS machines. Will be tested by buildbot. :)
........
r45737 | fred.drake | 2006-04-27 01:40:32 +0200 (Thu, 27 Apr 2006) | 1 line
one more place to use the current Python version
........
r45738 | fred.drake | 2006-04-27 02:02:24 +0200 (Thu, 27 Apr 2006) | 3 lines
- update version numbers in file names again, until we have a better way
- elaborate instructions for Cygwin support (closes SF #839709)
........
r45739 | fred.drake | 2006-04-27 02:20:14 +0200 (Thu, 27 Apr 2006) | 1 line
add missing word
........
r45740 | anthony.baxter | 2006-04-27 04:11:24 +0200 (Thu, 27 Apr 2006) | 2 lines
2.5a2
........
r45741 | anthony.baxter | 2006-04-27 04:13:13 +0200 (Thu, 27 Apr 2006) | 1 line
2.5a2
........
r45749 | andrew.kuchling | 2006-04-27 14:22:37 +0200 (Thu, 27 Apr 2006) | 1 line
Now that 2.5a2 is out, revert to the current date
........
r45750 | andrew.kuchling | 2006-04-27 14:23:07 +0200 (Thu, 27 Apr 2006) | 1 line
Bump document version
........
r45751 | andrew.kuchling | 2006-04-27 14:34:39 +0200 (Thu, 27 Apr 2006) | 6 lines
[Bug #1477102] Add necessary import to example
This may be a useful style question for the docs -- should examples show
the necessary imports, or should it be assumed that the reader will
figure it out? In the What's New, I'm not consistent but usually opt
for omitting the imports.
........
r45753 | andrew.kuchling | 2006-04-27 14:38:35 +0200 (Thu, 27 Apr 2006) | 1 line
[Bug #1477140] Import Error base class
........
r45754 | andrew.kuchling | 2006-04-27 14:42:54 +0200 (Thu, 27 Apr 2006) | 1 line
Mention the xmlrpclib.Error base class, which is used in one of the examples
........
r45756 | george.yoshida | 2006-04-27 15:41:07 +0200 (Thu, 27 Apr 2006) | 2 lines
markup fix
........
r45757 | thomas.wouters | 2006-04-27 15:46:59 +0200 (Thu, 27 Apr 2006) | 4 lines
Some more size-estimate fixes, for large-list-tests.
........
r45758 | thomas.heller | 2006-04-27 17:50:42 +0200 (Thu, 27 Apr 2006) | 3 lines
Rerun the libffi configuration if any of the files used for that
are newer then fficonfig.py.
........
r45766 | thomas.wouters | 2006-04-28 00:37:50 +0200 (Fri, 28 Apr 2006) | 6 lines
Some style fixes and size-calculation fixes. Also do the small-memory run
using a prime number, rather than a convenient power-of-2-and-multiple-of-5,
so incorrect testing algorithms fail more easily.
........
r45767 | thomas.wouters | 2006-04-28 00:38:32 +0200 (Fri, 28 Apr 2006) | 6 lines
Do the small-memory run of big-meormy tests using a prime number, rather
than a convenient power-of-2-and-multiple-of-5, so incorrect testing
algorithms fail more easily.
........
r45768 | david.goodger | 2006-04-28 00:53:05 +0200 (Fri, 28 Apr 2006) | 1 line
Added SVN access for Steven Bethard and Talin, for PEP updating.
........
r45770 | thomas.wouters | 2006-04-28 01:13:20 +0200 (Fri, 28 Apr 2006) | 16 lines
- Add new Warning class, ImportWarning
- Warn-raise ImportWarning when importing would have picked up a directory
as package, if only it'd had an __init__.py. This swaps two tests (for
case-ness and __init__-ness), but case-test is not really more expensive,
and it's not in a speed-critical section.
- Test for the new warning by importing a common non-package directory on
sys.path: site-packages
- In regrtest.py, silence warnings generated by the build-environment
because Modules/ (which is added to sys.path for Setup-created modules)
has 'zlib' and '_ctypes' directories without __init__.py's.
........
r45771 | thomas.wouters | 2006-04-28 01:41:27 +0200 (Fri, 28 Apr 2006) | 6 lines
Add more ignores of ImportWarnings; these are all just potential triggers
(since they won't trigger if zlib is already sucessfully imported); they
were found by grepping .py files, instead of looking at warning output :)
........
r45773 | neal.norwitz | 2006-04-28 06:32:20 +0200 (Fri, 28 Apr 2006) | 1 line
Add some whitespace to be more consistent.
........
r45774 | neal.norwitz | 2006-04-28 06:34:43 +0200 (Fri, 28 Apr 2006) | 5 lines
Try to really fix the slow buildbots this time.
Printing to stdout, doesn't mean the data was actually written.
It depends on the buffering, so we need to flush. This will hopefully
really fix the buildbots getting killed due to no output on the slow bots.
........
r45775 | neal.norwitz | 2006-04-28 07:28:05 +0200 (Fri, 28 Apr 2006) | 1 line
Fix some warnings on Mac OS X 10.4
........
r45776 | neal.norwitz | 2006-04-28 07:28:30 +0200 (Fri, 28 Apr 2006) | 1 line
Fix a warning on alpha
........
r45777 | neal.norwitz | 2006-04-28 07:28:54 +0200 (Fri, 28 Apr 2006) | 1 line
Fix a warning on ppc (debian)
........
r45778 | george.yoshida | 2006-04-28 18:09:45 +0200 (Fri, 28 Apr 2006) | 2 lines
fix markup glitch
........
r45780 | georg.brandl | 2006-04-28 18:31:17 +0200 (Fri, 28 Apr 2006) | 3 lines
Add SeaMonkey to the list of Mozilla browsers.
........
r45781 | georg.brandl | 2006-04-28 18:36:55 +0200 (Fri, 28 Apr 2006) | 2 lines
Bug #1475009: clarify ntpath.join behavior with absolute components
........
r45783 | george.yoshida | 2006-04-28 18:40:14 +0200 (Fri, 28 Apr 2006) | 2 lines
correct a dead link
........
r45785 | georg.brandl | 2006-04-28 18:54:25 +0200 (Fri, 28 Apr 2006) | 4 lines
Bug #1472949: stringify IOErrors in shutil.copytree when appending
them to the Error errors list.
........
r45786 | georg.brandl | 2006-04-28 18:58:52 +0200 (Fri, 28 Apr 2006) | 3 lines
Bug #1478326: don't allow '/' in distutils.util.get_platform machine names
since this value is used to name the build directory.
........
r45788 | thomas.heller | 2006-04-28 19:02:18 +0200 (Fri, 28 Apr 2006) | 1 line
Remove a duplicated test (the same test is in test_incomplete.py).
........
r45792 | georg.brandl | 2006-04-28 21:09:24 +0200 (Fri, 28 Apr 2006) | 3 lines
Bug #1478429: make datetime.datetime.fromtimestamp accept every float,
possibly "rounding up" to the next whole second.
........
r45796 | george.yoshida | 2006-04-29 04:43:30 +0200 (Sat, 29 Apr 2006) | 2 lines
grammar fix
........
r45800 | ronald.oussoren | 2006-04-29 13:31:35 +0200 (Sat, 29 Apr 2006) | 2 lines
Patch 1471883: --enable-universalsdk on Mac OS X
........
r45801 | andrew.kuchling | 2006-04-29 13:53:15 +0200 (Sat, 29 Apr 2006) | 1 line
Add item
........
r45802 | andrew.kuchling | 2006-04-29 14:10:28 +0200 (Sat, 29 Apr 2006) | 1 line
Make case of 'ZIP' consistent
........
r45803 | andrew.kuchling | 2006-04-29 14:10:43 +0200 (Sat, 29 Apr 2006) | 1 line
Add item
........
r45808 | martin.v.loewis | 2006-04-29 14:37:25 +0200 (Sat, 29 Apr 2006) | 3 lines
Further changes for #1471883: Edit Misc/NEWS, and
add expat_config.h.
........
r45809 | brett.cannon | 2006-04-29 23:29:50 +0200 (Sat, 29 Apr 2006) | 2 lines
Fix docstring for contextfactory; mentioned old contextmanager name.
........
r45810 | gerhard.haering | 2006-04-30 01:12:41 +0200 (Sun, 30 Apr 2006) | 3 lines
This is the start of documentation for the sqlite3 module. Please feel free to
find a better place for the link to it than alongside bsddb & friends.
........
r45811 | andrew.kuchling | 2006-04-30 03:07:09 +0200 (Sun, 30 Apr 2006) | 1 line
Add two items
........
r45814 | george.yoshida | 2006-04-30 05:49:56 +0200 (Sun, 30 Apr 2006) | 2 lines
Use \versionchanged instead of \versionadded for new parameter support.
........
r45815 | georg.brandl | 2006-04-30 09:06:11 +0200 (Sun, 30 Apr 2006) | 2 lines
Patch #1470846: fix urllib2 ProxyBasicAuthHandler.
........
r45817 | georg.brandl | 2006-04-30 10:57:35 +0200 (Sun, 30 Apr 2006) | 3 lines
In stdlib, use hashlib instead of deprecated md5 and sha modules.
........
r45819 | georg.brandl | 2006-04-30 11:23:59 +0200 (Sun, 30 Apr 2006) | 3 lines
Patch #1470976: don't NLST files when retrieving over FTP.
........
r45821 | georg.brandl | 2006-04-30 13:13:56 +0200 (Sun, 30 Apr 2006) | 6 lines
Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.
On the way, add a decorator to test_support to facilitate running single
test functions in different locales with automatic cleanup.
........
r45822 | phillip.eby | 2006-04-30 17:59:26 +0200 (Sun, 30 Apr 2006) | 2 lines
Fix infinite regress when inspecting <string> or <stdin> frames.
........
r45824 | georg.brandl | 2006-04-30 19:42:26 +0200 (Sun, 30 Apr 2006) | 3 lines
Fix another problem in inspect: if the module for an object cannot be found, don't try to give its __dict__ to linecache.
........
r45825 | georg.brandl | 2006-04-30 20:14:54 +0200 (Sun, 30 Apr 2006) | 3 lines
Patch #1472854: make the rlcompleter.Completer class usable on non-
UNIX platforms.
........
r45826 | georg.brandl | 2006-04-30 21:34:19 +0200 (Sun, 30 Apr 2006) | 3 lines
Patch #1479438: add \keyword markup for "with".
........
r45827 | andrew.kuchling | 2006-04-30 23:19:31 +0200 (Sun, 30 Apr 2006) | 1 line
Add urllib2 HOWTO from Michael Foord
........
r45828 | andrew.kuchling | 2006-04-30 23:19:49 +0200 (Sun, 30 Apr 2006) | 1 line
Add item
........
r45830 | barry.warsaw | 2006-05-01 05:03:02 +0200 (Mon, 01 May 2006) | 11 lines
Port forward from 2.4 branch:
Patch #1464708 from William McVey: fixed handling of nested comments in mail
addresses. E.g.
"Foo ((Foo Bar)) <foo@example.com>"
Fixes for both rfc822.py and email package. This patch needs to be back
ported to Python 2.3 for email 2.5.
........
r45832 | fred.drake | 2006-05-01 08:25:58 +0200 (Mon, 01 May 2006) | 4 lines
- minor clarification in section title
- markup adjustments
(there is clearly much to be done in this section)
........
r45833 | martin.v.loewis | 2006-05-01 08:28:01 +0200 (Mon, 01 May 2006) | 2 lines
Work around deadlock risk. Will backport.
........
r45836 | andrew.kuchling | 2006-05-01 14:45:02 +0200 (Mon, 01 May 2006) | 1 line
Some ElementTree fixes: import from xml, not xmlcore; fix case of module name; mention list() instead of getchildren()
........
r45837 | gerhard.haering | 2006-05-01 17:14:48 +0200 (Mon, 01 May 2006) | 3 lines
Further integration of the documentation for the sqlite3 module. There's still
quite some content to move over from the pysqlite manual, but it's a start now.
........
r45838 | martin.v.loewis | 2006-05-01 17:56:03 +0200 (Mon, 01 May 2006) | 2 lines
Rename uisample to text, drop all non-text tables.
........
r45839 | martin.v.loewis | 2006-05-01 18:12:44 +0200 (Mon, 01 May 2006) | 2 lines
Add msilib documentation.
........
r45840 | martin.v.loewis | 2006-05-01 18:14:16 +0200 (Mon, 01 May 2006) | 4 lines
Rename parameters to match the documentation (which
in turn matches Microsoft's documentation).
Drop unused parameter in CAB.append.
........
r45841 | fred.drake | 2006-05-01 18:28:54 +0200 (Mon, 01 May 2006) | 1 line
add dependency
........
r45842 | andrew.kuchling | 2006-05-01 18:30:25 +0200 (Mon, 01 May 2006) | 1 line
Markup fixes; add some XXX comments noting problems
........
r45843 | andrew.kuchling | 2006-05-01 18:32:49 +0200 (Mon, 01 May 2006) | 1 line
Add item
........
r45844 | andrew.kuchling | 2006-05-01 19:06:54 +0200 (Mon, 01 May 2006) | 1 line
Markup fixes
........
r45850 | neal.norwitz | 2006-05-02 06:43:14 +0200 (Tue, 02 May 2006) | 3 lines
SF #1479181: split open() and file() from being aliases for each other.
........
r45852 | neal.norwitz | 2006-05-02 08:23:22 +0200 (Tue, 02 May 2006) | 1 line
Try to fix breakage caused by patch #1479181, r45850
........
r45853 | fred.drake | 2006-05-02 08:53:59 +0200 (Tue, 02 May 2006) | 3 lines
SF #1479988: add methods to allow access to weakrefs for the
weakref.WeakKeyDictionary and weakref.WeakValueDictionary
........
r45854 | neal.norwitz | 2006-05-02 09:27:47 +0200 (Tue, 02 May 2006) | 5 lines
Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1.
The problem was that pyconfig.h was being included before some system headers
which caused redefinitions and other breakage. This moves system headers
after expat_config.h which includes pyconfig.h.
........
r45855 | vinay.sajip | 2006-05-02 10:35:36 +0200 (Tue, 02 May 2006) | 1 line
Replaced my dumb way of calculating seconds to midnight with Tim Peters' much more sensible suggestion. What was I thinking ?!?
........
r45856 | andrew.kuchling | 2006-05-02 13:30:03 +0200 (Tue, 02 May 2006) | 1 line
Provide encoding as keyword argument; soften warning paragraph about encodings
........
r45858 | guido.van.rossum | 2006-05-02 19:36:09 +0200 (Tue, 02 May 2006) | 2 lines
Fix the formatting of KeyboardInterrupt -- a bad issubclass() call.
........
r45862 | guido.van.rossum | 2006-05-02 21:47:52 +0200 (Tue, 02 May 2006) | 7 lines
Get rid of __context__, per the latest changes to PEP 343 and python-dev
discussion.
There are two places of documentation that still mention __context__:
Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without
spending a whole lot of time thinking about it; and whatsnew, which Andrew
usually likes to change himself.
........
r45863 | armin.rigo | 2006-05-02 21:52:32 +0200 (Tue, 02 May 2006) | 4 lines
Documentation bug: PySet_Pop() returns a new reference (because the
caller becomes the owner of that reference).
........
r45864 | guido.van.rossum | 2006-05-02 22:47:36 +0200 (Tue, 02 May 2006) | 4 lines
Hopefully this will fix the spurious failures of test_mailbox.py that I'm
experiencing. (This code and mailbox.py itself are full of calls to file()
that should be calls to open() -- but I'm not fixing those.)
........
r45865 | andrew.kuchling | 2006-05-02 23:44:33 +0200 (Tue, 02 May 2006) | 1 line
Use open() instead of file()
........
r45866 | andrew.kuchling | 2006-05-03 00:47:49 +0200 (Wed, 03 May 2006) | 1 line
Update context manager section for removal of __context__
........
r45867 | fred.drake | 2006-05-03 03:46:52 +0200 (Wed, 03 May 2006) | 1 line
remove unnecessary assignment
........
r45868 | fred.drake | 2006-05-03 03:48:24 +0200 (Wed, 03 May 2006) | 4 lines
tell LaTeX2HTML to:
- use UTF-8 output
- not mess with the >>> prompt!
........
r45869 | fred.drake | 2006-05-03 04:04:40 +0200 (Wed, 03 May 2006) | 3 lines
avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to
guillemets; no need for magic here
........
r45870 | fred.drake | 2006-05-03 04:12:47 +0200 (Wed, 03 May 2006) | 1 line
at least comment on why curly-quotes are not enabled
........
r45871 | fred.drake | 2006-05-03 04:27:40 +0200 (Wed, 03 May 2006) | 1 line
one more place to avoid extra markup
........
r45872 | fred.drake | 2006-05-03 04:29:09 +0200 (Wed, 03 May 2006) | 1 line
one more place to avoid extra markup (how many will there be?)
........
r45873 | fred.drake | 2006-05-03 04:29:39 +0200 (Wed, 03 May 2006) | 1 line
fix up whitespace in prompt strings
........
r45876 | tim.peters | 2006-05-03 06:46:14 +0200 (Wed, 03 May 2006) | 2 lines
Whitespace normalization.
........
r45877 | martin.v.loewis | 2006-05-03 06:52:04 +0200 (Wed, 03 May 2006) | 2 lines
Correct some formulations, fix XXX comments.
........
r45879 | georg.brandl | 2006-05-03 07:05:02 +0200 (Wed, 03 May 2006) | 2 lines
Patch #1480067: don't redirect HTTP digest auth in urllib2
........
r45881 | georg.brandl | 2006-05-03 07:15:10 +0200 (Wed, 03 May 2006) | 3 lines
Move network tests from test_urllib2 to test_urllib2net.
........
r45887 | nick.coghlan | 2006-05-03 15:02:47 +0200 (Wed, 03 May 2006) | 1 line
Finish bringing SVN into line with latest version of PEP 343 by getting rid of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager()
........
r45888 | nick.coghlan | 2006-05-03 15:17:49 +0200 (Wed, 03 May 2006) | 1 line
Get rid of a couple more context object references, fix some markup and clarify what happens when a generator context function swallows an exception.
........
r45889 | georg.brandl | 2006-05-03 19:46:13 +0200 (Wed, 03 May 2006) | 3 lines
Add seamonkey to list of Windows browsers too.
........
r45890 | georg.brandl | 2006-05-03 20:03:22 +0200 (Wed, 03 May 2006) | 3 lines
RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if not necessary.
........
r45891 | georg.brandl | 2006-05-03 20:12:33 +0200 (Wed, 03 May 2006) | 2 lines
Bug #1472191: convert breakpoint indices to ints before comparing them to ints
........
r45893 | georg.brandl | 2006-05-03 20:18:32 +0200 (Wed, 03 May 2006) | 3 lines
Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package.
........
r45894 | thomas.heller | 2006-05-03 20:35:39 +0200 (Wed, 03 May 2006) | 1 line
Don't fail the tests when libglut.so or libgle.so cannot be loaded.
........
r45895 | georg.brandl | 2006-05-04 07:08:10 +0200 (Thu, 04 May 2006) | 2 lines
Bug #1481530: allow "from os.path import ..." with imputil
........
r45897 | martin.v.loewis | 2006-05-04 07:51:03 +0200 (Thu, 04 May 2006) | 2 lines
Patch #1475845: Raise IndentationError for unexpected indent.
........
r45898 | martin.v.loewis | 2006-05-04 12:08:42 +0200 (Thu, 04 May 2006) | 1 line
Implement os.{chdir,rename,rmdir,remove} using Win32 directly.
........
r45899 | martin.v.loewis | 2006-05-04 14:04:27 +0200 (Thu, 04 May 2006) | 2 lines
Drop now-unnecessary arguments to posix_2str.
........
r45900 | martin.v.loewis | 2006-05-04 16:27:52 +0200 (Thu, 04 May 2006) | 1 line
Update checks to consider Windows error numbers.
........
r45913 | thomas.heller | 2006-05-05 20:42:14 +0200 (Fri, 05 May 2006) | 2 lines
Export the 'free' standard C function for use in the test suite.
........
r45914 | thomas.heller | 2006-05-05 20:43:24 +0200 (Fri, 05 May 2006) | 3 lines
Fix memory leaks in the ctypes test suite, reported by valgrind, by
free()ing the memory we allocate.
........
r45915 | thomas.heller | 2006-05-05 20:46:27 +0200 (Fri, 05 May 2006) | 1 line
oops - the function is exported as 'my_free', not 'free'.
........
r45916 | thomas.heller | 2006-05-05 21:14:24 +0200 (Fri, 05 May 2006) | 2 lines
Clean up.
........
r45920 | george.yoshida | 2006-05-06 15:09:45 +0200 (Sat, 06 May 2006) | 2 lines
describe optional arguments for DocFileSuite
........
r45924 | george.yoshida | 2006-05-06 16:16:51 +0200 (Sat, 06 May 2006) | 2 lines
Use \versionchanged for the feature change
........
r45925 | martin.v.loewis | 2006-05-06 18:32:54 +0200 (Sat, 06 May 2006) | 1 line
Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.
........
r45926 | martin.v.loewis | 2006-05-06 22:04:08 +0200 (Sat, 06 May 2006) | 2 lines
Handle ERROR_ALREADY_EXISTS.
........
r45931 | andrew.kuchling | 2006-05-07 19:12:12 +0200 (Sun, 07 May 2006) | 1 line
[Patch #1479977] Revised version of urllib2 HOWTO, edited by John J. Lee
........
r45932 | andrew.kuchling | 2006-05-07 19:14:53 +0200 (Sun, 07 May 2006) | 1 line
Minor language edit
........
r45934 | georg.brandl | 2006-05-07 22:44:34 +0200 (Sun, 07 May 2006) | 3 lines
Patch #1483395: add new TLDs to cookielib
........
r45936 | martin.v.loewis | 2006-05-08 07:25:56 +0200 (Mon, 08 May 2006) | 2 lines
Add missing PyMem_Free.
........
r45938 | georg.brandl | 2006-05-08 19:28:47 +0200 (Mon, 08 May 2006) | 3 lines
Add test for rev. 45934.
........
r45939 | georg.brandl | 2006-05-08 19:36:08 +0200 (Mon, 08 May 2006) | 3 lines
Patch #1479302: Make urllib2 digest auth and basic auth play together.
........
r45940 | georg.brandl | 2006-05-08 19:48:01 +0200 (Mon, 08 May 2006) | 3 lines
Patch #1478993: take advantage of BaseException/Exception split in cookielib
........
r45941 | neal.norwitz | 2006-05-09 07:38:56 +0200 (Tue, 09 May 2006) | 5 lines
Micro optimization. In the first case, we know that frame->f_exc_type
is NULL, so there's no reason to do anything with it. In the second case,
we know frame->f_exc_type is not NULL, so we can just do an INCREF.
........
r45943 | thomas.heller | 2006-05-09 22:20:15 +0200 (Tue, 09 May 2006) | 2 lines
Disable a test that is unreliable.
........
r45944 | tim.peters | 2006-05-10 04:43:01 +0200 (Wed, 10 May 2006) | 4 lines
Variant of patch #1478292. doctest.register_optionflag(name)
shouldn't create a new flag when `name` is already the name of
an option flag.
........
r45947 | neal.norwitz | 2006-05-10 08:57:58 +0200 (Wed, 10 May 2006) | 14 lines
Fix problems found by Coverity.
longobject.c: also fix an ssize_t problem
<a> could have been NULL, so hoist the size calc to not use <a>.
_ssl.c: under fail: self is DECREF'd, but it would have been NULL.
_elementtree.c: delete self if there was an error.
_csv.c: I'm not sure if lineterminator could have been anything other than
a string. However, other string method calls are checked, so check this
one too.
........
r45948 | thomas.wouters | 2006-05-10 17:04:11 +0200 (Wed, 10 May 2006) | 4 lines
Ignore reflog.txt, too.
........
r45949 | georg.brandl | 2006-05-10 17:59:06 +0200 (Wed, 10 May 2006) | 3 lines
Bug #1482988: indicate more prominently that the Stats class is in the pstats module.
........
r45950 | georg.brandl | 2006-05-10 18:09:03 +0200 (Wed, 10 May 2006) | 2 lines
Bug #1485447: subprocess: document that the "cwd" parameter isn't used to find the executable. Misc. other markup fixes.
........
r45952 | georg.brandl | 2006-05-10 18:11:44 +0200 (Wed, 10 May 2006) | 2 lines
Bug #1484978: curses.panel: clarify that Panel objects are destroyed on garbage collection.
........
r45954 | georg.brandl | 2006-05-10 18:26:03 +0200 (Wed, 10 May 2006) | 4 lines
Patch #1484695: Update the tarfile module to version 0.8. This fixes
a couple of issues, notably handling of long file names using the
GNU LONGNAME extension.
........
r45955 | georg.brandl | 2006-05-10 19:13:20 +0200 (Wed, 10 May 2006) | 4 lines
Patch #721464: pdb.Pdb instances can now be given explicit stdin and
stdout arguments, making it possible to redirect input and output
for remote debugging.
........
r45956 | andrew.kuchling | 2006-05-10 19:19:04 +0200 (Wed, 10 May 2006) | 1 line
Clarify description of exception handling
........
r45957 | georg.brandl | 2006-05-10 22:09:23 +0200 (Wed, 10 May 2006) | 2 lines
Fix two small errors in argument lists.
........
r45960 | brett.cannon | 2006-05-11 07:11:33 +0200 (Thu, 11 May 2006) | 5 lines
Detect if %zd is supported by printf() during configure and sets
PY_FORMAT_SIZE_T appropriately. Removes warnings on
OS X under gcc 4.0.1 when PY_FORMAT_SIZE_T is set to "" instead of "z" as is
needed.
........
r45963 | neal.norwitz | 2006-05-11 09:51:59 +0200 (Thu, 11 May 2006) | 1 line
Don't mask a no memory error with a less meaningful one as discussed on python-checkins
........
r45964 | martin.v.loewis | 2006-05-11 15:28:43 +0200 (Thu, 11 May 2006) | 3 lines
Change WindowsError to carry the Win32 error code in winerror,
and the DOS error code in errno. Revert changes where
WindowsError catch blocks unnecessarily special-case OSError.
........
r45965 | george.yoshida | 2006-05-11 17:53:27 +0200 (Thu, 11 May 2006) | 2 lines
Grammar fix
........
r45967 | andrew.kuchling | 2006-05-11 18:32:24 +0200 (Thu, 11 May 2006) | 1 line
typo fix
........
r45968 | tim.peters | 2006-05-11 18:37:42 +0200 (Thu, 11 May 2006) | 5 lines
BaseThreadedTestCase.setup(): stop special-casing WindowsError.
Rev 45964 fiddled with WindowsError, and broke test_bsddb3 on all
the Windows buildbot slaves as a result. This should repair it.
........
r45969 | georg.brandl | 2006-05-11 21:57:09 +0200 (Thu, 11 May 2006) | 2 lines
Typo fix.
........
r45970 | tim.peters | 2006-05-12 03:57:59 +0200 (Fri, 12 May 2006) | 5 lines
SF patch #1473132: Improve docs for tp_clear and tp_traverse,
by Collin Winter.
Bugfix candidate (but I'm not going to bother).
........
r45974 | martin.v.loewis | 2006-05-12 14:27:28 +0200 (Fri, 12 May 2006) | 4 lines
Dynamically allocate path name buffer for Unicode
path name in listdir. Fixes #1431582.
Stop overallocating MAX_PATH characters for ANSI
path names. Stop assigning to errno.
........
r45975 | martin.v.loewis | 2006-05-12 15:57:36 +0200 (Fri, 12 May 2006) | 1 line
Move icon files into DLLs dir. Fixes #1477968.
........
r45976 | george.yoshida | 2006-05-12 18:40:11 +0200 (Fri, 12 May 2006) | 2 lines
At first there were 6 steps, but one was removed after that.
........
r45977 | martin.v.loewis | 2006-05-12 19:22:04 +0200 (Fri, 12 May 2006) | 1 line
Fix alignment error on Itanium.
........
r45978 | george.yoshida | 2006-05-12 19:25:26 +0200 (Fri, 12 May 2006) | 3 lines
Duplicated description about the illegal continue usage can be found in nearly the same place.
They are same, so keep the original one and remove the later-added one.
........
r45980 | thomas.heller | 2006-05-12 20:16:03 +0200 (Fri, 12 May 2006) | 2 lines
Add missing svn properties.
........
r45981 | thomas.heller | 2006-05-12 20:47:35 +0200 (Fri, 12 May 2006) | 1 line
set svn properties
........
r45982 | thomas.heller | 2006-05-12 21:31:46 +0200 (Fri, 12 May 2006) | 1 line
add svn:eol-style native svn:keywords Id
........
r45987 | gerhard.haering | 2006-05-13 01:49:49 +0200 (Sat, 13 May 2006) | 3 lines
Integrated the rest of the pysqlite reference manual into the Python
documentation. Ready to be reviewed and improved upon.
........
r45988 | george.yoshida | 2006-05-13 08:53:31 +0200 (Sat, 13 May 2006) | 2 lines
Add \exception markup
........
r45990 | martin.v.loewis | 2006-05-13 15:34:04 +0200 (Sat, 13 May 2006) | 2 lines
Revert 43315: Printing of %zd must be signed.
........
r45992 | tim.peters | 2006-05-14 01:28:20 +0200 (Sun, 14 May 2006) | 11 lines
Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV
about "%u", "%lu" and "%zu" formats.
Since PyString_FromFormat and PyErr_Format have exactly the same rules
(both inherited from PyString_FromFormatV), it would be good if someone
with more LaTeX Fu changed one of them to just point to the other.
Their docs were way out of synch before this patch, and I just did a
mass copy+paste to repair that.
Not a backport candidate (this is a new feature).
........
r45993 | tim.peters | 2006-05-14 01:31:05 +0200 (Sun, 14 May 2006) | 2 lines
Typo repair.
........
r45994 | tim.peters | 2006-05-14 01:33:19 +0200 (Sun, 14 May 2006) | 2 lines
Remove lie in new comment.
........
r45995 | ronald.oussoren | 2006-05-14 21:56:34 +0200 (Sun, 14 May 2006) | 11 lines
Rework the build system for osx applications:
* Don't use xcodebuild for building PythonLauncher, but use a normal unix
makefile. This makes it a lot easier to use the same build flags as for the
rest of python (e.g. make a universal version of python launcher)
* Convert the mac makefile-s to makefile.in-s and use configure to set makefile
variables instead of forwarding them as command-line arguments
* Add a C version of pythonw, that we you can use '#!/usr/local/bin/pythonw'
* Build IDLE.app using bundlebuilder instead of BuildApplet, that will allow
easier modification of the bundle contents later on.
........
r45996 | ronald.oussoren | 2006-05-14 22:35:41 +0200 (Sun, 14 May 2006) | 6 lines
A first cut at replacing the icons on MacOS X. This replaces all icons by icons
based on the new python.org logo. These are also the first icons that are
"proper" OSX icons.
These icons were created by Jacob Rus.
........
r45997 | ronald.oussoren | 2006-05-14 23:07:41 +0200 (Sun, 14 May 2006) | 3 lines
I missed one small detail in my rewrite of the osx build files: the path
to the Python.app template.
........
r45998 | martin.v.loewis | 2006-05-15 07:51:36 +0200 (Mon, 15 May 2006) | 2 lines
Fix memory leak.
........
r45999 | neal.norwitz | 2006-05-15 08:48:14 +0200 (Mon, 15 May 2006) | 1 line
Move items implemented after a2 into the new a3 section
........
r46000 | neal.norwitz | 2006-05-15 09:04:36 +0200 (Mon, 15 May 2006) | 5 lines
- Bug #1487966: Fix SystemError with conditional expression in assignment
Most of the test_syntax changes are just updating the numbers.
........
r46001 | neal.norwitz | 2006-05-15 09:17:23 +0200 (Mon, 15 May 2006) | 1 line
Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport
........
r46003 | martin.v.loewis | 2006-05-15 11:22:27 +0200 (Mon, 15 May 2006) | 3 lines
Remove bogus DECREF of self.
Change __str__() functions to METH_O.
Change WindowsError__str__ to use PyTuple_Pack.
........
r46005 | georg.brandl | 2006-05-15 21:30:35 +0200 (Mon, 15 May 2006) | 3 lines
[ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634)
........
r46007 | tim.peters | 2006-05-15 22:44:10 +0200 (Mon, 15 May 2006) | 9 lines
ReadDetectFileobjTest: repair Windows disasters by opening
the file object in binary mode.
The Windows buildbot slaves shouldn't swap themselves to death
anymore. However, test_tarfile may still fail because of a
temp directory left behind from a previous failing run.
Windows buildbot owners may need to remove that directory
by hand.
........
r46009 | tim.peters | 2006-05-15 23:32:25 +0200 (Mon, 15 May 2006) | 3 lines
test_directory(): Remove the leftover temp directory that's making
the Windows buildbots fail test_tarfile.
........
r46010 | martin.v.loewis | 2006-05-16 09:05:37 +0200 (Tue, 16 May 2006) | 4 lines
- Test for sys/statvfs.h before including it, as statvfs is present
on some OSX installation, but its header file is not.
Will backport to 2.4
........
r46012 | georg.brandl | 2006-05-16 09:38:27 +0200 (Tue, 16 May 2006) | 3 lines
Patch #1435422: zlib's compress and decompress objects now have a
copy() method.
........
r46015 | andrew.kuchling | 2006-05-16 18:11:54 +0200 (Tue, 16 May 2006) | 1 line
Add item
........
r46016 | andrew.kuchling | 2006-05-16 18:27:31 +0200 (Tue, 16 May 2006) | 3 lines
PEP 243 has been withdrawn, so don't refer to it any more.
The PyPI upload material has been moved into the section on PEP314.
........
r46017 | george.yoshida | 2006-05-16 19:42:16 +0200 (Tue, 16 May 2006) | 2 lines
Update for 'ImportWarning'
........
r46018 | george.yoshida | 2006-05-16 20:07:00 +0200 (Tue, 16 May 2006) | 4 lines
Mention that Exception is now a subclass of BaseException.
Remove a sentence that says that BaseException inherits from BaseException.
(I guess this is just a copy & paste mistake.)
........
r46019 | george.yoshida | 2006-05-16 20:26:10 +0200 (Tue, 16 May 2006) | 2 lines
Document ImportWarning
........
r46020 | tim.peters | 2006-05-17 01:22:20 +0200 (Wed, 17 May 2006) | 2 lines
Whitespace normalization.
........
r46021 | tim.peters | 2006-05-17 01:24:08 +0200 (Wed, 17 May 2006) | 2 lines
Text files missing the SVN eol-style property.
........
r46022 | tim.peters | 2006-05-17 03:30:11 +0200 (Wed, 17 May 2006) | 2 lines
PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path.
........
r46023 | georg.brandl | 2006-05-17 16:06:07 +0200 (Wed, 17 May 2006) | 3 lines
Remove misleading comment about type-class unification.
........
r46024 | georg.brandl | 2006-05-17 16:11:36 +0200 (Wed, 17 May 2006) | 3 lines
Apply patch #1489784 from Michael Foord.
........
r46025 | georg.brandl | 2006-05-17 16:18:20 +0200 (Wed, 17 May 2006) | 3 lines
Fix typo in os.utime docstring (patch #1490189)
........
r46026 | georg.brandl | 2006-05-17 16:26:50 +0200 (Wed, 17 May 2006) | 3 lines
Patch #1490224: set time.altzone correctly on Cygwin.
........
r46027 | georg.brandl | 2006-05-17 16:45:06 +0200 (Wed, 17 May 2006) | 4 lines
Add global debug flag to cookielib to avoid heavy dependency on the logging module.
Resolves #1484758.
........
r46028 | georg.brandl | 2006-05-17 16:56:04 +0200 (Wed, 17 May 2006) | 3 lines
Patch #1486962: Several bugs in the turtle Tk demo module were fixed
and several features added, such as speed and geometry control.
........
r46029 | georg.brandl | 2006-05-17 17:17:00 +0200 (Wed, 17 May 2006) | 4 lines
Delay-import some large modules to speed up urllib2 import.
(fixes #1484793).
........
r46030 | georg.brandl | 2006-05-17 17:51:16 +0200 (Wed, 17 May 2006) | 3 lines
Patch #1180296: improve locale string formatting functions
........
r46032 | tim.peters | 2006-05-18 04:06:40 +0200 (Thu, 18 May 2006) | 2 lines
Whitespace normalization.
........
r46033 | georg.brandl | 2006-05-18 08:11:19 +0200 (Thu, 18 May 2006) | 3 lines
Amendments to patch #1484695.
........
r46034 | georg.brandl | 2006-05-18 08:18:06 +0200 (Thu, 18 May 2006) | 3 lines
Remove unused import.
........
r46035 | georg.brandl | 2006-05-18 08:33:27 +0200 (Thu, 18 May 2006) | 3 lines
Fix test_locale for platforms without a default thousands separator.
........
r46036 | neal.norwitz | 2006-05-18 08:51:46 +0200 (Thu, 18 May 2006) | 1 line
Little cleanup
........
r46037 | georg.brandl | 2006-05-18 09:01:27 +0200 (Thu, 18 May 2006) | 4 lines
Bug #1462152: file() now checks more thoroughly for invalid mode
strings and removes a possible "U" before passing the mode to the
C library function.
........
r46038 | georg.brandl | 2006-05-18 09:20:05 +0200 (Thu, 18 May 2006) | 3 lines
Bug #1490688: properly document %e, %f, %g format subtleties.
........
r46039 | vinay.sajip | 2006-05-18 09:28:58 +0200 (Thu, 18 May 2006) | 1 line
Changed status from "beta" to "production"; since logging has been part of the stdlib since 2.3, it should be safe to make this assertion ;-)
........
r46040 | ronald.oussoren | 2006-05-18 11:04:15 +0200 (Thu, 18 May 2006) | 2 lines
Fix some minor issues with the generated application bundles on MacOSX
........
r46041 | andrew.kuchling | 2006-05-19 02:03:55 +0200 (Fri, 19 May 2006) | 1 line
Typo fix; add clarifying word
........
r46044 | neal.norwitz | 2006-05-19 08:31:23 +0200 (Fri, 19 May 2006) | 3 lines
Fix #132 from Coverity, retval could have been derefed
if a continue inside a try failed.
........
r46045 | neal.norwitz | 2006-05-19 08:43:50 +0200 (Fri, 19 May 2006) | 2 lines
Fix #1474677, non-keyword argument following keyword.
........
r46046 | neal.norwitz | 2006-05-19 09:00:58 +0200 (Fri, 19 May 2006) | 4 lines
Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.
I suppose this could be backported if anyone cares.
........
r46047 | neal.norwitz | 2006-05-19 09:05:01 +0200 (Fri, 19 May 2006) | 7 lines
Oops, I forgot to include this file in the last commit (46046):
Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.
I suppose this could be backported if anyone cares.
........
r46050 | ronald.oussoren | 2006-05-19 20:17:31 +0200 (Fri, 19 May 2006) | 6 lines
* Change working directory to the users home
directory, that makes the file open/save
dialogs more useable.
* Don't use argv emulator, its not needed
for idle.
........
r46052 | tim.peters | 2006-05-19 21:16:34 +0200 (Fri, 19 May 2006) | 2 lines
Whitespace normalization.
........
r46054 | ronald.oussoren | 2006-05-20 08:17:01 +0200 (Sat, 20 May 2006) | 9 lines
Fix bug #1000914 (again).
This patches a file that is generated by bgen, however the code is now the
same as a current copy of bgen would generate. Without this patch most types
in the Carbon.CF module are unusable.
I haven't managed to coax bgen into generating a complete copy of _CFmodule.c
yet :-(, hence the manual patching.
........
r46055 | george.yoshida | 2006-05-20 17:36:19 +0200 (Sat, 20 May 2006) | 3 lines
- markup fix
- add clarifying words
........
r46057 | george.yoshida | 2006-05-20 18:29:14 +0200 (Sat, 20 May 2006) | 3 lines
- Add 'as' and 'with' as new keywords in 2.5.
- Regenerate keyword lists with reswords.py.
........
r46058 | george.yoshida | 2006-05-20 20:07:26 +0200 (Sat, 20 May 2006) | 2 lines
Apply patch #1492147 from Mike Foord.
........
r46059 | andrew.kuchling | 2006-05-20 21:25:16 +0200 (Sat, 20 May 2006) | 1 line
Minor edits
........
r46061 | george.yoshida | 2006-05-21 06:22:59 +0200 (Sun, 21 May 2006) | 2 lines
Fix the TeX compile error.
........
r46062 | george.yoshida | 2006-05-21 06:40:32 +0200 (Sun, 21 May 2006) | 2 lines
Apply patch #1492255 from Mike Foord.
........
r46063 | martin.v.loewis | 2006-05-22 10:48:14 +0200 (Mon, 22 May 2006) | 1 line
Patch 1490384: New Icons for the PC build.
........
r46064 | martin.v.loewis | 2006-05-22 11:15:18 +0200 (Mon, 22 May 2006) | 1 line
Patch #1492356: Port to Windows CE (patch set 1).
........
r46065 | tim.peters | 2006-05-22 13:29:41 +0200 (Mon, 22 May 2006) | 4 lines
Define SIZEOF_{DOUBLE,FLOAT} on Windows. Else
Michael Hudson's nice gimmicks for IEEE special
values (infinities, NaNs) don't work.
........
r46070 | bob.ippolito | 2006-05-22 16:31:24 +0200 (Mon, 22 May 2006) | 2 lines
GzipFile.readline performance improvement (~30-40%), patch #1281707
........
r46071 | bob.ippolito | 2006-05-22 17:22:46 +0200 (Mon, 22 May 2006) | 1 line
Revert gzip readline performance patch #1281707 until a more generic performance improvement can be found
........
r46073 | fredrik.lundh | 2006-05-22 17:35:12 +0200 (Mon, 22 May 2006) | 4 lines
docstring tweaks: count counts non-overlapping substrings, not
total number of occurences
........
r46075 | bob.ippolito | 2006-05-22 17:59:12 +0200 (Mon, 22 May 2006) | 1 line
Apply revised patch for GzipFile.readline performance #1281707
........
r46076 | fredrik.lundh | 2006-05-22 18:29:30 +0200 (Mon, 22 May 2006) | 3 lines
needforspeed: speed up unicode repeat, unicode string copy
........
r46079 | fredrik.lundh | 2006-05-22 19:12:58 +0200 (Mon, 22 May 2006) | 4 lines
needforspeed: use memcpy for "long" strings; use a better algorithm
for long repeats.
........
r46084 | tim.peters | 2006-05-22 21:17:04 +0200 (Mon, 22 May 2006) | 7 lines
PyUnicode_Join(): Recent code changes introduced new
compiler warnings on Windows (signed vs unsigned mismatch
in comparisons). Cleaned that up by switching more locals
to Py_ssize_t. Simplified overflow checking (it can _be_
simpler because while these things are declared as
Py_ssize_t, then should in fact never be negative).
........
r46085 | tim.peters | 2006-05-23 07:47:16 +0200 (Tue, 23 May 2006) | 3 lines
unicode_repeat(): Change type of local to Py_ssize_t,
since that's what it should be.
........
r46094 | fredrik.lundh | 2006-05-23 12:10:57 +0200 (Tue, 23 May 2006) | 3 lines
needforspeed: check first *and* last character before doing a full memcmp
........
r46095 | fredrik.lundh | 2006-05-23 12:12:21 +0200 (Tue, 23 May 2006) | 4 lines
needforspeed: fixed unicode "in" operator to use same implementation
approach as find/index
........
r46096 | richard.jones | 2006-05-23 12:37:38 +0200 (Tue, 23 May 2006) | 7 lines
Merge from rjones-funccall branch.
Applied patch zombie-frames-2.diff from sf patch 876206 with updates for
Python 2.5 and also modified to retain the free_list to avoid the 67%
slow-down in pybench recursion test. 5% speed up in function call pybench.
........
r46098 | ronald.oussoren | 2006-05-23 13:04:24 +0200 (Tue, 23 May 2006) | 2 lines
Avoid creating a mess when installing a framework for the second time.
........
r46101 | georg.brandl | 2006-05-23 13:17:21 +0200 (Tue, 23 May 2006) | 3 lines
PyErr_NewException now accepts a tuple of base classes as its
"base" parameter.
........
r46103 | ronald.oussoren | 2006-05-23 13:47:16 +0200 (Tue, 23 May 2006) | 3 lines
Disable linking extensions with -lpython2.5 for darwin. This should fix bug
#1487105.
........
r46104 | ronald.oussoren | 2006-05-23 14:01:11 +0200 (Tue, 23 May 2006) | 6 lines
Patch #1488098.
This patchs makes it possible to create a universal build on OSX 10.4 and use
the result to build extensions on 10.3. It also makes it possible to override
the '-arch' and '-isysroot' compiler arguments for specific extensions.
........
r46108 | andrew.kuchling | 2006-05-23 14:44:36 +0200 (Tue, 23 May 2006) | 1 line
Add some items; mention the sprint
........
r46109 | andrew.kuchling | 2006-05-23 14:47:01 +0200 (Tue, 23 May 2006) | 1 line
Mention string improvements
........
r46110 | andrew.kuchling | 2006-05-23 14:49:35 +0200 (Tue, 23 May 2006) | 4 lines
Use 'speed' instead of 'performance', because I agree with the argument
at http://zestyping.livejournal.com/193260.html that 'erformance' really means
something more general.
........
r46113 | ronald.oussoren | 2006-05-23 17:09:57 +0200 (Tue, 23 May 2006) | 2 lines
An improved script for building the binary distribution on MacOSX.
........
r46128 | richard.jones | 2006-05-23 20:28:17 +0200 (Tue, 23 May 2006) | 3 lines
Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.
........
r46129 | richard.jones | 2006-05-23 20:32:11 +0200 (Tue, 23 May 2006) | 1 line
fix broken merge
........
r46130 | bob.ippolito | 2006-05-23 20:41:17 +0200 (Tue, 23 May 2006) | 1 line
Update Misc/NEWS for gzip patch #1281707
........
r46131 | bob.ippolito | 2006-05-23 20:43:47 +0200 (Tue, 23 May 2006) | 1 line
Update Misc/NEWS for gzip patch #1281707
........
r46132 | fredrik.lundh | 2006-05-23 20:44:25 +0200 (Tue, 23 May 2006) | 7 lines
needforspeed: use append+reverse for rsplit, use "bloom filters" to
speed up splitlines and strip with charsets; etc. rsplit is now as
fast as split in all our tests (reverse takes no time at all), and
splitlines() is nearly as fast as a plain split("\n") in our tests.
and we're not done yet... ;-)
........
r46133 | tim.peters | 2006-05-23 20:45:30 +0200 (Tue, 23 May 2006) | 38 lines
Bug #1334662 / patch #1335972: int(string, base) wrong answers.
In rare cases of strings specifying true values near sys.maxint,
and oddball bases (not decimal or a power of 2), int(string, base)
could deliver insane answers. This repairs all such problems, and
also speeds string->int significantly. On my box, here are %
speedups for decimal strings of various lengths:
length speedup
------ -------
1 12.4%
2 15.7%
3 20.6%
4 28.1%
5 33.2%
6 37.5%
7 41.9%
8 46.3%
9 51.2%
10 19.5%
11 19.9%
12 23.9%
13 23.7%
14 23.3%
15 24.9%
16 25.3%
17 28.3%
18 27.9%
19 35.7%
Note that the difference between 9 and 10 is the difference between
short and long Python ints on a 32-bit box. The patch doesn't
actually do anything to speed conversion to long: the speedup is
due to detecting "unsigned long" overflow more quickly.
This is a bugfix candidate, but it's a non-trivial patch and it
would be painful to separate the "bug fix" from the "speed up" parts.
........
r46134 | bob.ippolito | 2006-05-23 20:46:41 +0200 (Tue, 23 May 2006) | 1 line
Patch #1493701: performance enhancements for struct module.
........
r46136 | andrew.kuchling | 2006-05-23 21:00:45 +0200 (Tue, 23 May 2006) | 1 line
Remove duplicate item
........
r46141 | bob.ippolito | 2006-05-23 21:09:51 +0200 (Tue, 23 May 2006) | 1 line
revert #1493701
........
r46142 | bob.ippolito | 2006-05-23 21:11:34 +0200 (Tue, 23 May 2006) | 1 line
patch #1493701: performance enhancements for struct module
........
r46144 | bob.ippolito | 2006-05-23 21:12:41 +0200 (Tue, 23 May 2006) | 1 line
patch #1493701: performance enhancements for struct module
........
r46148 | bob.ippolito | 2006-05-23 21:25:52 +0200 (Tue, 23 May 2006) | 1 line
fix linking issue, warnings, in struct
........
r46149 | andrew.kuchling | 2006-05-23 21:29:38 +0200 (Tue, 23 May 2006) | 1 line
Add two items
........
r46150 | bob.ippolito | 2006-05-23 21:31:23 +0200 (Tue, 23 May 2006) | 1 line
forward declaration for PyStructType
........
r46151 | bob.ippolito | 2006-05-23 21:32:25 +0200 (Tue, 23 May 2006) | 1 line
fix typo in _struct
........
r46152 | andrew.kuchling | 2006-05-23 21:32:35 +0200 (Tue, 23 May 2006) | 1 line
Add item
........
r46153 | tim.peters | 2006-05-23 21:34:37 +0200 (Tue, 23 May 2006) | 3 lines
Get the Windows build working again (recover from
`struct` module changes).
........
r46155 | fredrik.lundh | 2006-05-23 21:47:35 +0200 (Tue, 23 May 2006) | 3 lines
return 0 on misses, not -1.
........
r46156 | tim.peters | 2006-05-23 23:51:35 +0200 (Tue, 23 May 2006) | 4 lines
test_struct grew weird behavior under regrtest.py -R,
due to a module-level cache. Clearing the cache should
make it stop showing up in refleak reports.
........
r46157 | tim.peters | 2006-05-23 23:54:23 +0200 (Tue, 23 May 2006) | 2 lines
Whitespace normalization.
........
r46158 | tim.peters | 2006-05-23 23:55:53 +0200 (Tue, 23 May 2006) | 2 lines
Add missing svn:eol-style property to text files.
........
r46161 | fredrik.lundh | 2006-05-24 12:20:36 +0200 (Wed, 24 May 2006) | 3 lines
use Py_ssize_t for string indexes (thanks, neal!)
........
r46173 | fredrik.lundh | 2006-05-24 16:28:11 +0200 (Wed, 24 May 2006) | 14 lines
needforspeed: use "fastsearch" for count and findstring helpers. this
results in a 2.5x speedup on the stringbench count tests, and a 20x (!)
speedup on the stringbench search/find/contains test, compared to 2.5a2.
for more on the algorithm, see:
http://effbot.org/zone/stringlib.htm
if you get weird results, you can disable the new algoritm by undefining
USE_FAST in Objects/unicodeobject.c.
enjoy /F
........
r46182 | fredrik.lundh | 2006-05-24 17:11:01 +0200 (Wed, 24 May 2006) | 3 lines
needforspeedindeed: use fastsearch also for __contains__
........
r46184 | bob.ippolito | 2006-05-24 17:32:06 +0200 (Wed, 24 May 2006) | 1 line
refactor unpack, add unpack_from
........
r46189 | fredrik.lundh | 2006-05-24 18:35:18 +0200 (Wed, 24 May 2006) | 4 lines
needforspeed: refactored the replace code slightly; special-case
constant-length changes; use fastsearch to locate the first match.
........
r46198 | andrew.dalke | 2006-05-24 20:55:37 +0200 (Wed, 24 May 2006) | 10 lines
Added a slew of test for string replace, based various corner cases from
the Need For Speed sprint coding. Includes commented out overflow tests
which will be uncommented once the code is fixed.
This test will break the 8-bit string tests because
"".replace("", "A") == "" when it should == "A"
We have a fix for it, which should be added tomorrow.
........
r46200 | tim.peters | 2006-05-24 22:27:18 +0200 (Wed, 24 May 2006) | 2 lines
We can't leave the checked-in tests broken.
........
r46201 | tim.peters | 2006-05-24 22:29:44 +0200 (Wed, 24 May 2006) | 2 lines
Whitespace normalization.
........
r46202 | tim.peters | 2006-05-24 23:00:45 +0200 (Wed, 24 May 2006) | 4 lines
Disable the damn empty-string replace test -- it can't
be make to pass now for unicode if it passes for str, or
vice versa.
........
r46203 | tim.peters | 2006-05-24 23:10:40 +0200 (Wed, 24 May 2006) | 58 lines
Heavily fiddled variant of patch #1442927: PyLong_FromString optimization.
``long(str, base)`` is now up to 6x faster for non-power-of-2 bases. The
largest speedup is for inputs with about 1000 decimal digits. Conversion
from non-power-of-2 bases remains quadratic-time in the number of input
digits (it was and remains linear-time for bases 2, 4, 8, 16 and 32).
Speedups at various lengths for decimal inputs, comparing 2.4.3 with
current trunk. Note that it's actually a bit slower for 1-digit strings:
len speedup
---- -------
1 -4.5%
2 4.6%
3 8.3%
4 12.7%
5 16.9%
6 28.6%
7 35.5%
8 44.3%
9 46.6%
10 55.3%
11 65.7%
12 77.7%
13 73.4%
14 75.3%
15 85.2%
16 103.0%
17 95.1%
18 112.8%
19 117.9%
20 128.3%
30 174.5%
40 209.3%
50 236.3%
60 254.3%
70 262.9%
80 295.8%
90 297.3%
100 324.5%
200 374.6%
300 403.1%
400 391.1%
500 388.7%
600 440.6%
700 468.7%
800 498.0%
900 507.2%
1000 501.2%
2000 450.2%
3000 463.2%
4000 452.5%
5000 440.6%
6000 439.6%
7000 424.8%
8000 418.1%
9000 417.7%
........
r46204 | andrew.kuchling | 2006-05-25 02:23:03 +0200 (Thu, 25 May 2006) | 1 line
Minor edits; add an item
........
r46205 | fred.drake | 2006-05-25 04:42:25 +0200 (Thu, 25 May 2006) | 3 lines
fix broken links in PDF
(SF patch #1281291, contributed by Rory Yorke)
........
r46208 | walter.doerwald | 2006-05-25 10:53:28 +0200 (Thu, 25 May 2006) | 2 lines
Replace tab inside comment with space.
........
r46209 | thomas.wouters | 2006-05-25 13:25:51 +0200 (Thu, 25 May 2006) | 4 lines
Fix #1488915, Multiple dots in relative import statement raise SyntaxError.
........
r46210 | thomas.wouters | 2006-05-25 13:26:25 +0200 (Thu, 25 May 2006) | 5 lines
Update graminit.c for the fix for #1488915, Multiple dots in relative import
statement raise SyntaxError, and add testcase.
........
r46211 | andrew.kuchling | 2006-05-25 14:27:59 +0200 (Thu, 25 May 2006) | 1 line
Add entry; and fix a typo
........
r46214 | fredrik.lundh | 2006-05-25 17:22:03 +0200 (Thu, 25 May 2006) | 7 lines
needforspeed: speed up upper and lower for 8-bit string objects.
(the unicode versions of these are still 2x faster on windows,
though...)
based on work by Andrew Dalke, with tweaks by yours truly.
........
r46216 | fredrik.lundh | 2006-05-25 17:49:45 +0200 (Thu, 25 May 2006) | 5 lines
needforspeed: make new upper/lower work properly for single-character
strings too... (thanks to georg brandl for spotting the exact problem
faster than anyone else)
........
r46217 | kristjan.jonsson | 2006-05-25 17:53:30 +0200 (Thu, 25 May 2006) | 1 line
Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms
........
r46219 | fredrik.lundh | 2006-05-25 18:10:12 +0200 (Thu, 25 May 2006) | 4 lines
needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C
versions if they're not defined.
........
r46220 | andrew.kuchling | 2006-05-25 18:23:15 +0200 (Thu, 25 May 2006) | 1 line
Fix comment typos
........
r46221 | andrew.dalke | 2006-05-25 18:30:52 +0200 (Thu, 25 May 2006) | 2 lines
Added tests for implementation error we came up with in the need for speed sprint.
........
r46222 | andrew.kuchling | 2006-05-25 18:34:54 +0200 (Thu, 25 May 2006) | 1 line
Fix another typo
........
r46223 | kristjan.jonsson | 2006-05-25 18:39:27 +0200 (Thu, 25 May 2006) | 1 line
Fix incorrect documentation for the Py_IS_FINITE(X) macro.
........
r46224 | fredrik.lundh | 2006-05-25 18:46:54 +0200 (Thu, 25 May 2006) | 3 lines
needforspeed: check for overflow in replace (from Andrew Dalke)
........
r46226 | fredrik.lundh | 2006-05-25 19:08:14 +0200 (Thu, 25 May 2006) | 5 lines
needforspeed: new replace implementation by Andrew Dalke. replace is
now about 3x faster on my machine, for the replace tests from string-
bench.
........
r46227 | tim.peters | 2006-05-25 19:34:03 +0200 (Thu, 25 May 2006) | 5 lines
A new table to help string->integer conversion was added yesterday to
both mystrtoul.c and longobject.c. Share the table instead. Also
cut its size by 64 entries (they had been used for an inscrutable
trick originally, but the code no longer tries to use that trick).
........
r46229 | andrew.dalke | 2006-05-25 19:53:00 +0200 (Thu, 25 May 2006) | 11 lines
Fixed problem identified by Georg. The special-case in-place code for replace
made a copy of the string using PyString_FromStringAndSize(s, n) and modify
the copied string in-place. However, 1 (and 0) character strings are shared
from a cache. This cause "A".replace("A", "a") to change the cached version
of "A" -- used by everyone.
Now may the copy with NULL as the string and do the memcpy manually. I've
added regression tests to check if this happens in the future. Perhaps
there should be a PyString_Copy for this case?
........
r46230 | fredrik.lundh | 2006-05-25 19:55:31 +0200 (Thu, 25 May 2006) | 4 lines
needforspeed: use "fastsearch" for count. this results in a 3x speedup
for the related stringbench tests.
........
r46231 | andrew.dalke | 2006-05-25 20:03:25 +0200 (Thu, 25 May 2006) | 4 lines
Code had returned an ssize_t, upcast to long, then converted with PyInt_FromLong.
Now using PyInt_FromSsize_t.
........
r46233 | andrew.kuchling | 2006-05-25 20:11:16 +0200 (Thu, 25 May 2006) | 1 line
Comment typo
........
r46234 | andrew.dalke | 2006-05-25 20:18:39 +0200 (Thu, 25 May 2006) | 4 lines
Added overflow test for adding two (very) large strings where the
new string is over max Py_ssize_t. I have no way to test it on my
box or any box I have access to. At least it doesn't break anything.
........
r46235 | bob.ippolito | 2006-05-25 20:20:23 +0200 (Thu, 25 May 2006) | 1 line
Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm
........
r46238 | georg.brandl | 2006-05-25 20:44:09 +0200 (Thu, 25 May 2006) | 3 lines
Guard the _active.remove() call to avoid errors when there is no _active list.
........
r46239 | fredrik.lundh | 2006-05-25 20:44:29 +0200 (Thu, 25 May 2006) | 4 lines
needforspeed: use fastsearch also for find/index and contains. the
related tests are now about 10x faster.
........
r46240 | bob.ippolito | 2006-05-25 20:44:50 +0200 (Thu, 25 May 2006) | 1 line
Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifdef'ed out code that will return int instead of long when in bounds (not active since it's an API and doc change)
........
r46241 | jack.diederich | 2006-05-25 20:47:15 +0200 (Thu, 25 May 2006) | 1 line
* eliminate warning by reverting tmp_s type to 'const char*'
........
r46242 | bob.ippolito | 2006-05-25 21:03:19 +0200 (Thu, 25 May 2006) | 1 line
Fix Cygwin compiler issue
........
r46243 | bob.ippolito | 2006-05-25 21:15:27 +0200 (Thu, 25 May 2006) | 1 line
fix a struct regression where long would be returned for short unsigned integers
........
r46244 | georg.brandl | 2006-05-25 21:15:31 +0200 (Thu, 25 May 2006) | 4 lines
Replace PyObject_CallFunction calls with only object args
with PyObject_CallFunctionObjArgs, which is 30% faster.
........
r46245 | fredrik.lundh | 2006-05-25 21:19:05 +0200 (Thu, 25 May 2006) | 3 lines
needforspeed: use insert+reverse instead of append
........
r46246 | bob.ippolito | 2006-05-25 21:33:38 +0200 (Thu, 25 May 2006) | 1 line
Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incorrect INT_MIN and INT_MAX
........
r46248 | bob.ippolito | 2006-05-25 21:56:56 +0200 (Thu, 25 May 2006) | 1 line
Use faster struct pack/unpack functions for the endian table that matches the host's
........
r46249 | bob.ippolito | 2006-05-25 21:59:56 +0200 (Thu, 25 May 2006) | 1 line
enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --enable-universalsdk)
........
r46252 | georg.brandl | 2006-05-25 22:28:10 +0200 (Thu, 25 May 2006) | 4 lines
Someone seems to just have copy-pasted the docs of
tp_compare to tp_richcompare ;)
........
r46253 | brett.cannon | 2006-05-25 22:44:08 +0200 (Thu, 25 May 2006) | 2 lines
Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() .
........
r46254 | bob.ippolito | 2006-05-25 22:52:38 +0200 (Thu, 25 May 2006) | 1 line
squelch gcc4 darwin/x86 compiler warnings
........
r46255 | bob.ippolito | 2006-05-25 23:09:45 +0200 (Thu, 25 May 2006) | 1 line
fix test_float regression and 64-bit size mismatch issue
........
r46256 | georg.brandl | 2006-05-25 23:11:56 +0200 (Thu, 25 May 2006) | 3 lines
Add a x-ref to newer calling APIs.
........
r46257 | ronald.oussoren | 2006-05-25 23:30:54 +0200 (Thu, 25 May 2006) | 2 lines
Fix minor typo in prep_cif.c
........
r46259 | brett.cannon | 2006-05-25 23:33:11 +0200 (Thu, 25 May 2006) | 4 lines
Change test_values so that it compares the lowercasing of group names since getgrall() can return all lowercase names while getgrgid() returns proper casing.
Discovered on Ubuntu 5.04 (custom).
........
r46261 | tim.peters | 2006-05-25 23:50:17 +0200 (Thu, 25 May 2006) | 7 lines
Some Win64 pre-release in 2000 didn't support
QueryPerformanceCounter(), but we believe Win64 does
support it now. So use in time.clock().
It would be peachy if someone with a Win64 box tried
this ;-)
........
r46262 | tim.peters | 2006-05-25 23:52:19 +0200 (Thu, 25 May 2006) | 2 lines
Whitespace normalization.
........
r46263 | bob.ippolito | 2006-05-25 23:58:05 +0200 (Thu, 25 May 2006) | 1 line
Add missing files from x86 darwin ctypes patch
........
r46264 | brett.cannon | 2006-05-26 00:00:14 +0200 (Fri, 26 May 2006) | 2 lines
Move over to use of METH_O and METH_NOARGS.
........
r46265 | tim.peters | 2006-05-26 00:25:25 +0200 (Fri, 26 May 2006) | 3 lines
Repair idiot typo, and complete the job of trying to
use the Windows time.clock() implementation on Win64.
........
r46266 | tim.peters | 2006-05-26 00:28:46 +0200 (Fri, 26 May 2006) | 9 lines
Patch #1494387: SVN longobject.c compiler warnings
The SIGCHECK macro defined here has always been bizarre, but
it apparently causes compiler warnings on "Sun Studio 11".
I believe the warnings are bogus, but it doesn't hurt to make
the macro definition saner.
Bugfix candidate (but I'm not going to bother).
........
r46268 | fredrik.lundh | 2006-05-26 01:27:53 +0200 (Fri, 26 May 2006) | 8 lines
needforspeed: partition for 8-bit strings. for some simple tests,
this is on par with a corresponding find, and nearly twice as fast
as split(sep, 1)
full tests, a unicode version, and documentation will follow to-
morrow.
........
r46271 | andrew.kuchling | 2006-05-26 03:46:22 +0200 (Fri, 26 May 2006) | 1 line
Add Soc student
........
r46272 | ronald.oussoren | 2006-05-26 10:41:25 +0200 (Fri, 26 May 2006) | 3 lines
Without this patch OSX users couldn't add new help sources because the code
tried to update one item in a tuple.
........
r46273 | fredrik.lundh | 2006-05-26 10:54:28 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: partition implementation, part two.
feel free to improve the documentation and the docstrings.
........
r46274 | georg.brandl | 2006-05-26 11:05:54 +0200 (Fri, 26 May 2006) | 3 lines
Clarify docs for str.partition().
........
r46278 | fredrik.lundh | 2006-05-26 11:46:59 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: use METH_O for argument handling, which made partition some
~15% faster for the current tests (which is noticable faster than a corre-
sponding find call). thanks to neal-who-never-sleeps for the tip.
........
r46280 | fredrik.lundh | 2006-05-26 12:27:17 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: use Py_ssize_t for the fastsearch counter and skip
length (thanks, neal!). and yes, I've verified that this doesn't
slow things down ;-)
........
r46285 | andrew.dalke | 2006-05-26 13:11:38 +0200 (Fri, 26 May 2006) | 2 lines
Added a few more test cases for whitespace split. These strings have leading whitespace.
........
r46286 | jack.diederich | 2006-05-26 13:15:17 +0200 (Fri, 26 May 2006) | 1 line
use Py_ssize_t in places that may need it
........
r46287 | andrew.dalke | 2006-05-26 13:15:22 +0200 (Fri, 26 May 2006) | 2 lines
Added split whitespace checks for characters other than space.
........
r46288 | ronald.oussoren | 2006-05-26 13:17:55 +0200 (Fri, 26 May 2006) | 2 lines
Fix buglet in postinstall script, it would generate an invalid .cshrc file.
........
r46290 | georg.brandl | 2006-05-26 13:26:11 +0200 (Fri, 26 May 2006) | 3 lines
Add "partition" to UserString.
........
r46291 | fredrik.lundh | 2006-05-26 13:29:39 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: added Py_LOCAL macro, based on the LOCAL macro used
for SRE and others. applied Py_LOCAL to relevant portion of ceval,
which gives a 1-2% speedup on my machine. ymmv.
........
r46292 | jack.diederich | 2006-05-26 13:37:20 +0200 (Fri, 26 May 2006) | 1 line
when generating python code prefer to generate valid python code
........
r46293 | fredrik.lundh | 2006-05-26 13:38:15 +0200 (Fri, 26 May 2006) | 3 lines
use Py_LOCAL also for string and unicode objects
........
r46294 | ronald.oussoren | 2006-05-26 13:38:39 +0200 (Fri, 26 May 2006) | 12 lines
- Search the sqlite specific search directories
after the normal include directories when looking
for the version of sqlite to use.
- On OSX:
* Extract additional include and link directories
from the CFLAGS and LDFLAGS, if the user has
bothered to specify them we might as wel use them.
* Add '-Wl,-search_paths_first' to the extra_link_args
for readline and sqlite. This makes it possible to
use a static library to override the system provided
dynamic library.
........
r46295 | ronald.oussoren | 2006-05-26 13:43:26 +0200 (Fri, 26 May 2006) | 6 lines
Integrate installing a framework in the 'make install'
target. Until now users had to use 'make frameworkinstall'
to install python when it is configured with '--enable-framework'.
This tends to confuse users that don't hunt for readme files
hidden in platform specific directories :-)
........
r46297 | fredrik.lundh | 2006-05-26 13:54:04 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive"
LOCAL inlining; also added some missing whitespace
........
r46298 | andrew.kuchling | 2006-05-26 14:01:44 +0200 (Fri, 26 May 2006) | 1 line
Typo fixes
........
r46299 | fredrik.lundh | 2006-05-26 14:01:49 +0200 (Fri, 26 May 2006) | 4 lines
Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers,
but Trent's copy thinks that it's an anachronism...
........
r46300 | martin.blais | 2006-05-26 14:03:27 +0200 (Fri, 26 May 2006) | 12 lines
Support for buffer protocol for socket and struct.
* Added socket.recv_buf() and socket.recvfrom_buf() methods, that use the buffer
protocol (send and sendto already did).
* Added struct.pack_to(), that is the corresponding buffer compatible method to
unpack_from().
* Fixed minor typos in arraymodule.
........
r46302 | ronald.oussoren | 2006-05-26 14:23:20 +0200 (Fri, 26 May 2006) | 6 lines
- Remove previous version of the binary distribution script for OSX
- Some small bugfixes for the IDLE.app wrapper
- Tweaks to build-installer to ensure that python gets build in the right way,
including sqlite3.
- Updated readme files
........
r46305 | tim.peters | 2006-05-26 14:26:21 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46307 | andrew.dalke | 2006-05-26 14:28:15 +0200 (Fri, 26 May 2006) | 7 lines
I like tests.
The new split functions use a preallocated list. Added tests which exceed
the preallocation size, to exercise list appends/resizes.
Also added more edge case tests.
........
r46308 | andrew.dalke | 2006-05-26 14:31:00 +0200 (Fri, 26 May 2006) | 2 lines
Test cases for off-by-one errors in string split with multicharacter pattern.
........
r46309 | tim.peters | 2006-05-26 14:31:20 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46313 | andrew.kuchling | 2006-05-26 14:39:48 +0200 (Fri, 26 May 2006) | 1 line
Add str.partition()
........
r46314 | bob.ippolito | 2006-05-26 14:52:53 +0200 (Fri, 26 May 2006) | 1 line
quick hack to fix busted binhex test
........
r46316 | andrew.dalke | 2006-05-26 15:05:55 +0200 (Fri, 26 May 2006) | 2 lines
Added more rstrip tests, including for prealloc'ed arrays
........
r46320 | bob.ippolito | 2006-05-26 15:15:44 +0200 (Fri, 26 May 2006) | 1 line
fix #1229380 No struct.pack exception for some out of range integers
........
r46325 | tim.peters | 2006-05-26 15:39:17 +0200 (Fri, 26 May 2006) | 2 lines
Use open() to open files (was using file()).
........
r46327 | andrew.dalke | 2006-05-26 16:00:45 +0200 (Fri, 26 May 2006) | 37 lines
Changes to string.split/rsplit on whitespace to preallocate space in the
results list.
Originally it allocated 0 items and used the list growth during append. Now
it preallocates 12 items so the first few appends don't need list reallocs.
("Here are some words ."*2).split(None, 1) is 7% faster
("Here are some words ."*2).split() is is 15% faster
(Your milage may vary, see dealership for details.)
File parsing like this
for line in f:
count += len(line.split())
is also about 15% faster. There is a slowdown of about 3% for large
strings because of the additional overhead of checking if the append is
to a preallocated region of the list or not. This will be the rare case.
It could be improved with special case code but we decided it was not
useful enough.
There is a cost of 12*sizeof(PyObject *) bytes per list. For the normal
case of file parsing this is not a problem because of the lists have
a short lifetime. We have not come up with cases where this is a problem
in real life.
I chose 12 because human text averages about 11 words per line in books,
one of my data sets averages 6.2 words with a final peak at 11 words per
line, and I work with a tab delimited data set with 8 tabs per line (or
9 words per line). 12 encompasses all of these.
Also changed the last rstrip code to append then reverse, rather than
doing insert(0). The strip() and rstrip() times are now comparable.
........
r46328 | tim.peters | 2006-05-26 16:02:05 +0200 (Fri, 26 May 2006) | 5 lines
Explicitly close files. I'm trying to stop the frequent spurious test_tarfile
failures on Windows buildbots, but it's hard to know how since the regrtest
failure output is useless here, and it never fails when a buildbot slave runs
test_tarfile the second time in verbose mode.
........
r46329 | andrew.kuchling | 2006-05-26 16:03:41 +0200 (Fri, 26 May 2006) | 1 line
Add buffer support for struct, socket
........
r46330 | andrew.kuchling | 2006-05-26 16:04:19 +0200 (Fri, 26 May 2006) | 1 line
Typo fix
........
r46331 | bob.ippolito | 2006-05-26 16:07:23 +0200 (Fri, 26 May 2006) | 1 line
Fix distutils so that libffi will cross-compile between darwin/x86 and darwin/ppc
........
r46333 | bob.ippolito | 2006-05-26 16:23:21 +0200 (Fri, 26 May 2006) | 1 line
Fix _struct typo that broke some 64-bit platforms
........
r46335 | bob.ippolito | 2006-05-26 16:29:35 +0200 (Fri, 26 May 2006) | 1 line
Enable PY_USE_INT_WHEN_POSSIBLE in struct
........
r46343 | andrew.dalke | 2006-05-26 17:21:01 +0200 (Fri, 26 May 2006) | 2 lines
Eeked out another 3% or so performance in split whitespace by cleaning up the algorithm.
........
r46352 | andrew.dalke | 2006-05-26 18:22:52 +0200 (Fri, 26 May 2006) | 3 lines
Test for more edge strip cases; leading and trailing separator gets removed
even with strip(..., 0)
........
r46354 | bob.ippolito | 2006-05-26 18:23:28 +0200 (Fri, 26 May 2006) | 1 line
fix signed/unsigned mismatch in struct
........
r46355 | steve.holden | 2006-05-26 18:27:59 +0200 (Fri, 26 May 2006) | 5 lines
Add -t option to allow easy test selection.
Action verbose option correctly.
Tweak operation counts. Add empty and new instances tests.
Enable comparisons across different warp factors. Change version.
........
r46356 | fredrik.lundh | 2006-05-26 18:32:42 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: use Py_LOCAL on a few more locals in stringobject.c
........
r46357 | thomas.heller | 2006-05-26 18:42:44 +0200 (Fri, 26 May 2006) | 4 lines
For now, I gave up with automatic conversion of reST to Python-latex,
so I'm writing this in latex now.
Skeleton for the ctypes reference.
........
r46358 | tim.peters | 2006-05-26 18:49:28 +0200 (Fri, 26 May 2006) | 3 lines
Repair Windows compiler warnings about mixing
signed and unsigned integral types in comparisons.
........
r46359 | tim.peters | 2006-05-26 18:52:04 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46360 | tim.peters | 2006-05-26 18:53:04 +0200 (Fri, 26 May 2006) | 2 lines
Add missing svn:eol-style property to text files.
........
r46362 | fredrik.lundh | 2006-05-26 19:04:58 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: stringlib refactoring (in progress)
........
r46363 | thomas.heller | 2006-05-26 19:18:33 +0200 (Fri, 26 May 2006) | 1 line
Write some docs.
........
r46364 | fredrik.lundh | 2006-05-26 19:22:38 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: stringlib refactoring (in progress)
........
r46366 | fredrik.lundh | 2006-05-26 19:26:39 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: cleanup
........
r46367 | fredrik.lundh | 2006-05-26 19:31:41 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: remove remaining USE_FAST macros; if fastsearch was
broken, someone would have noticed by now ;-)
........
r46368 | steve.holden | 2006-05-26 19:41:32 +0200 (Fri, 26 May 2006) | 5 lines
Use minimum calibration time rather than avergae to avoid
the illusion of negative run times. Halt with an error if
run times go below 10 ms, indicating that results will be
unreliable.
........
r46370 | thomas.heller | 2006-05-26 19:47:40 +0200 (Fri, 26 May 2006) | 2 lines
Reordered, and wrote more docs.
........
r46372 | georg.brandl | 2006-05-26 20:03:31 +0200 (Fri, 26 May 2006) | 9 lines
Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache valid and
invalid file paths for the built-in import machinery which leads to
fewer open calls on startup.
Also fix issue with PEP 302 style import hooks which lead to more open()
calls than necessary.
........
r46373 | fredrik.lundh | 2006-05-26 20:05:34 +0200 (Fri, 26 May 2006) | 3 lines
removed unnecessary include
........
r46377 | fredrik.lundh | 2006-05-26 20:15:38 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: added rpartition implementation
........
r46380 | fredrik.lundh | 2006-05-26 20:24:15 +0200 (Fri, 26 May 2006) | 5 lines
needspeed: rpartition documentation, tests, and a bug fixes.
feel free to add more tests and improve the documentation.
........
r46381 | steve.holden | 2006-05-26 20:26:21 +0200 (Fri, 26 May 2006) | 4 lines
Revert tests to MAL's original round sizes to retiain comparability
from long ago and far away. Stop calling this pybench 1.4 because it
isn't. Remove the empty test, which was a bad idea.
........
r46387 | andrew.kuchling | 2006-05-26 20:41:18 +0200 (Fri, 26 May 2006) | 1 line
Add rpartition() and path caching
........
r46388 | andrew.dalke | 2006-05-26 21:02:09 +0200 (Fri, 26 May 2006) | 10 lines
substring split now uses /F's fast string matching algorithm.
(If compiled without FAST search support, changed the pre-memcmp test
to check the last character as well as the first. This gave a 25%
speedup for my test case.)
Rewrote the split algorithms so they stop when maxsplit gets to 0.
Previously they did a string match first then checked if the maxsplit
was reached. The new way prevents a needless string search.
........
r46391 | brett.cannon | 2006-05-26 21:04:47 +0200 (Fri, 26 May 2006) | 2 lines
Change C spacing to 4 spaces by default to match PEP 7 for new C files.
........
r46392 | georg.brandl | 2006-05-26 21:04:47 +0200 (Fri, 26 May 2006) | 3 lines
Exception isn't the root of all exception classes anymore.
........
r46397 | fredrik.lundh | 2006-05-26 21:23:21 +0200 (Fri, 26 May 2006) | 3 lines
added rpartition method to UserString class
........
r46398 | fredrik.lundh | 2006-05-26 21:24:53 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: stringlib refactoring, continued. added count and
find helpers; updated unicodeobject to use stringlib_count
........
r46400 | fredrik.lundh | 2006-05-26 21:29:05 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: stringlib refactoring: use stringlib/find for unicode
find
........
r46403 | fredrik.lundh | 2006-05-26 21:33:03 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: use a macro to fix slice indexes
........
r46404 | thomas.heller | 2006-05-26 21:43:45 +0200 (Fri, 26 May 2006) | 1 line
Write more docs.
........
r46406 | fredrik.lundh | 2006-05-26 21:48:07 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: stringlib refactoring: use stringlib/find for string find
........
r46407 | andrew.kuchling | 2006-05-26 21:51:10 +0200 (Fri, 26 May 2006) | 1 line
Comment typo
........
r46409 | georg.brandl | 2006-05-26 22:04:44 +0200 (Fri, 26 May 2006) | 3 lines
Replace Py_BuildValue("OO") by PyTuple_Pack.
........
r46411 | georg.brandl | 2006-05-26 22:14:47 +0200 (Fri, 26 May 2006) | 2 lines
Patch #1492218: document None being a constant.
........
r46415 | georg.brandl | 2006-05-26 22:22:50 +0200 (Fri, 26 May 2006) | 3 lines
Simplify calling.
........
r46416 | andrew.dalke | 2006-05-26 22:25:22 +0200 (Fri, 26 May 2006) | 4 lines
Added limits to the replace code so it does not count all of the matching
patterns in a string, only the number needed by the max limit.
........
r46417 | bob.ippolito | 2006-05-26 22:25:23 +0200 (Fri, 26 May 2006) | 1 line
enable all of the struct tests, use ssize_t, fix some whitespace
........
r46418 | tim.peters | 2006-05-26 22:56:56 +0200 (Fri, 26 May 2006) | 2 lines
Record Iceland sprint attendees.
........
r46421 | tim.peters | 2006-05-26 23:51:13 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46422 | steve.holden | 2006-05-27 00:17:54 +0200 (Sat, 27 May 2006) | 2 lines
Add Richard Tew to developers
........
r46423 | steve.holden | 2006-05-27 00:33:20 +0200 (Sat, 27 May 2006) | 2 lines
Update help text and documentaition.
........
r46424 | steve.holden | 2006-05-27 00:39:27 +0200 (Sat, 27 May 2006) | 2 lines
Blasted typos ...
........
r46425 | andrew.dalke | 2006-05-27 00:49:03 +0200 (Sat, 27 May 2006) | 2 lines
Added description of why splitlines doesn't use the prealloc strategy
........
r46426 | tim.peters | 2006-05-27 01:14:37 +0200 (Sat, 27 May 2006) | 19 lines
Patch 1145039.
set_exc_info(), reset_exc_info(): By exploiting the
likely (who knows?) invariant that when an exception's
`type` is NULL, its `value` and `traceback` are also NULL,
save some cycles in heavily-executed code.
This is a "a kronar saved is a kronar earned" patch: the
speedup isn't reliably measurable, but it obviously does
reduce the operation count in the normal (no exception
raised) path through PyEval_EvalFrameEx().
The tim-exc_sanity branch tries to push this harder, but
is still blowing up (at least in part due to pre-existing
subtle bugs that appear to have no other visible
consequences!).
Not a bugfix candidate.
........
r46429 | steve.holden | 2006-05-27 02:51:52 +0200 (Sat, 27 May 2006) | 2 lines
Reinstate new-style object tests.
........
r46430 | neal.norwitz | 2006-05-27 07:18:57 +0200 (Sat, 27 May 2006) | 1 line
Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code looked duplicated, I wonder if a utility function could help reduce the duplication here.)
........
r46431 | neal.norwitz | 2006-05-27 07:21:30 +0200 (Sat, 27 May 2006) | 4 lines
Fix Coverity warnings.
- Check the correct variable (str_obj, not str) for NULL
- sep_len was already verified it wasn't 0
........
r46432 | martin.v.loewis | 2006-05-27 10:36:52 +0200 (Sat, 27 May 2006) | 2 lines
Patch 1494554: Update numeric properties to Unicode 4.1.
........
r46433 | martin.v.loewis | 2006-05-27 10:54:29 +0200 (Sat, 27 May 2006) | 2 lines
Explain why 'consumed' is initialized.
........
r46436 | fredrik.lundh | 2006-05-27 12:05:10 +0200 (Sat, 27 May 2006) | 3 lines
needforspeed: more stringlib refactoring
........
r46438 | fredrik.lundh | 2006-05-27 12:39:48 +0200 (Sat, 27 May 2006) | 5 lines
needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in-
lining killed performance on certain Intel boxes, and the "aggressive"
macro itself gives most of the benefits on others.
........
r46439 | andrew.dalke | 2006-05-27 13:04:36 +0200 (Sat, 27 May 2006) | 2 lines
fixed typo
........
r46440 | martin.v.loewis | 2006-05-27 13:07:49 +0200 (Sat, 27 May 2006) | 2 lines
Revert bogus change committed in 46432 to this file.
........
r46444 | andrew.kuchling | 2006-05-27 13:26:33 +0200 (Sat, 27 May 2006) | 1 line
Add Py_LOCAL macros
........
r46450 | bob.ippolito | 2006-05-27 13:47:12 +0200 (Sat, 27 May 2006) | 1 line
Remove the range checking and int usage #defines from _struct and strip out the now-dead code
........
r46454 | bob.ippolito | 2006-05-27 14:11:36 +0200 (Sat, 27 May 2006) | 1 line
Fix up struct docstrings, add struct.pack_to function for symmetry
........
r46456 | richard.jones | 2006-05-27 14:29:24 +0200 (Sat, 27 May 2006) | 2 lines
Conversion of exceptions over from faked-up classes to new-style C types.
........
r46457 | georg.brandl | 2006-05-27 14:30:25 +0200 (Sat, 27 May 2006) | 3 lines
Add news item for new-style exception class branch merge.
........
r46458 | tim.peters | 2006-05-27 14:36:53 +0200 (Sat, 27 May 2006) | 3 lines
More random thrashing trying to understand spurious
Windows failures. Who's keeping a bz2 file open?
........
r46460 | andrew.kuchling | 2006-05-27 15:44:37 +0200 (Sat, 27 May 2006) | 1 line
Mention new-style exceptions
........
r46461 | richard.jones | 2006-05-27 15:50:42 +0200 (Sat, 27 May 2006) | 1 line
credit where credit is due
........
r46462 | georg.brandl | 2006-05-27 16:02:03 +0200 (Sat, 27 May 2006) | 3 lines
Always close BZ2Proxy object. Remove unnecessary struct usage.
........
r46463 | tim.peters | 2006-05-27 16:13:13 +0200 (Sat, 27 May 2006) | 2 lines
The cheery optimism of old age.
........
r46464 | andrew.dalke | 2006-05-27 16:16:40 +0200 (Sat, 27 May 2006) | 2 lines
cleanup - removed trailing whitespace
........
r46465 | georg.brandl | 2006-05-27 16:41:55 +0200 (Sat, 27 May 2006) | 3 lines
Remove spurious semicolons after macro invocations.
........
r46468 | fredrik.lundh | 2006-05-27 16:58:20 +0200 (Sat, 27 May 2006) | 4 lines
needforspeed: replace improvements, changed to Py_LOCAL_INLINE
where appropriate
........
r46469 | fredrik.lundh | 2006-05-27 17:20:22 +0200 (Sat, 27 May 2006) | 4 lines
needforspeed: stringlib refactoring: changed find_obj to find_slice,
to enable use from stringobject
........
r46470 | fredrik.lundh | 2006-05-27 17:26:19 +0200 (Sat, 27 May 2006) | 3 lines
needforspeed: stringlib refactoring: use find_slice for stringobject
........
r46472 | kristjan.jonsson | 2006-05-27 17:41:31 +0200 (Sat, 27 May 2006) | 1 line
Add a PCBuild8 build directory for building with Visual Studio .NET 2005. Contains a special project to perform profile guided optimizations on the pythoncore.dll, by instrumenting and running pybench.py
........
r46473 | jack.diederich | 2006-05-27 17:44:34 +0200 (Sat, 27 May 2006) | 3 lines
needforspeed: use PyObject_MALLOC instead of system malloc for small
allocations. Use PyMem_MALLOC for larger (1k+) chunks. 1%-2% speedup.
........
r46474 | bob.ippolito | 2006-05-27 17:53:49 +0200 (Sat, 27 May 2006) | 1 line
fix struct regression on 64-bit platforms
........
r46475 | richard.jones | 2006-05-27 18:07:28 +0200 (Sat, 27 May 2006) | 1 line
doc string additions and tweaks
........
r46477 | richard.jones | 2006-05-27 18:15:11 +0200 (Sat, 27 May 2006) | 1 line
move semicolons
........
r46478 | george.yoshida | 2006-05-27 18:32:44 +0200 (Sat, 27 May 2006) | 2 lines
minor markup nits
........
r46488 | george.yoshida | 2006-05-27 18:51:43 +0200 (Sat, 27 May 2006) | 3 lines
End of Ch.3 is now about "with statement".
Avoid obsolescence by directly referring to the section.
........
r46489 | george.yoshida | 2006-05-27 19:09:17 +0200 (Sat, 27 May 2006) | 2 lines
fix typo
........
2006-05-27 16:21:47 -03:00
|
|
|
# Normalization assures that hash(100E-1) == hash(10)
|
2005-03-15 00:59:17 -04:00
|
|
|
if self._is_special:
|
|
|
|
if self._isnan():
|
|
|
|
raise TypeError('Cannot hash a NaN value.')
|
|
|
|
return hash(str(self))
|
2004-07-01 08:01:35 -03:00
|
|
|
i = int(self)
|
|
|
|
if self == Decimal(i):
|
|
|
|
return hash(i)
|
|
|
|
assert self.__nonzero__() # '-0' handled by integer case
|
|
|
|
return hash(str(self.normalize()))
|
|
|
|
|
|
|
|
def as_tuple(self):
|
|
|
|
"""Represents the number as a triple tuple.
|
|
|
|
|
|
|
|
To show the internals exactly as they are.
|
|
|
|
"""
|
|
|
|
return (self._sign, self._int, self._exp)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
"""Represents the number as an instance of Decimal."""
|
|
|
|
# Invariant: eval(repr(d)) == d
|
|
|
|
return 'Decimal("%s")' % str(self)
|
|
|
|
|
|
|
|
def __str__(self, eng = 0, context=None):
|
|
|
|
"""Return string representation of the number in scientific notation.
|
|
|
|
|
|
|
|
Captures all of the information in the underlying representation.
|
|
|
|
"""
|
|
|
|
|
2005-06-20 06:49:42 -03:00
|
|
|
if self._is_special:
|
|
|
|
if self._isnan():
|
|
|
|
minus = '-'*self._sign
|
|
|
|
if self._int == (0,):
|
|
|
|
info = ''
|
|
|
|
else:
|
|
|
|
info = ''.join(map(str, self._int))
|
|
|
|
if self._isnan() == 2:
|
|
|
|
return minus + 'sNaN' + info
|
|
|
|
return minus + 'NaN' + info
|
|
|
|
if self._isinfinity():
|
|
|
|
minus = '-'*self._sign
|
|
|
|
return minus + 'Infinity'
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
|
|
|
tmp = map(str, self._int)
|
|
|
|
numdigits = len(self._int)
|
|
|
|
leftdigits = self._exp + numdigits
|
|
|
|
if eng and not self: #self = 0eX wants 0[.0[0]]eY, not [[0]0]0eY
|
|
|
|
if self._exp < 0 and self._exp >= -6: #short, no need for e/E
|
|
|
|
s = '-'*self._sign + '0.' + '0'*(abs(self._exp))
|
|
|
|
return s
|
|
|
|
#exp is closest mult. of 3 >= self._exp
|
|
|
|
exp = ((self._exp - 1)// 3 + 1) * 3
|
|
|
|
if exp != self._exp:
|
|
|
|
s = '0.'+'0'*(exp - self._exp)
|
|
|
|
else:
|
|
|
|
s = '0'
|
|
|
|
if exp != 0:
|
|
|
|
if context.capitals:
|
|
|
|
s += 'E'
|
|
|
|
else:
|
|
|
|
s += 'e'
|
|
|
|
if exp > 0:
|
|
|
|
s += '+' #0.0e+3, not 0.0e3
|
|
|
|
s += str(exp)
|
|
|
|
s = '-'*self._sign + s
|
|
|
|
return s
|
|
|
|
if eng:
|
|
|
|
dotplace = (leftdigits-1)%3+1
|
|
|
|
adjexp = leftdigits -1 - (leftdigits-1)%3
|
|
|
|
else:
|
|
|
|
adjexp = leftdigits-1
|
|
|
|
dotplace = 1
|
|
|
|
if self._exp == 0:
|
|
|
|
pass
|
|
|
|
elif self._exp < 0 and adjexp >= 0:
|
|
|
|
tmp.insert(leftdigits, '.')
|
|
|
|
elif self._exp < 0 and adjexp >= -6:
|
|
|
|
tmp[0:0] = ['0'] * int(-leftdigits)
|
|
|
|
tmp.insert(0, '0.')
|
|
|
|
else:
|
|
|
|
if numdigits > dotplace:
|
|
|
|
tmp.insert(dotplace, '.')
|
|
|
|
elif numdigits < dotplace:
|
|
|
|
tmp.extend(['0']*(dotplace-numdigits))
|
|
|
|
if adjexp:
|
|
|
|
if not context.capitals:
|
|
|
|
tmp.append('e')
|
|
|
|
else:
|
|
|
|
tmp.append('E')
|
|
|
|
if adjexp > 0:
|
|
|
|
tmp.append('+')
|
|
|
|
tmp.append(str(adjexp))
|
|
|
|
if eng:
|
|
|
|
while tmp[0:1] == ['0']:
|
|
|
|
tmp[0:1] = []
|
|
|
|
if len(tmp) == 0 or tmp[0] == '.' or tmp[0].lower() == 'e':
|
|
|
|
tmp[0:0] = ['0']
|
|
|
|
if self._sign:
|
|
|
|
tmp.insert(0, '-')
|
|
|
|
|
|
|
|
return ''.join(tmp)
|
|
|
|
|
|
|
|
def to_eng_string(self, context=None):
|
|
|
|
"""Convert to engineering-type string.
|
|
|
|
|
|
|
|
Engineering notation has an exponent which is a multiple of 3, so there
|
|
|
|
are up to 3 digits left of the decimal place.
|
|
|
|
|
|
|
|
Same rules for when in exponential and when as a value as in __str__.
|
|
|
|
"""
|
|
|
|
return self.__str__(eng=1, context=context)
|
|
|
|
|
|
|
|
def __neg__(self, context=None):
|
|
|
|
"""Returns a copy with the sign switched.
|
|
|
|
|
|
|
|
Rounds, if it has reason.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if not self:
|
|
|
|
# -Decimal('0') is Decimal('0'), not Decimal('-0')
|
|
|
|
sign = 0
|
|
|
|
elif self._sign:
|
|
|
|
sign = 0
|
|
|
|
else:
|
|
|
|
sign = 1
|
2004-09-18 22:54:09 -03:00
|
|
|
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-07-01 08:01:35 -03:00
|
|
|
if context._rounding_decision == ALWAYS_ROUND:
|
2004-10-09 04:10:44 -03:00
|
|
|
return Decimal((sign, self._int, self._exp))._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return Decimal( (sign, self._int, self._exp))
|
|
|
|
|
|
|
|
def __pos__(self, context=None):
|
|
|
|
"""Returns a copy, unless it is a sNaN.
|
|
|
|
|
|
|
|
Rounds the number (if more then precision digits)
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
sign = self._sign
|
|
|
|
if not self:
|
|
|
|
# + (-0) = 0
|
|
|
|
sign = 0
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if context._rounding_decision == ALWAYS_ROUND:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = self._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
else:
|
|
|
|
ans = Decimal(self)
|
|
|
|
ans._sign = sign
|
|
|
|
return ans
|
|
|
|
|
|
|
|
def __abs__(self, round=1, context=None):
|
|
|
|
"""Returns the absolute value of self.
|
|
|
|
|
|
|
|
If the second argument is 0, do not round.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if not round:
|
2004-09-18 22:54:09 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
context._set_rounding_decision(NEVER_ROUND)
|
|
|
|
|
|
|
|
if self._sign:
|
|
|
|
ans = self.__neg__(context=context)
|
|
|
|
else:
|
|
|
|
ans = self.__pos__(context=context)
|
|
|
|
|
|
|
|
return ans
|
|
|
|
|
|
|
|
def __add__(self, other, context=None):
|
|
|
|
"""Returns self + other.
|
|
|
|
|
|
|
|
-INF + INF (or the reverse) cause InvalidOperation errors.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-09-18 22:54:09 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._isinfinity():
|
|
|
|
#If both INF, same sign => same as both, opposite => error.
|
|
|
|
if self._sign != other._sign and other._isinfinity():
|
|
|
|
return context._raise_error(InvalidOperation, '-INF + INF')
|
|
|
|
return Decimal(self)
|
|
|
|
if other._isinfinity():
|
|
|
|
return Decimal(other) #Can't both be infinity here
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
shouldround = context._rounding_decision == ALWAYS_ROUND
|
|
|
|
|
|
|
|
exp = min(self._exp, other._exp)
|
|
|
|
negativezero = 0
|
|
|
|
if context.rounding == ROUND_FLOOR and self._sign != other._sign:
|
|
|
|
#If the answer is 0, the sign should be negative, in this case.
|
|
|
|
negativezero = 1
|
|
|
|
|
|
|
|
if not self and not other:
|
|
|
|
sign = min(self._sign, other._sign)
|
|
|
|
if negativezero:
|
|
|
|
sign = 1
|
|
|
|
return Decimal( (sign, (0,), exp))
|
|
|
|
if not self:
|
2004-10-26 20:38:46 -03:00
|
|
|
exp = max(exp, other._exp - context.prec-1)
|
2004-07-01 08:01:35 -03:00
|
|
|
ans = other._rescale(exp, watchexp=0, context=context)
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
if not other:
|
2004-10-26 20:38:46 -03:00
|
|
|
exp = max(exp, self._exp - context.prec-1)
|
2004-07-01 08:01:35 -03:00
|
|
|
ans = self._rescale(exp, watchexp=0, context=context)
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
|
|
|
op1 = _WorkRep(self)
|
|
|
|
op2 = _WorkRep(other)
|
|
|
|
op1, op2 = _normalize(op1, op2, shouldround, context.prec)
|
|
|
|
|
|
|
|
result = _WorkRep()
|
|
|
|
if op1.sign != op2.sign:
|
|
|
|
# Equal and opposite
|
2004-10-27 03:21:46 -03:00
|
|
|
if op1.int == op2.int:
|
2004-07-01 08:01:35 -03:00
|
|
|
if exp < context.Etiny():
|
|
|
|
exp = context.Etiny()
|
|
|
|
context._raise_error(Clamped)
|
|
|
|
return Decimal((negativezero, (0,), exp))
|
2004-10-27 03:21:46 -03:00
|
|
|
if op1.int < op2.int:
|
2004-07-01 08:01:35 -03:00
|
|
|
op1, op2 = op2, op1
|
|
|
|
#OK, now abs(op1) > abs(op2)
|
2004-10-27 03:21:46 -03:00
|
|
|
if op1.sign == 1:
|
|
|
|
result.sign = 1
|
2004-07-01 08:01:35 -03:00
|
|
|
op1.sign, op2.sign = op2.sign, op1.sign
|
|
|
|
else:
|
2004-10-27 03:21:46 -03:00
|
|
|
result.sign = 0
|
2004-07-01 08:01:35 -03:00
|
|
|
#So we know the sign, and op1 > 0.
|
2004-10-27 03:21:46 -03:00
|
|
|
elif op1.sign == 1:
|
2004-07-01 08:01:35 -03:00
|
|
|
result.sign = 1
|
2004-10-27 03:21:46 -03:00
|
|
|
op1.sign, op2.sign = (0, 0)
|
|
|
|
else:
|
|
|
|
result.sign = 0
|
2004-07-01 08:01:35 -03:00
|
|
|
#Now, op1 > abs(op2) > 0
|
|
|
|
|
2004-10-27 03:21:46 -03:00
|
|
|
if op2.sign == 0:
|
2004-09-18 22:54:09 -03:00
|
|
|
result.int = op1.int + op2.int
|
2004-07-01 08:01:35 -03:00
|
|
|
else:
|
2004-09-18 22:54:09 -03:00
|
|
|
result.int = op1.int - op2.int
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
result.exp = op1.exp
|
|
|
|
ans = Decimal(result)
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
|
|
|
__radd__ = __add__
|
|
|
|
|
|
|
|
def __sub__(self, other, context=None):
|
|
|
|
"""Return self + (-other)"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
# -Decimal(0) = Decimal(0), which we don't want since
|
|
|
|
# (-0 - 0 = -0 + (-0) = -0, but -0 + 0 = 0.)
|
|
|
|
# so we change the sign directly to a copy
|
|
|
|
tmp = Decimal(other)
|
|
|
|
tmp._sign = 1-tmp._sign
|
|
|
|
|
|
|
|
return self.__add__(tmp, context=context)
|
|
|
|
|
|
|
|
def __rsub__(self, other, context=None):
|
|
|
|
"""Return other + (-self)"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
tmp = Decimal(self)
|
|
|
|
tmp._sign = 1 - tmp._sign
|
|
|
|
return other.__add__(tmp, context=context)
|
|
|
|
|
|
|
|
def _increment(self, round=1, context=None):
|
|
|
|
"""Special case of add, adding 1eExponent
|
|
|
|
|
|
|
|
Since it is common, (rounding, for example) this adds
|
|
|
|
(sign)*one E self._exp to the number more efficiently than add.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
Decimal('5.624e10')._increment() == Decimal('5.625e10')
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
|
|
|
|
|
|
|
return Decimal(self) # Must be infinite, and incrementing makes no difference
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
L = list(self._int)
|
|
|
|
L[-1] += 1
|
|
|
|
spot = len(L)-1
|
|
|
|
while L[spot] == 10:
|
|
|
|
L[spot] = 0
|
|
|
|
if spot == 0:
|
|
|
|
L[0:0] = [1]
|
|
|
|
break
|
|
|
|
L[spot-1] += 1
|
|
|
|
spot -= 1
|
|
|
|
ans = Decimal((self._sign, L, self._exp))
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-07-01 08:01:35 -03:00
|
|
|
if round and context._rounding_decision == ALWAYS_ROUND:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
|
|
|
def __mul__(self, other, context=None):
|
|
|
|
"""Return self * other.
|
|
|
|
|
|
|
|
(+-) INF * 0 (or its reverse) raise InvalidOperation.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-09-18 22:54:09 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-07-09 07:52:54 -03:00
|
|
|
resultsign = self._sign ^ other._sign
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
|
|
|
|
|
|
|
if self._isinfinity():
|
|
|
|
if not other:
|
|
|
|
return context._raise_error(InvalidOperation, '(+-)INF * 0')
|
|
|
|
return Infsign[resultsign]
|
|
|
|
|
|
|
|
if other._isinfinity():
|
|
|
|
if not self:
|
|
|
|
return context._raise_error(InvalidOperation, '0 * (+-)INF')
|
|
|
|
return Infsign[resultsign]
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
resultexp = self._exp + other._exp
|
|
|
|
shouldround = context._rounding_decision == ALWAYS_ROUND
|
|
|
|
|
|
|
|
# Special case for multiplying by zero
|
|
|
|
if not self or not other:
|
|
|
|
ans = Decimal((resultsign, (0,), resultexp))
|
|
|
|
if shouldround:
|
|
|
|
#Fixing in case the exponent is out of bounds
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
|
|
|
# Special case for multiplying by power of 10
|
|
|
|
if self._int == (1,):
|
|
|
|
ans = Decimal((resultsign, other._int, resultexp))
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
if other._int == (1,):
|
|
|
|
ans = Decimal((resultsign, self._int, resultexp))
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
op1 = _WorkRep(self)
|
|
|
|
op2 = _WorkRep(other)
|
|
|
|
|
|
|
|
ans = Decimal( (resultsign, map(int, str(op1.int * op2.int)), resultexp))
|
2004-07-01 08:01:35 -03:00
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
return ans
|
|
|
|
__rmul__ = __mul__
|
|
|
|
|
2006-03-24 04:14:36 -04:00
|
|
|
def __truediv__(self, other, context=None):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Return self / other."""
|
|
|
|
return self._divide(other, context=context)
|
|
|
|
|
|
|
|
def _divide(self, other, divmod = 0, context=None):
|
|
|
|
"""Return a / b, to context.prec precision.
|
|
|
|
|
|
|
|
divmod:
|
|
|
|
0 => true division
|
|
|
|
1 => (a //b, a%b)
|
|
|
|
2 => a //b
|
|
|
|
3 => a%b
|
|
|
|
|
|
|
|
Actually, if divmod is 2 or 3 a tuple is returned, but errors for
|
|
|
|
computing the other value are not raised.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
if divmod in (0, 1):
|
|
|
|
return NotImplemented
|
|
|
|
return (NotImplemented, NotImplemented)
|
2004-09-18 22:54:09 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
sign = self._sign ^ other._sign
|
|
|
|
|
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
if divmod:
|
|
|
|
return (ans, ans)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._isinfinity() and other._isinfinity():
|
|
|
|
if divmod:
|
|
|
|
return (context._raise_error(InvalidOperation,
|
|
|
|
'(+-)INF // (+-)INF'),
|
|
|
|
context._raise_error(InvalidOperation,
|
|
|
|
'(+-)INF % (+-)INF'))
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF')
|
|
|
|
|
|
|
|
if self._isinfinity():
|
|
|
|
if divmod == 1:
|
|
|
|
return (Infsign[sign],
|
|
|
|
context._raise_error(InvalidOperation, 'INF % x'))
|
|
|
|
elif divmod == 2:
|
|
|
|
return (Infsign[sign], NaN)
|
|
|
|
elif divmod == 3:
|
|
|
|
return (Infsign[sign],
|
|
|
|
context._raise_error(InvalidOperation, 'INF % x'))
|
2004-09-18 22:54:09 -03:00
|
|
|
return Infsign[sign]
|
|
|
|
|
|
|
|
if other._isinfinity():
|
|
|
|
if divmod:
|
|
|
|
return (Decimal((sign, (0,), 0)), Decimal(self))
|
|
|
|
context._raise_error(Clamped, 'Division by infinity')
|
|
|
|
return Decimal((sign, (0,), context.Etiny()))
|
|
|
|
|
|
|
|
# Special cases for zeroes
|
|
|
|
if not self and not other:
|
|
|
|
if divmod:
|
|
|
|
return context._raise_error(DivisionUndefined, '0 / 0', 1)
|
|
|
|
return context._raise_error(DivisionUndefined, '0 / 0')
|
|
|
|
|
|
|
|
if not self:
|
|
|
|
if divmod:
|
2004-07-01 08:01:35 -03:00
|
|
|
otherside = Decimal(self)
|
|
|
|
otherside._exp = min(self._exp, other._exp)
|
|
|
|
return (Decimal((sign, (0,), 0)), otherside)
|
2004-09-18 22:54:09 -03:00
|
|
|
exp = self._exp - other._exp
|
|
|
|
if exp < context.Etiny():
|
|
|
|
exp = context.Etiny()
|
|
|
|
context._raise_error(Clamped, '0e-x / y')
|
|
|
|
if exp > context.Emax:
|
|
|
|
exp = context.Emax
|
|
|
|
context._raise_error(Clamped, '0e+x / y')
|
|
|
|
return Decimal( (sign, (0,), exp) )
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if not other:
|
|
|
|
if divmod:
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(DivisionByZero, 'divmod(x,0)',
|
|
|
|
sign, 1)
|
2004-09-18 22:54:09 -03:00
|
|
|
return context._raise_error(DivisionByZero, 'x / 0', sign)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
#OK, so neither = 0, INF or NaN
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
shouldround = context._rounding_decision == ALWAYS_ROUND
|
|
|
|
|
|
|
|
#If we're dividing into ints, and self < other, stop.
|
|
|
|
#self.__abs__(0) does not round.
|
|
|
|
if divmod and (self.__abs__(0, context) < other.__abs__(0, context)):
|
|
|
|
|
|
|
|
if divmod == 1 or divmod == 3:
|
|
|
|
exp = min(self._exp, other._exp)
|
|
|
|
ans2 = self._rescale(exp, context=context, watchexp=0)
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans2 = ans2._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return (Decimal( (sign, (0,), 0) ),
|
|
|
|
ans2)
|
|
|
|
|
|
|
|
elif divmod == 2:
|
|
|
|
#Don't round the mod part, if we don't need it.
|
|
|
|
return (Decimal( (sign, (0,), 0) ), Decimal(self))
|
|
|
|
|
|
|
|
op1 = _WorkRep(self)
|
|
|
|
op2 = _WorkRep(other)
|
|
|
|
op1, op2, adjust = _adjust_coefficients(op1, op2)
|
2004-09-18 22:54:09 -03:00
|
|
|
res = _WorkRep( (sign, 0, (op1.exp - op2.exp)) )
|
2004-07-01 08:01:35 -03:00
|
|
|
if divmod and res.exp > context.prec + 1:
|
|
|
|
return context._raise_error(DivisionImpossible)
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
prec_limit = 10 ** context.prec
|
2004-07-01 08:01:35 -03:00
|
|
|
while 1:
|
2004-09-18 22:54:09 -03:00
|
|
|
while op2.int <= op1.int:
|
|
|
|
res.int += 1
|
|
|
|
op1.int -= op2.int
|
2004-07-01 08:01:35 -03:00
|
|
|
if res.exp == 0 and divmod:
|
2004-09-18 22:54:09 -03:00
|
|
|
if res.int >= prec_limit and shouldround:
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(DivisionImpossible)
|
|
|
|
otherside = Decimal(op1)
|
|
|
|
frozen = context._ignore_all_flags()
|
|
|
|
|
|
|
|
exp = min(self._exp, other._exp)
|
2004-10-27 03:21:46 -03:00
|
|
|
otherside = otherside._rescale(exp, context=context, watchexp=0)
|
2004-07-01 08:01:35 -03:00
|
|
|
context._regard_flags(*frozen)
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
otherside = otherside._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return (Decimal(res), otherside)
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if op1.int == 0 and adjust >= 0 and not divmod:
|
2004-07-01 08:01:35 -03:00
|
|
|
break
|
2004-09-18 22:54:09 -03:00
|
|
|
if res.int >= prec_limit and shouldround:
|
2004-07-01 08:01:35 -03:00
|
|
|
if divmod:
|
|
|
|
return context._raise_error(DivisionImpossible)
|
|
|
|
shouldround=1
|
|
|
|
# Really, the answer is a bit higher, so adding a one to
|
|
|
|
# the end will make sure the rounding is right.
|
2004-09-18 22:54:09 -03:00
|
|
|
if op1.int != 0:
|
|
|
|
res.int *= 10
|
|
|
|
res.int += 1
|
2004-07-01 08:01:35 -03:00
|
|
|
res.exp -= 1
|
|
|
|
|
|
|
|
break
|
2004-09-18 22:54:09 -03:00
|
|
|
res.int *= 10
|
2004-07-01 08:01:35 -03:00
|
|
|
res.exp -= 1
|
|
|
|
adjust += 1
|
2004-09-18 22:54:09 -03:00
|
|
|
op1.int *= 10
|
2004-07-01 08:01:35 -03:00
|
|
|
op1.exp -= 1
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if res.exp == 0 and divmod and op2.int > op1.int:
|
2004-07-01 08:01:35 -03:00
|
|
|
#Solves an error in precision. Same as a previous block.
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if res.int >= prec_limit and shouldround:
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(DivisionImpossible)
|
|
|
|
otherside = Decimal(op1)
|
|
|
|
frozen = context._ignore_all_flags()
|
|
|
|
|
|
|
|
exp = min(self._exp, other._exp)
|
|
|
|
otherside = otherside._rescale(exp, context=context)
|
|
|
|
|
|
|
|
context._regard_flags(*frozen)
|
|
|
|
|
|
|
|
return (Decimal(res), otherside)
|
|
|
|
|
|
|
|
ans = Decimal(res)
|
|
|
|
if shouldround:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
2006-03-24 04:14:36 -04:00
|
|
|
def __rtruediv__(self, other, context=None):
|
|
|
|
"""Swaps self/other and returns __truediv__."""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2006-03-24 04:14:36 -04:00
|
|
|
return other.__truediv__(self, context=context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def __divmod__(self, other, context=None):
|
|
|
|
"""
|
|
|
|
(self // other, self % other)
|
|
|
|
"""
|
|
|
|
return self._divide(other, 1, context)
|
|
|
|
|
|
|
|
def __rdivmod__(self, other, context=None):
|
|
|
|
"""Swaps self/other and returns __divmod__."""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
return other.__divmod__(self, context=context)
|
|
|
|
|
|
|
|
def __mod__(self, other, context=None):
|
|
|
|
"""
|
|
|
|
self % other
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if self and not other:
|
|
|
|
return context._raise_error(InvalidOperation, 'x % 0')
|
|
|
|
|
|
|
|
return self._divide(other, 3, context)[1]
|
|
|
|
|
|
|
|
def __rmod__(self, other, context=None):
|
|
|
|
"""Swaps self/other and returns __mod__."""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
return other.__mod__(self, context=context)
|
|
|
|
|
|
|
|
def remainder_near(self, other, context=None):
|
|
|
|
"""
|
|
|
|
Remainder nearest to 0- abs(remainder-near) <= other/2
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
ans = self._check_nans(other, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
if self and not other:
|
|
|
|
return context._raise_error(InvalidOperation, 'x % 0')
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-07-01 08:01:35 -03:00
|
|
|
# If DivisionImpossible causes an error, do not leave Rounded/Inexact
|
|
|
|
# ignored in the calling function.
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
flags = context._ignore_flags(Rounded, Inexact)
|
|
|
|
#keep DivisionImpossible flags
|
|
|
|
(side, r) = self.__divmod__(other, context=context)
|
|
|
|
|
|
|
|
if r._isnan():
|
|
|
|
context._regard_flags(*flags)
|
|
|
|
return r
|
|
|
|
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
rounding = context._set_rounding_decision(NEVER_ROUND)
|
|
|
|
|
|
|
|
if other._sign:
|
2006-03-24 04:14:36 -04:00
|
|
|
comparison = other.__truediv__(Decimal(-2), context=context)
|
2004-07-01 08:01:35 -03:00
|
|
|
else:
|
2006-03-24 04:14:36 -04:00
|
|
|
comparison = other.__truediv__(Decimal(2), context=context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
context._set_rounding_decision(rounding)
|
|
|
|
context._regard_flags(*flags)
|
|
|
|
|
|
|
|
s1, s2 = r._sign, comparison._sign
|
|
|
|
r._sign, comparison._sign = 0, 0
|
|
|
|
|
|
|
|
if r < comparison:
|
|
|
|
r._sign, comparison._sign = s1, s2
|
|
|
|
#Get flags now
|
|
|
|
self.__divmod__(other, context=context)
|
2004-10-09 04:10:44 -03:00
|
|
|
return r._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
r._sign, comparison._sign = s1, s2
|
|
|
|
|
|
|
|
rounding = context._set_rounding_decision(NEVER_ROUND)
|
|
|
|
|
|
|
|
(side, r) = self.__divmod__(other, context=context)
|
|
|
|
context._set_rounding_decision(rounding)
|
|
|
|
if r._isnan():
|
|
|
|
return r
|
|
|
|
|
|
|
|
decrease = not side._iseven()
|
|
|
|
rounding = context._set_rounding_decision(NEVER_ROUND)
|
|
|
|
side = side.__abs__(context=context)
|
|
|
|
context._set_rounding_decision(rounding)
|
|
|
|
|
|
|
|
s1, s2 = r._sign, comparison._sign
|
|
|
|
r._sign, comparison._sign = 0, 0
|
|
|
|
if r > comparison or decrease and r == comparison:
|
|
|
|
r._sign, comparison._sign = s1, s2
|
|
|
|
context.prec += 1
|
|
|
|
if len(side.__add__(Decimal(1), context=context)._int) >= context.prec:
|
|
|
|
context.prec -= 1
|
|
|
|
return context._raise_error(DivisionImpossible)[1]
|
|
|
|
context.prec -= 1
|
|
|
|
if self._sign == other._sign:
|
|
|
|
r = r.__sub__(other, context=context)
|
|
|
|
else:
|
|
|
|
r = r.__add__(other, context=context)
|
|
|
|
else:
|
|
|
|
r._sign, comparison._sign = s1, s2
|
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
return r._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def __floordiv__(self, other, context=None):
|
|
|
|
"""self // other"""
|
|
|
|
return self._divide(other, 2, context)[0]
|
|
|
|
|
|
|
|
def __rfloordiv__(self, other, context=None):
|
|
|
|
"""Swaps self/other and returns __floordiv__."""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
return other.__floordiv__(self, context=context)
|
|
|
|
|
|
|
|
def __float__(self):
|
|
|
|
"""Float representation."""
|
|
|
|
return float(str(self))
|
|
|
|
|
|
|
|
def __int__(self):
|
2005-02-28 23:12:26 -04:00
|
|
|
"""Converts self to an int, truncating if necessary."""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
if self._isnan():
|
|
|
|
context = getcontext()
|
|
|
|
return context._raise_error(InvalidContext)
|
|
|
|
elif self._isinfinity():
|
|
|
|
raise OverflowError, "Cannot convert infinity to long"
|
2004-07-01 08:01:35 -03:00
|
|
|
if self._exp >= 0:
|
2004-11-24 03:28:48 -04:00
|
|
|
s = ''.join(map(str, self._int)) + '0'*self._exp
|
|
|
|
else:
|
|
|
|
s = ''.join(map(str, self._int))[:self._exp]
|
|
|
|
if s == '':
|
|
|
|
s = '0'
|
|
|
|
sign = '-'*self._sign
|
|
|
|
return int(sign + s)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def __long__(self):
|
|
|
|
"""Converts to a long.
|
|
|
|
|
|
|
|
Equivalent to long(int(self))
|
|
|
|
"""
|
|
|
|
return long(self.__int__())
|
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
def _fix(self, context):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Round if it is necessary to keep self within prec precision.
|
|
|
|
|
|
|
|
Rounds and fixes the exponent. Does not raise on a sNaN.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
self - Decimal instance
|
|
|
|
context - context used.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
2004-07-01 08:01:35 -03:00
|
|
|
return self
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-10-09 04:10:44 -03:00
|
|
|
prec = context.prec
|
2004-10-26 20:38:46 -03:00
|
|
|
ans = self._fixexponents(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
if len(ans._int) > prec:
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._round(prec, context=context)
|
2004-10-26 20:38:46 -03:00
|
|
|
ans = ans._fixexponents(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
2004-10-26 20:38:46 -03:00
|
|
|
def _fixexponents(self, context):
|
2004-10-09 04:10:44 -03:00
|
|
|
"""Fix the exponents and return a copy with the exponent in bounds.
|
|
|
|
Only call if known to not be a special value.
|
|
|
|
"""
|
|
|
|
folddown = context._clamp
|
2004-09-18 22:54:09 -03:00
|
|
|
Emin = context.Emin
|
2004-10-26 20:38:46 -03:00
|
|
|
ans = self
|
2004-09-18 22:54:09 -03:00
|
|
|
ans_adjusted = ans.adjusted()
|
|
|
|
if ans_adjusted < Emin:
|
2004-07-01 08:01:35 -03:00
|
|
|
Etiny = context.Etiny()
|
|
|
|
if ans._exp < Etiny:
|
|
|
|
if not ans:
|
2004-10-26 20:38:46 -03:00
|
|
|
ans = Decimal(self)
|
2004-07-01 08:01:35 -03:00
|
|
|
ans._exp = Etiny
|
|
|
|
context._raise_error(Clamped)
|
|
|
|
return ans
|
|
|
|
ans = ans._rescale(Etiny, context=context)
|
|
|
|
#It isn't zero, and exp < Emin => subnormal
|
|
|
|
context._raise_error(Subnormal)
|
|
|
|
if context.flags[Inexact]:
|
|
|
|
context._raise_error(Underflow)
|
|
|
|
else:
|
|
|
|
if ans:
|
|
|
|
#Only raise subnormal if non-zero.
|
|
|
|
context._raise_error(Subnormal)
|
2004-09-18 22:54:09 -03:00
|
|
|
else:
|
|
|
|
Etop = context.Etop()
|
|
|
|
if folddown and ans._exp > Etop:
|
2004-07-01 08:01:35 -03:00
|
|
|
context._raise_error(Clamped)
|
2004-09-18 22:54:09 -03:00
|
|
|
ans = ans._rescale(Etop, context=context)
|
|
|
|
else:
|
|
|
|
Emax = context.Emax
|
|
|
|
if ans_adjusted > Emax:
|
|
|
|
if not ans:
|
2004-10-26 20:38:46 -03:00
|
|
|
ans = Decimal(self)
|
2004-09-18 22:54:09 -03:00
|
|
|
ans._exp = Emax
|
|
|
|
context._raise_error(Clamped)
|
|
|
|
return ans
|
|
|
|
context._raise_error(Inexact)
|
|
|
|
context._raise_error(Rounded)
|
|
|
|
return context._raise_error(Overflow, 'above Emax', ans._sign)
|
2004-07-01 08:01:35 -03:00
|
|
|
return ans
|
|
|
|
|
|
|
|
def _round(self, prec=None, rounding=None, context=None):
|
|
|
|
"""Returns a rounded version of self.
|
|
|
|
|
|
|
|
You can specify the precision or rounding method. Otherwise, the
|
|
|
|
context determines it.
|
|
|
|
"""
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
|
|
|
|
|
|
|
if self._isinfinity():
|
|
|
|
return Decimal(self)
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
|
|
|
if rounding is None:
|
|
|
|
rounding = context.rounding
|
|
|
|
if prec is None:
|
|
|
|
prec = context.prec
|
|
|
|
|
|
|
|
if not self:
|
|
|
|
if prec <= 0:
|
|
|
|
dig = (0,)
|
|
|
|
exp = len(self._int) - prec + self._exp
|
|
|
|
else:
|
|
|
|
dig = (0,) * prec
|
|
|
|
exp = len(self._int) + self._exp - prec
|
|
|
|
ans = Decimal((self._sign, dig, exp))
|
|
|
|
context._raise_error(Rounded)
|
|
|
|
return ans
|
|
|
|
|
|
|
|
if prec == 0:
|
|
|
|
temp = Decimal(self)
|
|
|
|
temp._int = (0,)+temp._int
|
|
|
|
prec = 1
|
|
|
|
elif prec < 0:
|
|
|
|
exp = self._exp + len(self._int) - prec - 1
|
|
|
|
temp = Decimal( (self._sign, (0, 1), exp))
|
|
|
|
prec = 1
|
|
|
|
else:
|
|
|
|
temp = Decimal(self)
|
|
|
|
|
|
|
|
numdigits = len(temp._int)
|
|
|
|
if prec == numdigits:
|
|
|
|
return temp
|
|
|
|
|
|
|
|
# See if we need to extend precision
|
|
|
|
expdiff = prec - numdigits
|
|
|
|
if expdiff > 0:
|
|
|
|
tmp = list(temp._int)
|
|
|
|
tmp.extend([0] * expdiff)
|
|
|
|
ans = Decimal( (temp._sign, tmp, temp._exp - expdiff))
|
|
|
|
return ans
|
|
|
|
|
|
|
|
#OK, but maybe all the lost digits are 0.
|
|
|
|
lostdigits = self._int[expdiff:]
|
|
|
|
if lostdigits == (0,) * len(lostdigits):
|
|
|
|
ans = Decimal( (temp._sign, temp._int[:prec], temp._exp - expdiff))
|
|
|
|
#Rounded, but not Inexact
|
|
|
|
context._raise_error(Rounded)
|
|
|
|
return ans
|
|
|
|
|
|
|
|
# Okay, let's round and lose data
|
|
|
|
|
|
|
|
this_function = getattr(temp, self._pick_rounding_function[rounding])
|
|
|
|
#Now we've got the rounding function
|
|
|
|
|
|
|
|
if prec != context.prec:
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
context.prec = prec
|
|
|
|
ans = this_function(prec, expdiff, context)
|
|
|
|
context._raise_error(Rounded)
|
|
|
|
context._raise_error(Inexact, 'Changed in rounding')
|
|
|
|
|
|
|
|
return ans
|
|
|
|
|
|
|
|
_pick_rounding_function = {}
|
|
|
|
|
|
|
|
def _round_down(self, prec, expdiff, context):
|
|
|
|
"""Also known as round-towards-0, truncate."""
|
|
|
|
return Decimal( (self._sign, self._int[:prec], self._exp - expdiff) )
|
|
|
|
|
|
|
|
def _round_half_up(self, prec, expdiff, context, tmp = None):
|
|
|
|
"""Rounds 5 up (away from 0)"""
|
|
|
|
|
|
|
|
if tmp is None:
|
|
|
|
tmp = Decimal( (self._sign,self._int[:prec], self._exp - expdiff))
|
|
|
|
if self._int[prec] >= 5:
|
|
|
|
tmp = tmp._increment(round=0, context=context)
|
|
|
|
if len(tmp._int) > prec:
|
|
|
|
return Decimal( (tmp._sign, tmp._int[:-1], tmp._exp + 1))
|
|
|
|
return tmp
|
|
|
|
|
|
|
|
def _round_half_even(self, prec, expdiff, context):
|
|
|
|
"""Round 5 to even, rest to nearest."""
|
|
|
|
|
|
|
|
tmp = Decimal( (self._sign, self._int[:prec], self._exp - expdiff))
|
|
|
|
half = (self._int[prec] == 5)
|
|
|
|
if half:
|
|
|
|
for digit in self._int[prec+1:]:
|
|
|
|
if digit != 0:
|
|
|
|
half = 0
|
|
|
|
break
|
|
|
|
if half:
|
2004-08-06 20:42:16 -03:00
|
|
|
if self._int[prec-1] & 1 == 0:
|
2004-07-01 08:01:35 -03:00
|
|
|
return tmp
|
|
|
|
return self._round_half_up(prec, expdiff, context, tmp)
|
|
|
|
|
|
|
|
def _round_half_down(self, prec, expdiff, context):
|
|
|
|
"""Round 5 down"""
|
|
|
|
|
|
|
|
tmp = Decimal( (self._sign, self._int[:prec], self._exp - expdiff))
|
|
|
|
half = (self._int[prec] == 5)
|
|
|
|
if half:
|
|
|
|
for digit in self._int[prec+1:]:
|
|
|
|
if digit != 0:
|
|
|
|
half = 0
|
|
|
|
break
|
|
|
|
if half:
|
|
|
|
return tmp
|
|
|
|
return self._round_half_up(prec, expdiff, context, tmp)
|
|
|
|
|
|
|
|
def _round_up(self, prec, expdiff, context):
|
|
|
|
"""Rounds away from 0."""
|
|
|
|
tmp = Decimal( (self._sign, self._int[:prec], self._exp - expdiff) )
|
|
|
|
for digit in self._int[prec:]:
|
|
|
|
if digit != 0:
|
|
|
|
tmp = tmp._increment(round=1, context=context)
|
|
|
|
if len(tmp._int) > prec:
|
|
|
|
return Decimal( (tmp._sign, tmp._int[:-1], tmp._exp + 1))
|
|
|
|
else:
|
|
|
|
return tmp
|
|
|
|
return tmp
|
|
|
|
|
|
|
|
def _round_ceiling(self, prec, expdiff, context):
|
|
|
|
"""Rounds up (not away from 0 if negative.)"""
|
|
|
|
if self._sign:
|
|
|
|
return self._round_down(prec, expdiff, context)
|
|
|
|
else:
|
|
|
|
return self._round_up(prec, expdiff, context)
|
|
|
|
|
|
|
|
def _round_floor(self, prec, expdiff, context):
|
|
|
|
"""Rounds down (not towards 0 if negative)"""
|
|
|
|
if not self._sign:
|
|
|
|
return self._round_down(prec, expdiff, context)
|
|
|
|
else:
|
|
|
|
return self._round_up(prec, expdiff, context)
|
|
|
|
|
|
|
|
def __pow__(self, n, modulo = None, context=None):
|
|
|
|
"""Return self ** n (mod modulo)
|
|
|
|
|
|
|
|
If modulo is None (default), don't take it mod modulo.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
n = _convert_other(n)
|
2005-03-27 06:47:39 -04:00
|
|
|
if n is NotImplemented:
|
|
|
|
return n
|
2004-09-18 22:54:09 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or n._is_special or n.adjusted() > 8:
|
|
|
|
#Because the spot << doesn't work with really big exponents
|
|
|
|
if n._isinfinity() or n.adjusted() > 8:
|
|
|
|
return context._raise_error(InvalidOperation, 'x ** INF')
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
ans = self._check_nans(n, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if not n._isinteger():
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(InvalidOperation, 'x ** (non-integer)')
|
|
|
|
|
|
|
|
if not self and not n:
|
|
|
|
return context._raise_error(InvalidOperation, '0 ** 0')
|
|
|
|
|
|
|
|
if not n:
|
|
|
|
return Decimal(1)
|
|
|
|
|
|
|
|
if self == Decimal(1):
|
|
|
|
return Decimal(1)
|
|
|
|
|
|
|
|
sign = self._sign and not n._iseven()
|
|
|
|
n = int(n)
|
|
|
|
|
|
|
|
if self._isinfinity():
|
|
|
|
if modulo:
|
|
|
|
return context._raise_error(InvalidOperation, 'INF % x')
|
|
|
|
if n > 0:
|
|
|
|
return Infsign[sign]
|
|
|
|
return Decimal( (sign, (0,), 0) )
|
|
|
|
|
|
|
|
#with ludicrously large exponent, just raise an overflow and return inf.
|
|
|
|
if not modulo and n > 0 and (self._exp + len(self._int) - 1) * n > context.Emax \
|
|
|
|
and self:
|
|
|
|
|
|
|
|
tmp = Decimal('inf')
|
|
|
|
tmp._sign = sign
|
|
|
|
context._raise_error(Rounded)
|
|
|
|
context._raise_error(Inexact)
|
|
|
|
context._raise_error(Overflow, 'Big power', sign)
|
|
|
|
return tmp
|
|
|
|
|
|
|
|
elength = len(str(abs(n)))
|
|
|
|
firstprec = context.prec
|
|
|
|
|
2004-07-14 16:56:56 -03:00
|
|
|
if not modulo and firstprec + elength + 1 > DefaultContext.Emax:
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(Overflow, 'Too much precision.', sign)
|
|
|
|
|
|
|
|
mul = Decimal(self)
|
|
|
|
val = Decimal(1)
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
context.prec = firstprec + elength + 1
|
|
|
|
if n < 0:
|
|
|
|
#n is a long now, not Decimal instance
|
|
|
|
n = -n
|
2006-03-24 04:14:36 -04:00
|
|
|
mul = Decimal(1).__truediv__(mul, context=context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
spot = 1
|
|
|
|
while spot <= n:
|
|
|
|
spot <<= 1
|
|
|
|
|
|
|
|
spot >>= 1
|
|
|
|
#Spot is the highest power of 2 less than n
|
|
|
|
while spot:
|
|
|
|
val = val.__mul__(val, context=context)
|
|
|
|
if val._isinfinity():
|
|
|
|
val = Infsign[sign]
|
|
|
|
break
|
|
|
|
if spot & n:
|
|
|
|
val = val.__mul__(mul, context=context)
|
|
|
|
if modulo is not None:
|
|
|
|
val = val.__mod__(modulo, context=context)
|
|
|
|
spot >>= 1
|
|
|
|
context.prec = firstprec
|
|
|
|
|
2004-10-20 03:58:28 -03:00
|
|
|
if context._rounding_decision == ALWAYS_ROUND:
|
2004-10-09 04:10:44 -03:00
|
|
|
return val._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
return val
|
|
|
|
|
|
|
|
def __rpow__(self, other, context=None):
|
|
|
|
"""Swaps self/other and returns __pow__."""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-07-01 08:01:35 -03:00
|
|
|
return other.__pow__(self, context=context)
|
|
|
|
|
|
|
|
def normalize(self, context=None):
|
|
|
|
"""Normalize- strip trailing 0s, change anything equal to 0 to 0e0"""
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
dup = self._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
if dup._isinfinity():
|
|
|
|
return dup
|
|
|
|
|
|
|
|
if not dup:
|
|
|
|
return Decimal( (dup._sign, (0,), 0) )
|
|
|
|
end = len(dup._int)
|
|
|
|
exp = dup._exp
|
|
|
|
while dup._int[end-1] == 0:
|
|
|
|
exp += 1
|
|
|
|
end -= 1
|
|
|
|
return Decimal( (dup._sign, dup._int[:end], exp) )
|
|
|
|
|
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
def quantize(self, exp, rounding=None, context=None, watchexp=1):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Quantize self so its exponent is the same as that of exp.
|
|
|
|
|
|
|
|
Similar to self._rescale(exp._exp) but with error checking.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or exp._is_special:
|
|
|
|
ans = self._check_nans(exp, context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if exp._isinfinity() or self._isinfinity():
|
|
|
|
if exp._isinfinity() and self._isinfinity():
|
|
|
|
return self #if both are inf, it is OK
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
return context._raise_error(InvalidOperation,
|
|
|
|
'quantize with one INF')
|
2004-07-01 08:01:35 -03:00
|
|
|
return self._rescale(exp._exp, rounding, context, watchexp)
|
|
|
|
|
|
|
|
def same_quantum(self, other):
|
|
|
|
"""Test whether self and other have the same exponent.
|
|
|
|
|
|
|
|
same as self._exp == other._exp, except NaN == sNaN
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special or other._is_special:
|
|
|
|
if self._isnan() or other._isnan():
|
|
|
|
return self._isnan() and other._isnan() and True
|
|
|
|
if self._isinfinity() or other._isinfinity():
|
|
|
|
return self._isinfinity() and other._isinfinity() and True
|
2004-07-01 08:01:35 -03:00
|
|
|
return self._exp == other._exp
|
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
def _rescale(self, exp, rounding=None, context=None, watchexp=1):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Rescales so that the exponent is exp.
|
|
|
|
|
|
|
|
exp = exp to scale to (an integer)
|
|
|
|
rounding = rounding version
|
|
|
|
watchexp: if set (default) an error is returned if exp is greater
|
|
|
|
than Emax or less than Etiny.
|
|
|
|
"""
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
if self._isinfinity():
|
|
|
|
return context._raise_error(InvalidOperation, 'rescale with an INF')
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if watchexp and (context.Emax < exp or context.Etiny() > exp):
|
|
|
|
return context._raise_error(InvalidOperation, 'rescale(a, INF)')
|
|
|
|
|
|
|
|
if not self:
|
|
|
|
ans = Decimal(self)
|
|
|
|
ans._int = (0,)
|
|
|
|
ans._exp = exp
|
|
|
|
return ans
|
|
|
|
|
|
|
|
diff = self._exp - exp
|
2004-10-09 04:10:44 -03:00
|
|
|
digits = len(self._int) + diff
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if watchexp and digits > context.prec:
|
|
|
|
return context._raise_error(InvalidOperation, 'Rescale > prec')
|
|
|
|
|
|
|
|
tmp = Decimal(self)
|
2004-10-09 04:10:44 -03:00
|
|
|
tmp._int = (0,) + tmp._int
|
2004-07-01 08:01:35 -03:00
|
|
|
digits += 1
|
|
|
|
|
|
|
|
if digits < 0:
|
|
|
|
tmp._exp = -digits + tmp._exp
|
|
|
|
tmp._int = (0,1)
|
|
|
|
digits = 1
|
|
|
|
tmp = tmp._round(digits, rounding, context=context)
|
|
|
|
|
|
|
|
if tmp._int[0] == 0 and len(tmp._int) > 1:
|
|
|
|
tmp._int = tmp._int[1:]
|
|
|
|
tmp._exp = exp
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
tmp_adjusted = tmp.adjusted()
|
|
|
|
if tmp and tmp_adjusted < context.Emin:
|
2004-07-01 08:01:35 -03:00
|
|
|
context._raise_error(Subnormal)
|
2004-09-18 22:54:09 -03:00
|
|
|
elif tmp and tmp_adjusted > context.Emax:
|
2004-07-01 08:01:35 -03:00
|
|
|
return context._raise_error(InvalidOperation, 'rescale(a, INF)')
|
|
|
|
return tmp
|
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
def to_integral(self, rounding=None, context=None):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Rounds to the nearest integer, without raising inexact, rounded."""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2006-08-23 21:41:19 -03:00
|
|
|
return self
|
2004-07-01 08:01:35 -03:00
|
|
|
if self._exp >= 0:
|
|
|
|
return self
|
2004-09-18 22:54:09 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-07-01 08:01:35 -03:00
|
|
|
flags = context._ignore_flags(Rounded, Inexact)
|
|
|
|
ans = self._rescale(0, rounding, context=context)
|
|
|
|
context._regard_flags(flags)
|
|
|
|
return ans
|
|
|
|
|
|
|
|
def sqrt(self, context=None):
|
|
|
|
"""Return the square root of self.
|
|
|
|
|
|
|
|
Uses a converging algorithm (Xn+1 = 0.5*(Xn + self / Xn))
|
|
|
|
Should quadratically approach the right answer.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._is_special:
|
|
|
|
ans = self._check_nans(context=context)
|
|
|
|
if ans:
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if self._isinfinity() and self._sign == 0:
|
|
|
|
return Decimal(self)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
if not self:
|
|
|
|
#exponent = self._exp / 2, using round_down.
|
|
|
|
#if self._exp < 0:
|
|
|
|
# exp = (self._exp+1) // 2
|
|
|
|
#else:
|
|
|
|
exp = (self._exp) // 2
|
|
|
|
if self._sign == 1:
|
|
|
|
#sqrt(-0) = -0
|
|
|
|
return Decimal( (1, (0,), exp))
|
|
|
|
else:
|
|
|
|
return Decimal( (0, (0,), exp))
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
if self._sign == 1:
|
|
|
|
return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0')
|
|
|
|
|
|
|
|
tmp = Decimal(self)
|
|
|
|
|
2004-09-27 11:23:40 -03:00
|
|
|
expadd = tmp._exp // 2
|
2004-08-06 20:42:16 -03:00
|
|
|
if tmp._exp & 1:
|
2004-07-01 08:01:35 -03:00
|
|
|
tmp._int += (0,)
|
|
|
|
tmp._exp = 0
|
|
|
|
else:
|
|
|
|
tmp._exp = 0
|
|
|
|
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
flags = context._ignore_all_flags()
|
|
|
|
firstprec = context.prec
|
|
|
|
context.prec = 3
|
2004-08-06 20:42:16 -03:00
|
|
|
if tmp.adjusted() & 1 == 0:
|
2004-07-01 08:01:35 -03:00
|
|
|
ans = Decimal( (0, (8,1,9), tmp.adjusted() - 2) )
|
|
|
|
ans = ans.__add__(tmp.__mul__(Decimal((0, (2,5,9), -2)),
|
|
|
|
context=context), context=context)
|
2004-09-27 11:23:40 -03:00
|
|
|
ans._exp -= 1 + tmp.adjusted() // 2
|
2004-07-01 08:01:35 -03:00
|
|
|
else:
|
|
|
|
ans = Decimal( (0, (2,5,9), tmp._exp + len(tmp._int)- 3) )
|
|
|
|
ans = ans.__add__(tmp.__mul__(Decimal((0, (8,1,9), -3)),
|
|
|
|
context=context), context=context)
|
2004-09-27 11:23:40 -03:00
|
|
|
ans._exp -= 1 + tmp.adjusted() // 2
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
#ans is now a linear approximation.
|
|
|
|
|
|
|
|
Emax, Emin = context.Emax, context.Emin
|
2004-07-14 16:56:56 -03:00
|
|
|
context.Emax, context.Emin = DefaultContext.Emax, DefaultContext.Emin
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
half = Decimal('0.5')
|
|
|
|
|
|
|
|
maxp = firstprec + 2
|
|
|
|
rounding = context._set_rounding(ROUND_HALF_EVEN)
|
|
|
|
while 1:
|
|
|
|
context.prec = min(2*context.prec - 2, maxp)
|
2006-03-24 04:14:36 -04:00
|
|
|
ans = half.__mul__(ans.__add__(tmp.__truediv__(ans, context=context),
|
2004-07-01 08:01:35 -03:00
|
|
|
context=context), context=context)
|
|
|
|
if context.prec == maxp:
|
|
|
|
break
|
|
|
|
|
|
|
|
#round to the answer's precision-- the only error can be 1 ulp.
|
|
|
|
context.prec = firstprec
|
|
|
|
prevexp = ans.adjusted()
|
|
|
|
ans = ans._round(context=context)
|
|
|
|
|
|
|
|
#Now, check if the other last digits are better.
|
|
|
|
context.prec = firstprec + 1
|
|
|
|
# In case we rounded up another digit and we should actually go lower.
|
|
|
|
if prevexp != ans.adjusted():
|
|
|
|
ans._int += (0,)
|
|
|
|
ans._exp -= 1
|
|
|
|
|
|
|
|
|
|
|
|
lower = ans.__sub__(Decimal((0, (5,), ans._exp-1)), context=context)
|
|
|
|
context._set_rounding(ROUND_UP)
|
|
|
|
if lower.__mul__(lower, context=context) > (tmp):
|
|
|
|
ans = ans.__sub__(Decimal((0, (1,), ans._exp)), context=context)
|
|
|
|
|
|
|
|
else:
|
|
|
|
upper = ans.__add__(Decimal((0, (5,), ans._exp-1)),context=context)
|
|
|
|
context._set_rounding(ROUND_DOWN)
|
|
|
|
if upper.__mul__(upper, context=context) < tmp:
|
|
|
|
ans = ans.__add__(Decimal((0, (1,), ans._exp)),context=context)
|
|
|
|
|
|
|
|
ans._exp += expadd
|
|
|
|
|
|
|
|
context.prec = firstprec
|
|
|
|
context.rounding = rounding
|
2004-10-09 04:10:44 -03:00
|
|
|
ans = ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
rounding = context._set_rounding_decision(NEVER_ROUND)
|
|
|
|
if not ans.__mul__(ans, context=context) == self:
|
|
|
|
# Only rounded/inexact if here.
|
|
|
|
context._regard_flags(flags)
|
|
|
|
context._raise_error(Rounded)
|
|
|
|
context._raise_error(Inexact)
|
|
|
|
else:
|
|
|
|
#Exact answer, so let's set the exponent right.
|
|
|
|
#if self._exp < 0:
|
|
|
|
# exp = (self._exp +1)// 2
|
|
|
|
#else:
|
|
|
|
exp = self._exp // 2
|
|
|
|
context.prec += ans._exp - exp
|
|
|
|
ans = ans._rescale(exp, context=context)
|
|
|
|
context.prec = firstprec
|
|
|
|
context._regard_flags(flags)
|
|
|
|
context.Emax, context.Emin = Emax, Emin
|
|
|
|
|
2004-10-09 04:10:44 -03:00
|
|
|
return ans._fix(context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def max(self, other, context=None):
|
|
|
|
"""Returns the larger value.
|
|
|
|
|
|
|
|
like max(self, other) except if one is not a number, returns
|
|
|
|
NaN (and signals if one is sNaN). Also rounds.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-09-18 22:54:09 -03:00
|
|
|
|
|
|
|
if self._is_special or other._is_special:
|
|
|
|
# if one operand is a quiet NaN and the other is number, then the
|
|
|
|
# number is always returned
|
|
|
|
sn = self._isnan()
|
|
|
|
on = other._isnan()
|
|
|
|
if sn or on:
|
|
|
|
if on == 1 and sn != 2:
|
|
|
|
return self
|
|
|
|
if sn == 1 and on != 2:
|
|
|
|
return other
|
|
|
|
return self._check_nans(other, context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
ans = self
|
2004-08-17 03:39:37 -03:00
|
|
|
c = self.__cmp__(other)
|
|
|
|
if c == 0:
|
|
|
|
# if both operands are finite and equal in numerical value
|
|
|
|
# then an ordering is applied:
|
|
|
|
#
|
|
|
|
# if the signs differ then max returns the operand with the
|
|
|
|
# positive sign and min returns the operand with the negative sign
|
|
|
|
#
|
|
|
|
# if the signs are the same then the exponent is used to select
|
|
|
|
# the result.
|
|
|
|
if self._sign != other._sign:
|
|
|
|
if self._sign:
|
|
|
|
ans = other
|
|
|
|
elif self._exp < other._exp and not self._sign:
|
|
|
|
ans = other
|
|
|
|
elif self._exp > other._exp and self._sign:
|
|
|
|
ans = other
|
|
|
|
elif c == -1:
|
2004-07-01 08:01:35 -03:00
|
|
|
ans = other
|
2004-09-18 22:54:09 -03:00
|
|
|
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-10-20 03:58:28 -03:00
|
|
|
if context._rounding_decision == ALWAYS_ROUND:
|
|
|
|
return ans._fix(context)
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def min(self, other, context=None):
|
|
|
|
"""Returns the smaller value.
|
|
|
|
|
|
|
|
like min(self, other) except if one is not a number, returns
|
|
|
|
NaN (and signals if one is sNaN). Also rounds.
|
|
|
|
"""
|
2004-09-18 22:54:09 -03:00
|
|
|
other = _convert_other(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
if other is NotImplemented:
|
|
|
|
return other
|
2004-09-18 22:54:09 -03:00
|
|
|
|
|
|
|
if self._is_special or other._is_special:
|
|
|
|
# if one operand is a quiet NaN and the other is number, then the
|
|
|
|
# number is always returned
|
|
|
|
sn = self._isnan()
|
|
|
|
on = other._isnan()
|
|
|
|
if sn or on:
|
|
|
|
if on == 1 and sn != 2:
|
|
|
|
return self
|
|
|
|
if sn == 1 and on != 2:
|
|
|
|
return other
|
|
|
|
return self._check_nans(other, context)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
ans = self
|
2004-08-17 03:39:37 -03:00
|
|
|
c = self.__cmp__(other)
|
|
|
|
if c == 0:
|
|
|
|
# if both operands are finite and equal in numerical value
|
|
|
|
# then an ordering is applied:
|
|
|
|
#
|
|
|
|
# if the signs differ then max returns the operand with the
|
|
|
|
# positive sign and min returns the operand with the negative sign
|
|
|
|
#
|
|
|
|
# if the signs are the same then the exponent is used to select
|
|
|
|
# the result.
|
|
|
|
if self._sign != other._sign:
|
|
|
|
if other._sign:
|
|
|
|
ans = other
|
|
|
|
elif self._exp > other._exp and not self._sign:
|
|
|
|
ans = other
|
|
|
|
elif self._exp < other._exp and self._sign:
|
|
|
|
ans = other
|
|
|
|
elif c == 1:
|
2004-07-01 08:01:35 -03:00
|
|
|
ans = other
|
2004-09-18 22:54:09 -03:00
|
|
|
|
|
|
|
if context is None:
|
|
|
|
context = getcontext()
|
2004-10-20 03:58:28 -03:00
|
|
|
if context._rounding_decision == ALWAYS_ROUND:
|
|
|
|
return ans._fix(context)
|
|
|
|
return ans
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def _isinteger(self):
|
|
|
|
"""Returns whether self is an integer"""
|
|
|
|
if self._exp >= 0:
|
|
|
|
return True
|
|
|
|
rest = self._int[self._exp:]
|
|
|
|
return rest == (0,)*len(rest)
|
|
|
|
|
|
|
|
def _iseven(self):
|
|
|
|
"""Returns 1 if self is even. Assumes self is an integer."""
|
|
|
|
if self._exp > 0:
|
|
|
|
return 1
|
2004-08-06 20:42:16 -03:00
|
|
|
return self._int[-1+self._exp] & 1 == 0
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def adjusted(self):
|
|
|
|
"""Return the adjusted exponent of self"""
|
|
|
|
try:
|
|
|
|
return self._exp + len(self._int) - 1
|
|
|
|
#If NaN or Infinity, self._exp is string
|
|
|
|
except TypeError:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
# support for pickling, copy, and deepcopy
|
|
|
|
def __reduce__(self):
|
|
|
|
return (self.__class__, (str(self),))
|
|
|
|
|
|
|
|
def __copy__(self):
|
|
|
|
if type(self) == Decimal:
|
|
|
|
return self # I'm immutable; therefore I am my own clone
|
|
|
|
return self.__class__(str(self))
|
|
|
|
|
|
|
|
def __deepcopy__(self, memo):
|
|
|
|
if type(self) == Decimal:
|
|
|
|
return self # My components are also immutable
|
|
|
|
return self.__class__(str(self))
|
|
|
|
|
2004-07-03 07:02:28 -03:00
|
|
|
##### Context class ###########################################
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
# get rounding method function:
|
|
|
|
rounding_functions = [name for name in Decimal.__dict__.keys() if name.startswith('_round_')]
|
|
|
|
for name in rounding_functions:
|
|
|
|
#name is like _round_half_even, goes to the global ROUND_HALF_EVEN value.
|
|
|
|
globalname = name[1:].upper()
|
|
|
|
val = globals()[globalname]
|
|
|
|
Decimal._pick_rounding_function[val] = name
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
del name, val, globalname, rounding_functions
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2006-02-28 17:57:43 -04:00
|
|
|
class ContextManager(object):
|
|
|
|
"""Helper class to simplify Context management.
|
|
|
|
|
|
|
|
Sample usage:
|
|
|
|
|
|
|
|
with decimal.ExtendedContext:
|
|
|
|
s = ...
|
|
|
|
return +s # Convert result to normal precision
|
|
|
|
|
|
|
|
with decimal.getcontext() as ctx:
|
|
|
|
ctx.prec += 2
|
|
|
|
s = ...
|
|
|
|
return +s
|
|
|
|
|
|
|
|
"""
|
|
|
|
def __init__(self, new_context):
|
|
|
|
self.new_context = new_context
|
|
|
|
def __enter__(self):
|
|
|
|
self.saved_context = getcontext()
|
|
|
|
setcontext(self.new_context)
|
|
|
|
return self.new_context
|
|
|
|
def __exit__(self, t, v, tb):
|
|
|
|
setcontext(self.saved_context)
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
class Context(object):
|
|
|
|
"""Contains the context for a Decimal instance.
|
|
|
|
|
|
|
|
Contains:
|
|
|
|
prec - precision (for use in rounding, division, square roots..)
|
|
|
|
rounding - rounding type. (how you round)
|
|
|
|
_rounding_decision - ALWAYS_ROUND, NEVER_ROUND -- do you round?
|
2004-07-10 11:14:37 -03:00
|
|
|
traps - If traps[exception] = 1, then the exception is
|
2004-07-01 08:01:35 -03:00
|
|
|
raised when it is caused. Otherwise, a value is
|
|
|
|
substituted in.
|
|
|
|
flags - When an exception is caused, flags[exception] is incremented.
|
|
|
|
(Whether or not the trap_enabler is set)
|
|
|
|
Should be reset by user of Decimal instance.
|
2004-07-04 10:53:24 -03:00
|
|
|
Emin - Minimum exponent
|
|
|
|
Emax - Maximum exponent
|
2004-07-01 08:01:35 -03:00
|
|
|
capitals - If 1, 1*10^1 is printed as 1E+1.
|
|
|
|
If 0, printed as 1e1
|
2004-07-05 02:36:39 -03:00
|
|
|
_clamp - If 1, change exponents if too high (Default 0)
|
2004-07-01 08:01:35 -03:00
|
|
|
"""
|
2004-07-03 10:48:56 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
def __init__(self, prec=None, rounding=None,
|
2004-10-12 06:12:16 -03:00
|
|
|
traps=None, flags=None,
|
2004-07-01 08:01:35 -03:00
|
|
|
_rounding_decision=None,
|
2004-07-04 10:53:24 -03:00
|
|
|
Emin=None, Emax=None,
|
2004-07-05 02:36:39 -03:00
|
|
|
capitals=None, _clamp=0,
|
2004-10-12 06:12:16 -03:00
|
|
|
_ignored_flags=None):
|
|
|
|
if flags is None:
|
|
|
|
flags = []
|
|
|
|
if _ignored_flags is None:
|
|
|
|
_ignored_flags = []
|
2004-07-10 11:14:37 -03:00
|
|
|
if not isinstance(flags, dict):
|
2004-07-14 12:41:57 -03:00
|
|
|
flags = dict([(s,s in flags) for s in _signals])
|
2004-07-14 13:35:30 -03:00
|
|
|
del s
|
2004-07-10 11:14:37 -03:00
|
|
|
if traps is not None and not isinstance(traps, dict):
|
2004-07-14 12:41:57 -03:00
|
|
|
traps = dict([(s,s in traps) for s in _signals])
|
2004-07-14 13:35:30 -03:00
|
|
|
del s
|
2004-07-01 08:01:35 -03:00
|
|
|
for name, val in locals().items():
|
|
|
|
if val is None:
|
2005-06-07 15:52:34 -03:00
|
|
|
setattr(self, name, _copy.copy(getattr(DefaultContext, name)))
|
2004-07-01 08:01:35 -03:00
|
|
|
else:
|
|
|
|
setattr(self, name, val)
|
|
|
|
del self.self
|
|
|
|
|
2004-07-03 22:55:39 -03:00
|
|
|
def __repr__(self):
|
2004-07-10 11:14:37 -03:00
|
|
|
"""Show the current context."""
|
2004-07-03 22:55:39 -03:00
|
|
|
s = []
|
2004-07-10 11:14:37 -03:00
|
|
|
s.append('Context(prec=%(prec)d, rounding=%(rounding)s, Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d' % vars(self))
|
|
|
|
s.append('flags=[' + ', '.join([f.__name__ for f, v in self.flags.items() if v]) + ']')
|
|
|
|
s.append('traps=[' + ', '.join([t.__name__ for t, v in self.traps.items() if v]) + ']')
|
2004-07-03 22:55:39 -03:00
|
|
|
return ', '.join(s) + ')'
|
|
|
|
|
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Inherits test_gzip/test_tarfile failures on 64-bit platforms from the trunk,
but I don't want the merge to hang around too long (even though the regular
p3yk-contributors are/have been busy with other things.)
Merged revisions 45621-46490 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r45621 | george.yoshida | 2006-04-21 18:34:17 +0200 (Fri, 21 Apr 2006) | 2 lines
Correct the grammar
........
r45622 | tim.peters | 2006-04-21 18:34:54 +0200 (Fri, 21 Apr 2006) | 2 lines
Whitespace normalization.
........
r45624 | thomas.heller | 2006-04-21 18:48:56 +0200 (Fri, 21 Apr 2006) | 1 line
Merge in changes from ctypes 0.9.9.6 upstream version.
........
r45625 | thomas.heller | 2006-04-21 18:51:04 +0200 (Fri, 21 Apr 2006) | 1 line
Merge in changes from ctypes 0.9.9.6 upstream version.
........
r45630 | thomas.heller | 2006-04-21 20:29:17 +0200 (Fri, 21 Apr 2006) | 8 lines
Documentation for ctypes.
I think that 'generic operating system services' is the best category.
Note that the Doc/lib/libctypes.latex file is generated from reST sources.
You are welcome to make typo fixes, and I'll try to keep the reST sources
in sync, but markup changes would be lost - they should be fixed in the tool
that creates the latex file.
The conversion script is external/ctypes/docs/manual/mkpydoc.py.
........
r45631 | tim.peters | 2006-04-21 23:18:10 +0200 (Fri, 21 Apr 2006) | 24 lines
SF bug #1473760 TempFile can hang on Windows.
Python 2.4 changed ntpath.abspath to do an import
inside the function. As a result, due to Python's
import lock, anything calling abspath on Windows
(directly, or indirectly like tempfile.TemporaryFile)
hung when it was called from a thread spawned as a
side effect of importing a module.
This is a depressingly frequent problem, and
deserves a more general fix. I'm settling for
a micro-fix here because this specific one accounts
for a report of Zope Corp's ZEO hanging on Windows,
and it was an odd way to change abspath to begin
with (ntpath needs a different implementation
depending on whether we're actually running on
Windows, and the _obvious_ way to arrange for that
is not to bury a possibly-failing import _inside_
the function).
Note that if/when other micro-fixes of this kind
get made, the new Lib/test/threaded_import_hangers.py
is a convenient place to add tests for them.
........
r45634 | phillip.eby | 2006-04-21 23:53:37 +0200 (Fri, 21 Apr 2006) | 2 lines
Guido wrote contextlib, not me, but thanks anyway. ;)
........
r45636 | andrew.kuchling | 2006-04-22 03:51:41 +0200 (Sat, 22 Apr 2006) | 1 line
Typo fixes
........
r45638 | andrew.kuchling | 2006-04-22 03:58:40 +0200 (Sat, 22 Apr 2006) | 1 line
Fix comment typo
........
r45639 | andrew.kuchling | 2006-04-22 04:06:03 +0200 (Sat, 22 Apr 2006) | 8 lines
Make copy of test_mailbox.py. We'll still want to check the backward
compatibility classes in the new mailbox.py that I'll be committing in
a few minutes.
One change has been made: the tests use len(mbox) instead of len(mbox.boxes).
The 'boxes' attribute was never documented and contains some internal state
that seems unlikely to have been useful.
........
r45640 | andrew.kuchling | 2006-04-22 04:32:43 +0200 (Sat, 22 Apr 2006) | 16 lines
Add Gregory K. Johnson's revised version of mailbox.py (funded by
the 2005 Summer of Code).
The revision adds a number of new mailbox classes that support adding
and removing messages; these classes also support mailbox locking and
default to using email.Message instead of rfc822.Message.
The old mailbox classes are largely left alone for backward compatibility.
The exception is the Maildir class, which was present in the old module
and now inherits from the new classes. The Maildir class's interface
is pretty simple, though, so I think it'll be compatible with existing
code.
(The change to the NEWS file also adds a missing word to a different
news item, which unfortunately required rewrapping the line.)
........
r45641 | tim.peters | 2006-04-22 07:52:59 +0200 (Sat, 22 Apr 2006) | 2 lines
Whitespace normalization.
........
r45642 | neal.norwitz | 2006-04-22 08:07:46 +0200 (Sat, 22 Apr 2006) | 1 line
Add libctypes as a dep
........
r45643 | martin.v.loewis | 2006-04-22 13:15:41 +0200 (Sat, 22 Apr 2006) | 1 line
Fix more ssize_t problems.
........
r45644 | martin.v.loewis | 2006-04-22 13:40:03 +0200 (Sat, 22 Apr 2006) | 1 line
Fix more ssize_t issues.
........
r45645 | george.yoshida | 2006-04-22 17:10:49 +0200 (Sat, 22 Apr 2006) | 2 lines
Typo fixes
........
r45647 | martin.v.loewis | 2006-04-22 17:19:54 +0200 (Sat, 22 Apr 2006) | 1 line
Port to Python 2.5. Drop .DEF file. Change output file names to .pyd.
........
r45648 | george.yoshida | 2006-04-22 17:27:14 +0200 (Sat, 22 Apr 2006) | 3 lines
- add versionadded tag
- make arbitrary arguments come last
........
r45649 | hyeshik.chang | 2006-04-22 17:48:15 +0200 (Sat, 22 Apr 2006) | 3 lines
Remove $CJKCodecs$ RCS tags. The CJKCodecs isn't maintained outside
anymore.
........
r45654 | greg.ward | 2006-04-23 05:47:58 +0200 (Sun, 23 Apr 2006) | 2 lines
Update optparse to Optik 1.5.1.
........
r45658 | george.yoshida | 2006-04-23 11:27:10 +0200 (Sun, 23 Apr 2006) | 2 lines
wrap SyntaxError with \exception{}
........
r45660 | ronald.oussoren | 2006-04-23 13:59:25 +0200 (Sun, 23 Apr 2006) | 6 lines
Patch 1471925 - Weak linking support for OSX
This patch causes several symbols in the socket and posix module to be weakly
linked on OSX and disables usage of ftime on OSX. These changes make it possible
to use a binary build on OSX 10.4 on a 10.3 system.
........
r45661 | ronald.oussoren | 2006-04-23 14:36:23 +0200 (Sun, 23 Apr 2006) | 5 lines
Patch 1471761 - test for broken poll at runtime
This patch checks if poll is broken when the select module is loaded instead
of doing so at configure-time. This functionality is only active on Mac OS X.
........
r45662 | nick.coghlan | 2006-04-23 17:13:32 +0200 (Sun, 23 Apr 2006) | 1 line
Add a Context Types section to parallel the Iterator Types section (uses the same terminology as the 2.5a1 implementation)
........
r45663 | nick.coghlan | 2006-04-23 17:14:37 +0200 (Sun, 23 Apr 2006) | 1 line
Update contextlib documentation to use the same terminology as the module implementation
........
r45664 | gerhard.haering | 2006-04-23 17:24:26 +0200 (Sun, 23 Apr 2006) | 2 lines
Updated the sqlite3 module to the external pysqlite 2.2.2 version.
........
r45666 | nick.coghlan | 2006-04-23 17:39:16 +0200 (Sun, 23 Apr 2006) | 1 line
Update with statement documentation to use same terminology as 2.5a1 implementation
........
r45667 | nick.coghlan | 2006-04-23 18:05:04 +0200 (Sun, 23 Apr 2006) | 1 line
Add a (very) brief mention of the with statement to the end of chapter 8
........
r45668 | nick.coghlan | 2006-04-23 18:35:19 +0200 (Sun, 23 Apr 2006) | 1 line
Take 2 on mentioning the with statement, this time without inadvertently killing the Unicode examples
........
r45669 | nick.coghlan | 2006-04-23 19:04:07 +0200 (Sun, 23 Apr 2006) | 1 line
Backdated NEWS entry to record the implementation of PEP 338 for alpha 1
........
r45670 | tim.peters | 2006-04-23 20:13:45 +0200 (Sun, 23 Apr 2006) | 2 lines
Whitespace normalization.
........
r45671 | skip.montanaro | 2006-04-23 21:14:27 +0200 (Sun, 23 Apr 2006) | 1 line
first cut at trace module doc
........
r45672 | skip.montanaro | 2006-04-23 21:26:33 +0200 (Sun, 23 Apr 2006) | 1 line
minor tweak
........
r45673 | skip.montanaro | 2006-04-23 21:30:50 +0200 (Sun, 23 Apr 2006) | 1 line
it's always helpful if the example works...
........
r45674 | skip.montanaro | 2006-04-23 21:32:14 +0200 (Sun, 23 Apr 2006) | 1 line
correct example
........
r45675 | andrew.kuchling | 2006-04-23 23:01:04 +0200 (Sun, 23 Apr 2006) | 1 line
Edits to the PEP 343 section
........
r45676 | andrew.kuchling | 2006-04-23 23:51:10 +0200 (Sun, 23 Apr 2006) | 1 line
Add two items
........
r45677 | tim.peters | 2006-04-24 04:03:16 +0200 (Mon, 24 Apr 2006) | 5 lines
Bug #1337990: clarified that `doctest` does not support examples
requiring both expected output and an exception.
I'll backport to 2.4 next.
........
r45679 | nick.coghlan | 2006-04-24 05:04:43 +0200 (Mon, 24 Apr 2006) | 1 line
Note changes made to PEP 343 related documentation
........
r45681 | nick.coghlan | 2006-04-24 06:17:02 +0200 (Mon, 24 Apr 2006) | 1 line
Change PEP 343 related documentation to use the term context specifier instead of context object
........
r45682 | nick.coghlan | 2006-04-24 06:32:47 +0200 (Mon, 24 Apr 2006) | 1 line
Add unit tests for the -m and -c command line switches
........
r45683 | nick.coghlan | 2006-04-24 06:37:15 +0200 (Mon, 24 Apr 2006) | 1 line
Fix contextlib.nested to cope with exit methods raising and handling exceptions
........
r45685 | nick.coghlan | 2006-04-24 06:59:28 +0200 (Mon, 24 Apr 2006) | 1 line
Fix broken contextlib test from last checkin (I'd've sworn I tested that before checking it in. . .)
........
r45686 | nick.coghlan | 2006-04-24 07:24:26 +0200 (Mon, 24 Apr 2006) | 1 line
Back out new command line tests (broke buildbot)
........
r45687 | nick.coghlan | 2006-04-24 07:52:15 +0200 (Mon, 24 Apr 2006) | 1 line
More reliable version of new command line tests that just checks the exit codes
........
r45688 | thomas.wouters | 2006-04-24 13:37:13 +0200 (Mon, 24 Apr 2006) | 4 lines
Stop test_tcl's testLoadTk from leaking the Tk commands 'loadtk' registers.
........
r45690 | andrew.kuchling | 2006-04-24 16:30:47 +0200 (Mon, 24 Apr 2006) | 2 lines
Edits, using the new term
'context specifier' in a few places
........
r45697 | phillip.eby | 2006-04-24 22:53:13 +0200 (Mon, 24 Apr 2006) | 2 lines
Revert addition of setuptools
........
r45698 | tim.peters | 2006-04-25 00:45:13 +0200 (Tue, 25 Apr 2006) | 2 lines
Whitespace normalization.
........
r45700 | trent.mick | 2006-04-25 02:34:50 +0200 (Tue, 25 Apr 2006) | 4 lines
Put break at correct level so *all* root HKEYs acutally get checked for
an installed VC6. Otherwise only the first such tree gets checked and this
warning doesn't get displayed.
........
r45701 | tim.peters | 2006-04-25 05:31:36 +0200 (Tue, 25 Apr 2006) | 3 lines
Patch #1475231: add a new SKIP doctest option, thanks to
Edward Loper.
........
r45702 | neal.norwitz | 2006-04-25 07:04:35 +0200 (Tue, 25 Apr 2006) | 1 line
versionadded for SKIP
........
r45703 | neal.norwitz | 2006-04-25 07:05:03 +0200 (Tue, 25 Apr 2006) | 1 line
Restore Walters name
........
r45704 | neal.norwitz | 2006-04-25 07:49:42 +0200 (Tue, 25 Apr 2006) | 1 line
Revert previous change, SKIP had a versionadded elsewhere
........
r45706 | nick.coghlan | 2006-04-25 12:56:51 +0200 (Tue, 25 Apr 2006) | 31 lines
Move the PEP 343 documentation and implementation closer to the
terminology in the alpha 1 documentation.
- "context manager" reverts to its alpha 1 definition
- the term "context specifier" goes away entirely
- contextlib.GeneratorContextManager is renamed GeneratorContext
There are still a number of changes relative to alpha 1:
- the expression in the with statement is explicitly called the
"context expression" in the language reference
- the terms 'with statement context', 'context object' or 'with
statement context' are used in several places instead of a bare
'context'. The aim of this is to avoid ambiguity in relation to the
runtime context set up when the block is executed, and the context
objects that already exist in various application domains (such as
decimal.Context)
- contextlib.contextmanager is renamed to contextfactory
This best reflects the nature of the function resulting from the
use of that decorator
- decimal.ContextManager is renamed to WithStatementContext
Simple dropping the 'Manager' part wasn't possible due to the
fact that decimal.Context already exists and means something
different. WithStatementContext is ugly but workable.
A technically unrelated change snuck into this commit:
contextlib.closing now avoids the overhead of creating a
generator, since it's trivial to implement that particular
context manager directly.
........
r45707 | nick.coghlan | 2006-04-25 13:05:56 +0200 (Tue, 25 Apr 2006) | 1 line
Fix latex typo
........
r45708 | thomas.wouters | 2006-04-25 14:28:56 +0200 (Tue, 25 Apr 2006) | 4 lines
Fix markup glitch in unittest docs. Will backport.
........
r45710 | andrew.kuchling | 2006-04-25 14:31:38 +0200 (Tue, 25 Apr 2006) | 1 line
Add two items; easy_install is now off the table, though pkgutil still is
........
r45711 | andrew.kuchling | 2006-04-25 14:47:25 +0200 (Tue, 25 Apr 2006) | 1 line
Rework context terminology
........
r45712 | thomas.wouters | 2006-04-25 15:53:23 +0200 (Tue, 25 Apr 2006) | 9 lines
SF bug/patch #1433877: string parameter to ioctl not null terminated
The new char-array used in ioctl calls wasn't explicitly NUL-terminated;
quite probably the cause for the test_pty failures on Solaris that we
circumvented earlier. (I wasn't able to reproduce it with this patch, but it
has been somewhat elusive to start with.)
........
r45713 | george.yoshida | 2006-04-25 16:09:58 +0200 (Tue, 25 Apr 2006) | 2 lines
minor tweak
........
r45714 | thomas.wouters | 2006-04-25 17:08:10 +0200 (Tue, 25 Apr 2006) | 7 lines
Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 and
AF_PACKET cases in getsockaddrarg were missing their own checks for
tuple-ness of the address argument, which means a confusing SystemError was
raised by PyArg_ParseTuple instead.
........
r45715 | thomas.wouters | 2006-04-25 17:29:46 +0200 (Tue, 25 Apr 2006) | 10 lines
Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses
MAXPATHLEN-sized buffers for various output-buffers (like to realpath()),
and that's correct on BSD platforms, but not Linux (which uses PATH_MAX, and
does not define MAXPATHLEN.) Cursory googling suggests Linux is following a
newer standard than BSD, but in cases like this, who knows. Using the
greater of PATH_MAX and 1024 as a fallback for MAXPATHLEN seems to be the
most portable solution.
........
r45717 | thomas.heller | 2006-04-25 20:26:08 +0200 (Tue, 25 Apr 2006) | 3 lines
Fix compiler warnings on Darwin.
Patch by Brett Canon, see
https://sourceforge.net/tracker/?func=detail&atid=532156&aid=1475959&group_id=71702
........
r45718 | guido.van.rossum | 2006-04-25 22:12:45 +0200 (Tue, 25 Apr 2006) | 4 lines
Implement MvL's improvement on __context__ in Condition;
this can just call __context__ on the underlying lock.
(The same change for Semaphore does *not* work!)
........
r45721 | tim.peters | 2006-04-26 03:15:53 +0200 (Wed, 26 Apr 2006) | 13 lines
Rev 45706 renamed stuff in contextlib.py, but didn't rename
uses of it in test_with.py. As a result, test_with has been skipped
(due to failing imports) on all buildbot boxes since. Alas, that's
not a test failure -- you have to pay attention to the
1 skip unexpected on PLATFORM:
test_with
kinds of output at the ends of test runs to notice that this got
broken.
It's likely that more renaming in test_with.py would be desirable.
........
r45722 | fred.drake | 2006-04-26 07:15:41 +0200 (Wed, 26 Apr 2006) | 1 line
markup fixes, cleanup
........
r45723 | fred.drake | 2006-04-26 07:19:39 +0200 (Wed, 26 Apr 2006) | 1 line
minor adjustment suggested by Peter Gephardt
........
r45724 | neal.norwitz | 2006-04-26 07:34:03 +0200 (Wed, 26 Apr 2006) | 10 lines
Patch from Aldo Cortesi (OpenBSD buildbot owner).
After the patch (45590) to add extra debug stats to the gc module, Python
was crashing on OpenBSD due to:
Fatal Python error: Interpreter not initialized (version mismatch?)
This seems to occur due to calling collect() when initialized (in pythonrun.c)
is set to 0. Now, the import will occur in the init function which
shouldn't suffer this problem.
........
r45725 | neal.norwitz | 2006-04-26 08:26:12 +0200 (Wed, 26 Apr 2006) | 3 lines
Fix this test on Solaris. There can be embedded \r, so don't just replace
the one at the end.
........
r45727 | nick.coghlan | 2006-04-26 13:50:04 +0200 (Wed, 26 Apr 2006) | 1 line
Fix an error in the last contextlib.closing example
........
r45728 | andrew.kuchling | 2006-04-26 14:21:06 +0200 (Wed, 26 Apr 2006) | 1 line
[Bug #1475080] Fix example
........
r45729 | andrew.kuchling | 2006-04-26 14:23:39 +0200 (Wed, 26 Apr 2006) | 1 line
Add labels to all sections
........
r45730 | thomas.wouters | 2006-04-26 17:53:30 +0200 (Wed, 26 Apr 2006) | 7 lines
The result of SF patch #1471578: big-memory tests for strings, lists and
tuples. Lots to be added, still, but this will give big-memory people
something to play with in 2.5 alpha 2, and hopefully get more people to
write these tests.
........
r45731 | tim.peters | 2006-04-26 19:11:16 +0200 (Wed, 26 Apr 2006) | 2 lines
Whitespace normalization.
........
r45732 | martin.v.loewis | 2006-04-26 19:19:44 +0200 (Wed, 26 Apr 2006) | 1 line
Use GS- and bufferoverlowU.lib where appropriate, for AMD64.
........
r45733 | thomas.wouters | 2006-04-26 20:46:01 +0200 (Wed, 26 Apr 2006) | 5 lines
Add tests for += and *= on strings, and fix the memory-use estimate for the
list.extend tests (they were estimating half the actual use.)
........
r45734 | thomas.wouters | 2006-04-26 21:14:46 +0200 (Wed, 26 Apr 2006) | 5 lines
Some more test-size-estimate fixes: test_append and test_insert trigger a
list resize, which overallocates.
........
r45735 | hyeshik.chang | 2006-04-26 21:20:26 +0200 (Wed, 26 Apr 2006) | 3 lines
Fix build on MIPS for libffi. I haven't tested this yet because I
don't have an access on MIPS machines. Will be tested by buildbot. :)
........
r45737 | fred.drake | 2006-04-27 01:40:32 +0200 (Thu, 27 Apr 2006) | 1 line
one more place to use the current Python version
........
r45738 | fred.drake | 2006-04-27 02:02:24 +0200 (Thu, 27 Apr 2006) | 3 lines
- update version numbers in file names again, until we have a better way
- elaborate instructions for Cygwin support (closes SF #839709)
........
r45739 | fred.drake | 2006-04-27 02:20:14 +0200 (Thu, 27 Apr 2006) | 1 line
add missing word
........
r45740 | anthony.baxter | 2006-04-27 04:11:24 +0200 (Thu, 27 Apr 2006) | 2 lines
2.5a2
........
r45741 | anthony.baxter | 2006-04-27 04:13:13 +0200 (Thu, 27 Apr 2006) | 1 line
2.5a2
........
r45749 | andrew.kuchling | 2006-04-27 14:22:37 +0200 (Thu, 27 Apr 2006) | 1 line
Now that 2.5a2 is out, revert to the current date
........
r45750 | andrew.kuchling | 2006-04-27 14:23:07 +0200 (Thu, 27 Apr 2006) | 1 line
Bump document version
........
r45751 | andrew.kuchling | 2006-04-27 14:34:39 +0200 (Thu, 27 Apr 2006) | 6 lines
[Bug #1477102] Add necessary import to example
This may be a useful style question for the docs -- should examples show
the necessary imports, or should it be assumed that the reader will
figure it out? In the What's New, I'm not consistent but usually opt
for omitting the imports.
........
r45753 | andrew.kuchling | 2006-04-27 14:38:35 +0200 (Thu, 27 Apr 2006) | 1 line
[Bug #1477140] Import Error base class
........
r45754 | andrew.kuchling | 2006-04-27 14:42:54 +0200 (Thu, 27 Apr 2006) | 1 line
Mention the xmlrpclib.Error base class, which is used in one of the examples
........
r45756 | george.yoshida | 2006-04-27 15:41:07 +0200 (Thu, 27 Apr 2006) | 2 lines
markup fix
........
r45757 | thomas.wouters | 2006-04-27 15:46:59 +0200 (Thu, 27 Apr 2006) | 4 lines
Some more size-estimate fixes, for large-list-tests.
........
r45758 | thomas.heller | 2006-04-27 17:50:42 +0200 (Thu, 27 Apr 2006) | 3 lines
Rerun the libffi configuration if any of the files used for that
are newer then fficonfig.py.
........
r45766 | thomas.wouters | 2006-04-28 00:37:50 +0200 (Fri, 28 Apr 2006) | 6 lines
Some style fixes and size-calculation fixes. Also do the small-memory run
using a prime number, rather than a convenient power-of-2-and-multiple-of-5,
so incorrect testing algorithms fail more easily.
........
r45767 | thomas.wouters | 2006-04-28 00:38:32 +0200 (Fri, 28 Apr 2006) | 6 lines
Do the small-memory run of big-meormy tests using a prime number, rather
than a convenient power-of-2-and-multiple-of-5, so incorrect testing
algorithms fail more easily.
........
r45768 | david.goodger | 2006-04-28 00:53:05 +0200 (Fri, 28 Apr 2006) | 1 line
Added SVN access for Steven Bethard and Talin, for PEP updating.
........
r45770 | thomas.wouters | 2006-04-28 01:13:20 +0200 (Fri, 28 Apr 2006) | 16 lines
- Add new Warning class, ImportWarning
- Warn-raise ImportWarning when importing would have picked up a directory
as package, if only it'd had an __init__.py. This swaps two tests (for
case-ness and __init__-ness), but case-test is not really more expensive,
and it's not in a speed-critical section.
- Test for the new warning by importing a common non-package directory on
sys.path: site-packages
- In regrtest.py, silence warnings generated by the build-environment
because Modules/ (which is added to sys.path for Setup-created modules)
has 'zlib' and '_ctypes' directories without __init__.py's.
........
r45771 | thomas.wouters | 2006-04-28 01:41:27 +0200 (Fri, 28 Apr 2006) | 6 lines
Add more ignores of ImportWarnings; these are all just potential triggers
(since they won't trigger if zlib is already sucessfully imported); they
were found by grepping .py files, instead of looking at warning output :)
........
r45773 | neal.norwitz | 2006-04-28 06:32:20 +0200 (Fri, 28 Apr 2006) | 1 line
Add some whitespace to be more consistent.
........
r45774 | neal.norwitz | 2006-04-28 06:34:43 +0200 (Fri, 28 Apr 2006) | 5 lines
Try to really fix the slow buildbots this time.
Printing to stdout, doesn't mean the data was actually written.
It depends on the buffering, so we need to flush. This will hopefully
really fix the buildbots getting killed due to no output on the slow bots.
........
r45775 | neal.norwitz | 2006-04-28 07:28:05 +0200 (Fri, 28 Apr 2006) | 1 line
Fix some warnings on Mac OS X 10.4
........
r45776 | neal.norwitz | 2006-04-28 07:28:30 +0200 (Fri, 28 Apr 2006) | 1 line
Fix a warning on alpha
........
r45777 | neal.norwitz | 2006-04-28 07:28:54 +0200 (Fri, 28 Apr 2006) | 1 line
Fix a warning on ppc (debian)
........
r45778 | george.yoshida | 2006-04-28 18:09:45 +0200 (Fri, 28 Apr 2006) | 2 lines
fix markup glitch
........
r45780 | georg.brandl | 2006-04-28 18:31:17 +0200 (Fri, 28 Apr 2006) | 3 lines
Add SeaMonkey to the list of Mozilla browsers.
........
r45781 | georg.brandl | 2006-04-28 18:36:55 +0200 (Fri, 28 Apr 2006) | 2 lines
Bug #1475009: clarify ntpath.join behavior with absolute components
........
r45783 | george.yoshida | 2006-04-28 18:40:14 +0200 (Fri, 28 Apr 2006) | 2 lines
correct a dead link
........
r45785 | georg.brandl | 2006-04-28 18:54:25 +0200 (Fri, 28 Apr 2006) | 4 lines
Bug #1472949: stringify IOErrors in shutil.copytree when appending
them to the Error errors list.
........
r45786 | georg.brandl | 2006-04-28 18:58:52 +0200 (Fri, 28 Apr 2006) | 3 lines
Bug #1478326: don't allow '/' in distutils.util.get_platform machine names
since this value is used to name the build directory.
........
r45788 | thomas.heller | 2006-04-28 19:02:18 +0200 (Fri, 28 Apr 2006) | 1 line
Remove a duplicated test (the same test is in test_incomplete.py).
........
r45792 | georg.brandl | 2006-04-28 21:09:24 +0200 (Fri, 28 Apr 2006) | 3 lines
Bug #1478429: make datetime.datetime.fromtimestamp accept every float,
possibly "rounding up" to the next whole second.
........
r45796 | george.yoshida | 2006-04-29 04:43:30 +0200 (Sat, 29 Apr 2006) | 2 lines
grammar fix
........
r45800 | ronald.oussoren | 2006-04-29 13:31:35 +0200 (Sat, 29 Apr 2006) | 2 lines
Patch 1471883: --enable-universalsdk on Mac OS X
........
r45801 | andrew.kuchling | 2006-04-29 13:53:15 +0200 (Sat, 29 Apr 2006) | 1 line
Add item
........
r45802 | andrew.kuchling | 2006-04-29 14:10:28 +0200 (Sat, 29 Apr 2006) | 1 line
Make case of 'ZIP' consistent
........
r45803 | andrew.kuchling | 2006-04-29 14:10:43 +0200 (Sat, 29 Apr 2006) | 1 line
Add item
........
r45808 | martin.v.loewis | 2006-04-29 14:37:25 +0200 (Sat, 29 Apr 2006) | 3 lines
Further changes for #1471883: Edit Misc/NEWS, and
add expat_config.h.
........
r45809 | brett.cannon | 2006-04-29 23:29:50 +0200 (Sat, 29 Apr 2006) | 2 lines
Fix docstring for contextfactory; mentioned old contextmanager name.
........
r45810 | gerhard.haering | 2006-04-30 01:12:41 +0200 (Sun, 30 Apr 2006) | 3 lines
This is the start of documentation for the sqlite3 module. Please feel free to
find a better place for the link to it than alongside bsddb & friends.
........
r45811 | andrew.kuchling | 2006-04-30 03:07:09 +0200 (Sun, 30 Apr 2006) | 1 line
Add two items
........
r45814 | george.yoshida | 2006-04-30 05:49:56 +0200 (Sun, 30 Apr 2006) | 2 lines
Use \versionchanged instead of \versionadded for new parameter support.
........
r45815 | georg.brandl | 2006-04-30 09:06:11 +0200 (Sun, 30 Apr 2006) | 2 lines
Patch #1470846: fix urllib2 ProxyBasicAuthHandler.
........
r45817 | georg.brandl | 2006-04-30 10:57:35 +0200 (Sun, 30 Apr 2006) | 3 lines
In stdlib, use hashlib instead of deprecated md5 and sha modules.
........
r45819 | georg.brandl | 2006-04-30 11:23:59 +0200 (Sun, 30 Apr 2006) | 3 lines
Patch #1470976: don't NLST files when retrieving over FTP.
........
r45821 | georg.brandl | 2006-04-30 13:13:56 +0200 (Sun, 30 Apr 2006) | 6 lines
Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.
On the way, add a decorator to test_support to facilitate running single
test functions in different locales with automatic cleanup.
........
r45822 | phillip.eby | 2006-04-30 17:59:26 +0200 (Sun, 30 Apr 2006) | 2 lines
Fix infinite regress when inspecting <string> or <stdin> frames.
........
r45824 | georg.brandl | 2006-04-30 19:42:26 +0200 (Sun, 30 Apr 2006) | 3 lines
Fix another problem in inspect: if the module for an object cannot be found, don't try to give its __dict__ to linecache.
........
r45825 | georg.brandl | 2006-04-30 20:14:54 +0200 (Sun, 30 Apr 2006) | 3 lines
Patch #1472854: make the rlcompleter.Completer class usable on non-
UNIX platforms.
........
r45826 | georg.brandl | 2006-04-30 21:34:19 +0200 (Sun, 30 Apr 2006) | 3 lines
Patch #1479438: add \keyword markup for "with".
........
r45827 | andrew.kuchling | 2006-04-30 23:19:31 +0200 (Sun, 30 Apr 2006) | 1 line
Add urllib2 HOWTO from Michael Foord
........
r45828 | andrew.kuchling | 2006-04-30 23:19:49 +0200 (Sun, 30 Apr 2006) | 1 line
Add item
........
r45830 | barry.warsaw | 2006-05-01 05:03:02 +0200 (Mon, 01 May 2006) | 11 lines
Port forward from 2.4 branch:
Patch #1464708 from William McVey: fixed handling of nested comments in mail
addresses. E.g.
"Foo ((Foo Bar)) <foo@example.com>"
Fixes for both rfc822.py and email package. This patch needs to be back
ported to Python 2.3 for email 2.5.
........
r45832 | fred.drake | 2006-05-01 08:25:58 +0200 (Mon, 01 May 2006) | 4 lines
- minor clarification in section title
- markup adjustments
(there is clearly much to be done in this section)
........
r45833 | martin.v.loewis | 2006-05-01 08:28:01 +0200 (Mon, 01 May 2006) | 2 lines
Work around deadlock risk. Will backport.
........
r45836 | andrew.kuchling | 2006-05-01 14:45:02 +0200 (Mon, 01 May 2006) | 1 line
Some ElementTree fixes: import from xml, not xmlcore; fix case of module name; mention list() instead of getchildren()
........
r45837 | gerhard.haering | 2006-05-01 17:14:48 +0200 (Mon, 01 May 2006) | 3 lines
Further integration of the documentation for the sqlite3 module. There's still
quite some content to move over from the pysqlite manual, but it's a start now.
........
r45838 | martin.v.loewis | 2006-05-01 17:56:03 +0200 (Mon, 01 May 2006) | 2 lines
Rename uisample to text, drop all non-text tables.
........
r45839 | martin.v.loewis | 2006-05-01 18:12:44 +0200 (Mon, 01 May 2006) | 2 lines
Add msilib documentation.
........
r45840 | martin.v.loewis | 2006-05-01 18:14:16 +0200 (Mon, 01 May 2006) | 4 lines
Rename parameters to match the documentation (which
in turn matches Microsoft's documentation).
Drop unused parameter in CAB.append.
........
r45841 | fred.drake | 2006-05-01 18:28:54 +0200 (Mon, 01 May 2006) | 1 line
add dependency
........
r45842 | andrew.kuchling | 2006-05-01 18:30:25 +0200 (Mon, 01 May 2006) | 1 line
Markup fixes; add some XXX comments noting problems
........
r45843 | andrew.kuchling | 2006-05-01 18:32:49 +0200 (Mon, 01 May 2006) | 1 line
Add item
........
r45844 | andrew.kuchling | 2006-05-01 19:06:54 +0200 (Mon, 01 May 2006) | 1 line
Markup fixes
........
r45850 | neal.norwitz | 2006-05-02 06:43:14 +0200 (Tue, 02 May 2006) | 3 lines
SF #1479181: split open() and file() from being aliases for each other.
........
r45852 | neal.norwitz | 2006-05-02 08:23:22 +0200 (Tue, 02 May 2006) | 1 line
Try to fix breakage caused by patch #1479181, r45850
........
r45853 | fred.drake | 2006-05-02 08:53:59 +0200 (Tue, 02 May 2006) | 3 lines
SF #1479988: add methods to allow access to weakrefs for the
weakref.WeakKeyDictionary and weakref.WeakValueDictionary
........
r45854 | neal.norwitz | 2006-05-02 09:27:47 +0200 (Tue, 02 May 2006) | 5 lines
Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1.
The problem was that pyconfig.h was being included before some system headers
which caused redefinitions and other breakage. This moves system headers
after expat_config.h which includes pyconfig.h.
........
r45855 | vinay.sajip | 2006-05-02 10:35:36 +0200 (Tue, 02 May 2006) | 1 line
Replaced my dumb way of calculating seconds to midnight with Tim Peters' much more sensible suggestion. What was I thinking ?!?
........
r45856 | andrew.kuchling | 2006-05-02 13:30:03 +0200 (Tue, 02 May 2006) | 1 line
Provide encoding as keyword argument; soften warning paragraph about encodings
........
r45858 | guido.van.rossum | 2006-05-02 19:36:09 +0200 (Tue, 02 May 2006) | 2 lines
Fix the formatting of KeyboardInterrupt -- a bad issubclass() call.
........
r45862 | guido.van.rossum | 2006-05-02 21:47:52 +0200 (Tue, 02 May 2006) | 7 lines
Get rid of __context__, per the latest changes to PEP 343 and python-dev
discussion.
There are two places of documentation that still mention __context__:
Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without
spending a whole lot of time thinking about it; and whatsnew, which Andrew
usually likes to change himself.
........
r45863 | armin.rigo | 2006-05-02 21:52:32 +0200 (Tue, 02 May 2006) | 4 lines
Documentation bug: PySet_Pop() returns a new reference (because the
caller becomes the owner of that reference).
........
r45864 | guido.van.rossum | 2006-05-02 22:47:36 +0200 (Tue, 02 May 2006) | 4 lines
Hopefully this will fix the spurious failures of test_mailbox.py that I'm
experiencing. (This code and mailbox.py itself are full of calls to file()
that should be calls to open() -- but I'm not fixing those.)
........
r45865 | andrew.kuchling | 2006-05-02 23:44:33 +0200 (Tue, 02 May 2006) | 1 line
Use open() instead of file()
........
r45866 | andrew.kuchling | 2006-05-03 00:47:49 +0200 (Wed, 03 May 2006) | 1 line
Update context manager section for removal of __context__
........
r45867 | fred.drake | 2006-05-03 03:46:52 +0200 (Wed, 03 May 2006) | 1 line
remove unnecessary assignment
........
r45868 | fred.drake | 2006-05-03 03:48:24 +0200 (Wed, 03 May 2006) | 4 lines
tell LaTeX2HTML to:
- use UTF-8 output
- not mess with the >>> prompt!
........
r45869 | fred.drake | 2006-05-03 04:04:40 +0200 (Wed, 03 May 2006) | 3 lines
avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to
guillemets; no need for magic here
........
r45870 | fred.drake | 2006-05-03 04:12:47 +0200 (Wed, 03 May 2006) | 1 line
at least comment on why curly-quotes are not enabled
........
r45871 | fred.drake | 2006-05-03 04:27:40 +0200 (Wed, 03 May 2006) | 1 line
one more place to avoid extra markup
........
r45872 | fred.drake | 2006-05-03 04:29:09 +0200 (Wed, 03 May 2006) | 1 line
one more place to avoid extra markup (how many will there be?)
........
r45873 | fred.drake | 2006-05-03 04:29:39 +0200 (Wed, 03 May 2006) | 1 line
fix up whitespace in prompt strings
........
r45876 | tim.peters | 2006-05-03 06:46:14 +0200 (Wed, 03 May 2006) | 2 lines
Whitespace normalization.
........
r45877 | martin.v.loewis | 2006-05-03 06:52:04 +0200 (Wed, 03 May 2006) | 2 lines
Correct some formulations, fix XXX comments.
........
r45879 | georg.brandl | 2006-05-03 07:05:02 +0200 (Wed, 03 May 2006) | 2 lines
Patch #1480067: don't redirect HTTP digest auth in urllib2
........
r45881 | georg.brandl | 2006-05-03 07:15:10 +0200 (Wed, 03 May 2006) | 3 lines
Move network tests from test_urllib2 to test_urllib2net.
........
r45887 | nick.coghlan | 2006-05-03 15:02:47 +0200 (Wed, 03 May 2006) | 1 line
Finish bringing SVN into line with latest version of PEP 343 by getting rid of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager()
........
r45888 | nick.coghlan | 2006-05-03 15:17:49 +0200 (Wed, 03 May 2006) | 1 line
Get rid of a couple more context object references, fix some markup and clarify what happens when a generator context function swallows an exception.
........
r45889 | georg.brandl | 2006-05-03 19:46:13 +0200 (Wed, 03 May 2006) | 3 lines
Add seamonkey to list of Windows browsers too.
........
r45890 | georg.brandl | 2006-05-03 20:03:22 +0200 (Wed, 03 May 2006) | 3 lines
RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if not necessary.
........
r45891 | georg.brandl | 2006-05-03 20:12:33 +0200 (Wed, 03 May 2006) | 2 lines
Bug #1472191: convert breakpoint indices to ints before comparing them to ints
........
r45893 | georg.brandl | 2006-05-03 20:18:32 +0200 (Wed, 03 May 2006) | 3 lines
Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package.
........
r45894 | thomas.heller | 2006-05-03 20:35:39 +0200 (Wed, 03 May 2006) | 1 line
Don't fail the tests when libglut.so or libgle.so cannot be loaded.
........
r45895 | georg.brandl | 2006-05-04 07:08:10 +0200 (Thu, 04 May 2006) | 2 lines
Bug #1481530: allow "from os.path import ..." with imputil
........
r45897 | martin.v.loewis | 2006-05-04 07:51:03 +0200 (Thu, 04 May 2006) | 2 lines
Patch #1475845: Raise IndentationError for unexpected indent.
........
r45898 | martin.v.loewis | 2006-05-04 12:08:42 +0200 (Thu, 04 May 2006) | 1 line
Implement os.{chdir,rename,rmdir,remove} using Win32 directly.
........
r45899 | martin.v.loewis | 2006-05-04 14:04:27 +0200 (Thu, 04 May 2006) | 2 lines
Drop now-unnecessary arguments to posix_2str.
........
r45900 | martin.v.loewis | 2006-05-04 16:27:52 +0200 (Thu, 04 May 2006) | 1 line
Update checks to consider Windows error numbers.
........
r45913 | thomas.heller | 2006-05-05 20:42:14 +0200 (Fri, 05 May 2006) | 2 lines
Export the 'free' standard C function for use in the test suite.
........
r45914 | thomas.heller | 2006-05-05 20:43:24 +0200 (Fri, 05 May 2006) | 3 lines
Fix memory leaks in the ctypes test suite, reported by valgrind, by
free()ing the memory we allocate.
........
r45915 | thomas.heller | 2006-05-05 20:46:27 +0200 (Fri, 05 May 2006) | 1 line
oops - the function is exported as 'my_free', not 'free'.
........
r45916 | thomas.heller | 2006-05-05 21:14:24 +0200 (Fri, 05 May 2006) | 2 lines
Clean up.
........
r45920 | george.yoshida | 2006-05-06 15:09:45 +0200 (Sat, 06 May 2006) | 2 lines
describe optional arguments for DocFileSuite
........
r45924 | george.yoshida | 2006-05-06 16:16:51 +0200 (Sat, 06 May 2006) | 2 lines
Use \versionchanged for the feature change
........
r45925 | martin.v.loewis | 2006-05-06 18:32:54 +0200 (Sat, 06 May 2006) | 1 line
Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.
........
r45926 | martin.v.loewis | 2006-05-06 22:04:08 +0200 (Sat, 06 May 2006) | 2 lines
Handle ERROR_ALREADY_EXISTS.
........
r45931 | andrew.kuchling | 2006-05-07 19:12:12 +0200 (Sun, 07 May 2006) | 1 line
[Patch #1479977] Revised version of urllib2 HOWTO, edited by John J. Lee
........
r45932 | andrew.kuchling | 2006-05-07 19:14:53 +0200 (Sun, 07 May 2006) | 1 line
Minor language edit
........
r45934 | georg.brandl | 2006-05-07 22:44:34 +0200 (Sun, 07 May 2006) | 3 lines
Patch #1483395: add new TLDs to cookielib
........
r45936 | martin.v.loewis | 2006-05-08 07:25:56 +0200 (Mon, 08 May 2006) | 2 lines
Add missing PyMem_Free.
........
r45938 | georg.brandl | 2006-05-08 19:28:47 +0200 (Mon, 08 May 2006) | 3 lines
Add test for rev. 45934.
........
r45939 | georg.brandl | 2006-05-08 19:36:08 +0200 (Mon, 08 May 2006) | 3 lines
Patch #1479302: Make urllib2 digest auth and basic auth play together.
........
r45940 | georg.brandl | 2006-05-08 19:48:01 +0200 (Mon, 08 May 2006) | 3 lines
Patch #1478993: take advantage of BaseException/Exception split in cookielib
........
r45941 | neal.norwitz | 2006-05-09 07:38:56 +0200 (Tue, 09 May 2006) | 5 lines
Micro optimization. In the first case, we know that frame->f_exc_type
is NULL, so there's no reason to do anything with it. In the second case,
we know frame->f_exc_type is not NULL, so we can just do an INCREF.
........
r45943 | thomas.heller | 2006-05-09 22:20:15 +0200 (Tue, 09 May 2006) | 2 lines
Disable a test that is unreliable.
........
r45944 | tim.peters | 2006-05-10 04:43:01 +0200 (Wed, 10 May 2006) | 4 lines
Variant of patch #1478292. doctest.register_optionflag(name)
shouldn't create a new flag when `name` is already the name of
an option flag.
........
r45947 | neal.norwitz | 2006-05-10 08:57:58 +0200 (Wed, 10 May 2006) | 14 lines
Fix problems found by Coverity.
longobject.c: also fix an ssize_t problem
<a> could have been NULL, so hoist the size calc to not use <a>.
_ssl.c: under fail: self is DECREF'd, but it would have been NULL.
_elementtree.c: delete self if there was an error.
_csv.c: I'm not sure if lineterminator could have been anything other than
a string. However, other string method calls are checked, so check this
one too.
........
r45948 | thomas.wouters | 2006-05-10 17:04:11 +0200 (Wed, 10 May 2006) | 4 lines
Ignore reflog.txt, too.
........
r45949 | georg.brandl | 2006-05-10 17:59:06 +0200 (Wed, 10 May 2006) | 3 lines
Bug #1482988: indicate more prominently that the Stats class is in the pstats module.
........
r45950 | georg.brandl | 2006-05-10 18:09:03 +0200 (Wed, 10 May 2006) | 2 lines
Bug #1485447: subprocess: document that the "cwd" parameter isn't used to find the executable. Misc. other markup fixes.
........
r45952 | georg.brandl | 2006-05-10 18:11:44 +0200 (Wed, 10 May 2006) | 2 lines
Bug #1484978: curses.panel: clarify that Panel objects are destroyed on garbage collection.
........
r45954 | georg.brandl | 2006-05-10 18:26:03 +0200 (Wed, 10 May 2006) | 4 lines
Patch #1484695: Update the tarfile module to version 0.8. This fixes
a couple of issues, notably handling of long file names using the
GNU LONGNAME extension.
........
r45955 | georg.brandl | 2006-05-10 19:13:20 +0200 (Wed, 10 May 2006) | 4 lines
Patch #721464: pdb.Pdb instances can now be given explicit stdin and
stdout arguments, making it possible to redirect input and output
for remote debugging.
........
r45956 | andrew.kuchling | 2006-05-10 19:19:04 +0200 (Wed, 10 May 2006) | 1 line
Clarify description of exception handling
........
r45957 | georg.brandl | 2006-05-10 22:09:23 +0200 (Wed, 10 May 2006) | 2 lines
Fix two small errors in argument lists.
........
r45960 | brett.cannon | 2006-05-11 07:11:33 +0200 (Thu, 11 May 2006) | 5 lines
Detect if %zd is supported by printf() during configure and sets
PY_FORMAT_SIZE_T appropriately. Removes warnings on
OS X under gcc 4.0.1 when PY_FORMAT_SIZE_T is set to "" instead of "z" as is
needed.
........
r45963 | neal.norwitz | 2006-05-11 09:51:59 +0200 (Thu, 11 May 2006) | 1 line
Don't mask a no memory error with a less meaningful one as discussed on python-checkins
........
r45964 | martin.v.loewis | 2006-05-11 15:28:43 +0200 (Thu, 11 May 2006) | 3 lines
Change WindowsError to carry the Win32 error code in winerror,
and the DOS error code in errno. Revert changes where
WindowsError catch blocks unnecessarily special-case OSError.
........
r45965 | george.yoshida | 2006-05-11 17:53:27 +0200 (Thu, 11 May 2006) | 2 lines
Grammar fix
........
r45967 | andrew.kuchling | 2006-05-11 18:32:24 +0200 (Thu, 11 May 2006) | 1 line
typo fix
........
r45968 | tim.peters | 2006-05-11 18:37:42 +0200 (Thu, 11 May 2006) | 5 lines
BaseThreadedTestCase.setup(): stop special-casing WindowsError.
Rev 45964 fiddled with WindowsError, and broke test_bsddb3 on all
the Windows buildbot slaves as a result. This should repair it.
........
r45969 | georg.brandl | 2006-05-11 21:57:09 +0200 (Thu, 11 May 2006) | 2 lines
Typo fix.
........
r45970 | tim.peters | 2006-05-12 03:57:59 +0200 (Fri, 12 May 2006) | 5 lines
SF patch #1473132: Improve docs for tp_clear and tp_traverse,
by Collin Winter.
Bugfix candidate (but I'm not going to bother).
........
r45974 | martin.v.loewis | 2006-05-12 14:27:28 +0200 (Fri, 12 May 2006) | 4 lines
Dynamically allocate path name buffer for Unicode
path name in listdir. Fixes #1431582.
Stop overallocating MAX_PATH characters for ANSI
path names. Stop assigning to errno.
........
r45975 | martin.v.loewis | 2006-05-12 15:57:36 +0200 (Fri, 12 May 2006) | 1 line
Move icon files into DLLs dir. Fixes #1477968.
........
r45976 | george.yoshida | 2006-05-12 18:40:11 +0200 (Fri, 12 May 2006) | 2 lines
At first there were 6 steps, but one was removed after that.
........
r45977 | martin.v.loewis | 2006-05-12 19:22:04 +0200 (Fri, 12 May 2006) | 1 line
Fix alignment error on Itanium.
........
r45978 | george.yoshida | 2006-05-12 19:25:26 +0200 (Fri, 12 May 2006) | 3 lines
Duplicated description about the illegal continue usage can be found in nearly the same place.
They are same, so keep the original one and remove the later-added one.
........
r45980 | thomas.heller | 2006-05-12 20:16:03 +0200 (Fri, 12 May 2006) | 2 lines
Add missing svn properties.
........
r45981 | thomas.heller | 2006-05-12 20:47:35 +0200 (Fri, 12 May 2006) | 1 line
set svn properties
........
r45982 | thomas.heller | 2006-05-12 21:31:46 +0200 (Fri, 12 May 2006) | 1 line
add svn:eol-style native svn:keywords Id
........
r45987 | gerhard.haering | 2006-05-13 01:49:49 +0200 (Sat, 13 May 2006) | 3 lines
Integrated the rest of the pysqlite reference manual into the Python
documentation. Ready to be reviewed and improved upon.
........
r45988 | george.yoshida | 2006-05-13 08:53:31 +0200 (Sat, 13 May 2006) | 2 lines
Add \exception markup
........
r45990 | martin.v.loewis | 2006-05-13 15:34:04 +0200 (Sat, 13 May 2006) | 2 lines
Revert 43315: Printing of %zd must be signed.
........
r45992 | tim.peters | 2006-05-14 01:28:20 +0200 (Sun, 14 May 2006) | 11 lines
Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV
about "%u", "%lu" and "%zu" formats.
Since PyString_FromFormat and PyErr_Format have exactly the same rules
(both inherited from PyString_FromFormatV), it would be good if someone
with more LaTeX Fu changed one of them to just point to the other.
Their docs were way out of synch before this patch, and I just did a
mass copy+paste to repair that.
Not a backport candidate (this is a new feature).
........
r45993 | tim.peters | 2006-05-14 01:31:05 +0200 (Sun, 14 May 2006) | 2 lines
Typo repair.
........
r45994 | tim.peters | 2006-05-14 01:33:19 +0200 (Sun, 14 May 2006) | 2 lines
Remove lie in new comment.
........
r45995 | ronald.oussoren | 2006-05-14 21:56:34 +0200 (Sun, 14 May 2006) | 11 lines
Rework the build system for osx applications:
* Don't use xcodebuild for building PythonLauncher, but use a normal unix
makefile. This makes it a lot easier to use the same build flags as for the
rest of python (e.g. make a universal version of python launcher)
* Convert the mac makefile-s to makefile.in-s and use configure to set makefile
variables instead of forwarding them as command-line arguments
* Add a C version of pythonw, that we you can use '#!/usr/local/bin/pythonw'
* Build IDLE.app using bundlebuilder instead of BuildApplet, that will allow
easier modification of the bundle contents later on.
........
r45996 | ronald.oussoren | 2006-05-14 22:35:41 +0200 (Sun, 14 May 2006) | 6 lines
A first cut at replacing the icons on MacOS X. This replaces all icons by icons
based on the new python.org logo. These are also the first icons that are
"proper" OSX icons.
These icons were created by Jacob Rus.
........
r45997 | ronald.oussoren | 2006-05-14 23:07:41 +0200 (Sun, 14 May 2006) | 3 lines
I missed one small detail in my rewrite of the osx build files: the path
to the Python.app template.
........
r45998 | martin.v.loewis | 2006-05-15 07:51:36 +0200 (Mon, 15 May 2006) | 2 lines
Fix memory leak.
........
r45999 | neal.norwitz | 2006-05-15 08:48:14 +0200 (Mon, 15 May 2006) | 1 line
Move items implemented after a2 into the new a3 section
........
r46000 | neal.norwitz | 2006-05-15 09:04:36 +0200 (Mon, 15 May 2006) | 5 lines
- Bug #1487966: Fix SystemError with conditional expression in assignment
Most of the test_syntax changes are just updating the numbers.
........
r46001 | neal.norwitz | 2006-05-15 09:17:23 +0200 (Mon, 15 May 2006) | 1 line
Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport
........
r46003 | martin.v.loewis | 2006-05-15 11:22:27 +0200 (Mon, 15 May 2006) | 3 lines
Remove bogus DECREF of self.
Change __str__() functions to METH_O.
Change WindowsError__str__ to use PyTuple_Pack.
........
r46005 | georg.brandl | 2006-05-15 21:30:35 +0200 (Mon, 15 May 2006) | 3 lines
[ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634)
........
r46007 | tim.peters | 2006-05-15 22:44:10 +0200 (Mon, 15 May 2006) | 9 lines
ReadDetectFileobjTest: repair Windows disasters by opening
the file object in binary mode.
The Windows buildbot slaves shouldn't swap themselves to death
anymore. However, test_tarfile may still fail because of a
temp directory left behind from a previous failing run.
Windows buildbot owners may need to remove that directory
by hand.
........
r46009 | tim.peters | 2006-05-15 23:32:25 +0200 (Mon, 15 May 2006) | 3 lines
test_directory(): Remove the leftover temp directory that's making
the Windows buildbots fail test_tarfile.
........
r46010 | martin.v.loewis | 2006-05-16 09:05:37 +0200 (Tue, 16 May 2006) | 4 lines
- Test for sys/statvfs.h before including it, as statvfs is present
on some OSX installation, but its header file is not.
Will backport to 2.4
........
r46012 | georg.brandl | 2006-05-16 09:38:27 +0200 (Tue, 16 May 2006) | 3 lines
Patch #1435422: zlib's compress and decompress objects now have a
copy() method.
........
r46015 | andrew.kuchling | 2006-05-16 18:11:54 +0200 (Tue, 16 May 2006) | 1 line
Add item
........
r46016 | andrew.kuchling | 2006-05-16 18:27:31 +0200 (Tue, 16 May 2006) | 3 lines
PEP 243 has been withdrawn, so don't refer to it any more.
The PyPI upload material has been moved into the section on PEP314.
........
r46017 | george.yoshida | 2006-05-16 19:42:16 +0200 (Tue, 16 May 2006) | 2 lines
Update for 'ImportWarning'
........
r46018 | george.yoshida | 2006-05-16 20:07:00 +0200 (Tue, 16 May 2006) | 4 lines
Mention that Exception is now a subclass of BaseException.
Remove a sentence that says that BaseException inherits from BaseException.
(I guess this is just a copy & paste mistake.)
........
r46019 | george.yoshida | 2006-05-16 20:26:10 +0200 (Tue, 16 May 2006) | 2 lines
Document ImportWarning
........
r46020 | tim.peters | 2006-05-17 01:22:20 +0200 (Wed, 17 May 2006) | 2 lines
Whitespace normalization.
........
r46021 | tim.peters | 2006-05-17 01:24:08 +0200 (Wed, 17 May 2006) | 2 lines
Text files missing the SVN eol-style property.
........
r46022 | tim.peters | 2006-05-17 03:30:11 +0200 (Wed, 17 May 2006) | 2 lines
PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path.
........
r46023 | georg.brandl | 2006-05-17 16:06:07 +0200 (Wed, 17 May 2006) | 3 lines
Remove misleading comment about type-class unification.
........
r46024 | georg.brandl | 2006-05-17 16:11:36 +0200 (Wed, 17 May 2006) | 3 lines
Apply patch #1489784 from Michael Foord.
........
r46025 | georg.brandl | 2006-05-17 16:18:20 +0200 (Wed, 17 May 2006) | 3 lines
Fix typo in os.utime docstring (patch #1490189)
........
r46026 | georg.brandl | 2006-05-17 16:26:50 +0200 (Wed, 17 May 2006) | 3 lines
Patch #1490224: set time.altzone correctly on Cygwin.
........
r46027 | georg.brandl | 2006-05-17 16:45:06 +0200 (Wed, 17 May 2006) | 4 lines
Add global debug flag to cookielib to avoid heavy dependency on the logging module.
Resolves #1484758.
........
r46028 | georg.brandl | 2006-05-17 16:56:04 +0200 (Wed, 17 May 2006) | 3 lines
Patch #1486962: Several bugs in the turtle Tk demo module were fixed
and several features added, such as speed and geometry control.
........
r46029 | georg.brandl | 2006-05-17 17:17:00 +0200 (Wed, 17 May 2006) | 4 lines
Delay-import some large modules to speed up urllib2 import.
(fixes #1484793).
........
r46030 | georg.brandl | 2006-05-17 17:51:16 +0200 (Wed, 17 May 2006) | 3 lines
Patch #1180296: improve locale string formatting functions
........
r46032 | tim.peters | 2006-05-18 04:06:40 +0200 (Thu, 18 May 2006) | 2 lines
Whitespace normalization.
........
r46033 | georg.brandl | 2006-05-18 08:11:19 +0200 (Thu, 18 May 2006) | 3 lines
Amendments to patch #1484695.
........
r46034 | georg.brandl | 2006-05-18 08:18:06 +0200 (Thu, 18 May 2006) | 3 lines
Remove unused import.
........
r46035 | georg.brandl | 2006-05-18 08:33:27 +0200 (Thu, 18 May 2006) | 3 lines
Fix test_locale for platforms without a default thousands separator.
........
r46036 | neal.norwitz | 2006-05-18 08:51:46 +0200 (Thu, 18 May 2006) | 1 line
Little cleanup
........
r46037 | georg.brandl | 2006-05-18 09:01:27 +0200 (Thu, 18 May 2006) | 4 lines
Bug #1462152: file() now checks more thoroughly for invalid mode
strings and removes a possible "U" before passing the mode to the
C library function.
........
r46038 | georg.brandl | 2006-05-18 09:20:05 +0200 (Thu, 18 May 2006) | 3 lines
Bug #1490688: properly document %e, %f, %g format subtleties.
........
r46039 | vinay.sajip | 2006-05-18 09:28:58 +0200 (Thu, 18 May 2006) | 1 line
Changed status from "beta" to "production"; since logging has been part of the stdlib since 2.3, it should be safe to make this assertion ;-)
........
r46040 | ronald.oussoren | 2006-05-18 11:04:15 +0200 (Thu, 18 May 2006) | 2 lines
Fix some minor issues with the generated application bundles on MacOSX
........
r46041 | andrew.kuchling | 2006-05-19 02:03:55 +0200 (Fri, 19 May 2006) | 1 line
Typo fix; add clarifying word
........
r46044 | neal.norwitz | 2006-05-19 08:31:23 +0200 (Fri, 19 May 2006) | 3 lines
Fix #132 from Coverity, retval could have been derefed
if a continue inside a try failed.
........
r46045 | neal.norwitz | 2006-05-19 08:43:50 +0200 (Fri, 19 May 2006) | 2 lines
Fix #1474677, non-keyword argument following keyword.
........
r46046 | neal.norwitz | 2006-05-19 09:00:58 +0200 (Fri, 19 May 2006) | 4 lines
Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.
I suppose this could be backported if anyone cares.
........
r46047 | neal.norwitz | 2006-05-19 09:05:01 +0200 (Fri, 19 May 2006) | 7 lines
Oops, I forgot to include this file in the last commit (46046):
Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.
I suppose this could be backported if anyone cares.
........
r46050 | ronald.oussoren | 2006-05-19 20:17:31 +0200 (Fri, 19 May 2006) | 6 lines
* Change working directory to the users home
directory, that makes the file open/save
dialogs more useable.
* Don't use argv emulator, its not needed
for idle.
........
r46052 | tim.peters | 2006-05-19 21:16:34 +0200 (Fri, 19 May 2006) | 2 lines
Whitespace normalization.
........
r46054 | ronald.oussoren | 2006-05-20 08:17:01 +0200 (Sat, 20 May 2006) | 9 lines
Fix bug #1000914 (again).
This patches a file that is generated by bgen, however the code is now the
same as a current copy of bgen would generate. Without this patch most types
in the Carbon.CF module are unusable.
I haven't managed to coax bgen into generating a complete copy of _CFmodule.c
yet :-(, hence the manual patching.
........
r46055 | george.yoshida | 2006-05-20 17:36:19 +0200 (Sat, 20 May 2006) | 3 lines
- markup fix
- add clarifying words
........
r46057 | george.yoshida | 2006-05-20 18:29:14 +0200 (Sat, 20 May 2006) | 3 lines
- Add 'as' and 'with' as new keywords in 2.5.
- Regenerate keyword lists with reswords.py.
........
r46058 | george.yoshida | 2006-05-20 20:07:26 +0200 (Sat, 20 May 2006) | 2 lines
Apply patch #1492147 from Mike Foord.
........
r46059 | andrew.kuchling | 2006-05-20 21:25:16 +0200 (Sat, 20 May 2006) | 1 line
Minor edits
........
r46061 | george.yoshida | 2006-05-21 06:22:59 +0200 (Sun, 21 May 2006) | 2 lines
Fix the TeX compile error.
........
r46062 | george.yoshida | 2006-05-21 06:40:32 +0200 (Sun, 21 May 2006) | 2 lines
Apply patch #1492255 from Mike Foord.
........
r46063 | martin.v.loewis | 2006-05-22 10:48:14 +0200 (Mon, 22 May 2006) | 1 line
Patch 1490384: New Icons for the PC build.
........
r46064 | martin.v.loewis | 2006-05-22 11:15:18 +0200 (Mon, 22 May 2006) | 1 line
Patch #1492356: Port to Windows CE (patch set 1).
........
r46065 | tim.peters | 2006-05-22 13:29:41 +0200 (Mon, 22 May 2006) | 4 lines
Define SIZEOF_{DOUBLE,FLOAT} on Windows. Else
Michael Hudson's nice gimmicks for IEEE special
values (infinities, NaNs) don't work.
........
r46070 | bob.ippolito | 2006-05-22 16:31:24 +0200 (Mon, 22 May 2006) | 2 lines
GzipFile.readline performance improvement (~30-40%), patch #1281707
........
r46071 | bob.ippolito | 2006-05-22 17:22:46 +0200 (Mon, 22 May 2006) | 1 line
Revert gzip readline performance patch #1281707 until a more generic performance improvement can be found
........
r46073 | fredrik.lundh | 2006-05-22 17:35:12 +0200 (Mon, 22 May 2006) | 4 lines
docstring tweaks: count counts non-overlapping substrings, not
total number of occurences
........
r46075 | bob.ippolito | 2006-05-22 17:59:12 +0200 (Mon, 22 May 2006) | 1 line
Apply revised patch for GzipFile.readline performance #1281707
........
r46076 | fredrik.lundh | 2006-05-22 18:29:30 +0200 (Mon, 22 May 2006) | 3 lines
needforspeed: speed up unicode repeat, unicode string copy
........
r46079 | fredrik.lundh | 2006-05-22 19:12:58 +0200 (Mon, 22 May 2006) | 4 lines
needforspeed: use memcpy for "long" strings; use a better algorithm
for long repeats.
........
r46084 | tim.peters | 2006-05-22 21:17:04 +0200 (Mon, 22 May 2006) | 7 lines
PyUnicode_Join(): Recent code changes introduced new
compiler warnings on Windows (signed vs unsigned mismatch
in comparisons). Cleaned that up by switching more locals
to Py_ssize_t. Simplified overflow checking (it can _be_
simpler because while these things are declared as
Py_ssize_t, then should in fact never be negative).
........
r46085 | tim.peters | 2006-05-23 07:47:16 +0200 (Tue, 23 May 2006) | 3 lines
unicode_repeat(): Change type of local to Py_ssize_t,
since that's what it should be.
........
r46094 | fredrik.lundh | 2006-05-23 12:10:57 +0200 (Tue, 23 May 2006) | 3 lines
needforspeed: check first *and* last character before doing a full memcmp
........
r46095 | fredrik.lundh | 2006-05-23 12:12:21 +0200 (Tue, 23 May 2006) | 4 lines
needforspeed: fixed unicode "in" operator to use same implementation
approach as find/index
........
r46096 | richard.jones | 2006-05-23 12:37:38 +0200 (Tue, 23 May 2006) | 7 lines
Merge from rjones-funccall branch.
Applied patch zombie-frames-2.diff from sf patch 876206 with updates for
Python 2.5 and also modified to retain the free_list to avoid the 67%
slow-down in pybench recursion test. 5% speed up in function call pybench.
........
r46098 | ronald.oussoren | 2006-05-23 13:04:24 +0200 (Tue, 23 May 2006) | 2 lines
Avoid creating a mess when installing a framework for the second time.
........
r46101 | georg.brandl | 2006-05-23 13:17:21 +0200 (Tue, 23 May 2006) | 3 lines
PyErr_NewException now accepts a tuple of base classes as its
"base" parameter.
........
r46103 | ronald.oussoren | 2006-05-23 13:47:16 +0200 (Tue, 23 May 2006) | 3 lines
Disable linking extensions with -lpython2.5 for darwin. This should fix bug
#1487105.
........
r46104 | ronald.oussoren | 2006-05-23 14:01:11 +0200 (Tue, 23 May 2006) | 6 lines
Patch #1488098.
This patchs makes it possible to create a universal build on OSX 10.4 and use
the result to build extensions on 10.3. It also makes it possible to override
the '-arch' and '-isysroot' compiler arguments for specific extensions.
........
r46108 | andrew.kuchling | 2006-05-23 14:44:36 +0200 (Tue, 23 May 2006) | 1 line
Add some items; mention the sprint
........
r46109 | andrew.kuchling | 2006-05-23 14:47:01 +0200 (Tue, 23 May 2006) | 1 line
Mention string improvements
........
r46110 | andrew.kuchling | 2006-05-23 14:49:35 +0200 (Tue, 23 May 2006) | 4 lines
Use 'speed' instead of 'performance', because I agree with the argument
at http://zestyping.livejournal.com/193260.html that 'erformance' really means
something more general.
........
r46113 | ronald.oussoren | 2006-05-23 17:09:57 +0200 (Tue, 23 May 2006) | 2 lines
An improved script for building the binary distribution on MacOSX.
........
r46128 | richard.jones | 2006-05-23 20:28:17 +0200 (Tue, 23 May 2006) | 3 lines
Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.
........
r46129 | richard.jones | 2006-05-23 20:32:11 +0200 (Tue, 23 May 2006) | 1 line
fix broken merge
........
r46130 | bob.ippolito | 2006-05-23 20:41:17 +0200 (Tue, 23 May 2006) | 1 line
Update Misc/NEWS for gzip patch #1281707
........
r46131 | bob.ippolito | 2006-05-23 20:43:47 +0200 (Tue, 23 May 2006) | 1 line
Update Misc/NEWS for gzip patch #1281707
........
r46132 | fredrik.lundh | 2006-05-23 20:44:25 +0200 (Tue, 23 May 2006) | 7 lines
needforspeed: use append+reverse for rsplit, use "bloom filters" to
speed up splitlines and strip with charsets; etc. rsplit is now as
fast as split in all our tests (reverse takes no time at all), and
splitlines() is nearly as fast as a plain split("\n") in our tests.
and we're not done yet... ;-)
........
r46133 | tim.peters | 2006-05-23 20:45:30 +0200 (Tue, 23 May 2006) | 38 lines
Bug #1334662 / patch #1335972: int(string, base) wrong answers.
In rare cases of strings specifying true values near sys.maxint,
and oddball bases (not decimal or a power of 2), int(string, base)
could deliver insane answers. This repairs all such problems, and
also speeds string->int significantly. On my box, here are %
speedups for decimal strings of various lengths:
length speedup
------ -------
1 12.4%
2 15.7%
3 20.6%
4 28.1%
5 33.2%
6 37.5%
7 41.9%
8 46.3%
9 51.2%
10 19.5%
11 19.9%
12 23.9%
13 23.7%
14 23.3%
15 24.9%
16 25.3%
17 28.3%
18 27.9%
19 35.7%
Note that the difference between 9 and 10 is the difference between
short and long Python ints on a 32-bit box. The patch doesn't
actually do anything to speed conversion to long: the speedup is
due to detecting "unsigned long" overflow more quickly.
This is a bugfix candidate, but it's a non-trivial patch and it
would be painful to separate the "bug fix" from the "speed up" parts.
........
r46134 | bob.ippolito | 2006-05-23 20:46:41 +0200 (Tue, 23 May 2006) | 1 line
Patch #1493701: performance enhancements for struct module.
........
r46136 | andrew.kuchling | 2006-05-23 21:00:45 +0200 (Tue, 23 May 2006) | 1 line
Remove duplicate item
........
r46141 | bob.ippolito | 2006-05-23 21:09:51 +0200 (Tue, 23 May 2006) | 1 line
revert #1493701
........
r46142 | bob.ippolito | 2006-05-23 21:11:34 +0200 (Tue, 23 May 2006) | 1 line
patch #1493701: performance enhancements for struct module
........
r46144 | bob.ippolito | 2006-05-23 21:12:41 +0200 (Tue, 23 May 2006) | 1 line
patch #1493701: performance enhancements for struct module
........
r46148 | bob.ippolito | 2006-05-23 21:25:52 +0200 (Tue, 23 May 2006) | 1 line
fix linking issue, warnings, in struct
........
r46149 | andrew.kuchling | 2006-05-23 21:29:38 +0200 (Tue, 23 May 2006) | 1 line
Add two items
........
r46150 | bob.ippolito | 2006-05-23 21:31:23 +0200 (Tue, 23 May 2006) | 1 line
forward declaration for PyStructType
........
r46151 | bob.ippolito | 2006-05-23 21:32:25 +0200 (Tue, 23 May 2006) | 1 line
fix typo in _struct
........
r46152 | andrew.kuchling | 2006-05-23 21:32:35 +0200 (Tue, 23 May 2006) | 1 line
Add item
........
r46153 | tim.peters | 2006-05-23 21:34:37 +0200 (Tue, 23 May 2006) | 3 lines
Get the Windows build working again (recover from
`struct` module changes).
........
r46155 | fredrik.lundh | 2006-05-23 21:47:35 +0200 (Tue, 23 May 2006) | 3 lines
return 0 on misses, not -1.
........
r46156 | tim.peters | 2006-05-23 23:51:35 +0200 (Tue, 23 May 2006) | 4 lines
test_struct grew weird behavior under regrtest.py -R,
due to a module-level cache. Clearing the cache should
make it stop showing up in refleak reports.
........
r46157 | tim.peters | 2006-05-23 23:54:23 +0200 (Tue, 23 May 2006) | 2 lines
Whitespace normalization.
........
r46158 | tim.peters | 2006-05-23 23:55:53 +0200 (Tue, 23 May 2006) | 2 lines
Add missing svn:eol-style property to text files.
........
r46161 | fredrik.lundh | 2006-05-24 12:20:36 +0200 (Wed, 24 May 2006) | 3 lines
use Py_ssize_t for string indexes (thanks, neal!)
........
r46173 | fredrik.lundh | 2006-05-24 16:28:11 +0200 (Wed, 24 May 2006) | 14 lines
needforspeed: use "fastsearch" for count and findstring helpers. this
results in a 2.5x speedup on the stringbench count tests, and a 20x (!)
speedup on the stringbench search/find/contains test, compared to 2.5a2.
for more on the algorithm, see:
http://effbot.org/zone/stringlib.htm
if you get weird results, you can disable the new algoritm by undefining
USE_FAST in Objects/unicodeobject.c.
enjoy /F
........
r46182 | fredrik.lundh | 2006-05-24 17:11:01 +0200 (Wed, 24 May 2006) | 3 lines
needforspeedindeed: use fastsearch also for __contains__
........
r46184 | bob.ippolito | 2006-05-24 17:32:06 +0200 (Wed, 24 May 2006) | 1 line
refactor unpack, add unpack_from
........
r46189 | fredrik.lundh | 2006-05-24 18:35:18 +0200 (Wed, 24 May 2006) | 4 lines
needforspeed: refactored the replace code slightly; special-case
constant-length changes; use fastsearch to locate the first match.
........
r46198 | andrew.dalke | 2006-05-24 20:55:37 +0200 (Wed, 24 May 2006) | 10 lines
Added a slew of test for string replace, based various corner cases from
the Need For Speed sprint coding. Includes commented out overflow tests
which will be uncommented once the code is fixed.
This test will break the 8-bit string tests because
"".replace("", "A") == "" when it should == "A"
We have a fix for it, which should be added tomorrow.
........
r46200 | tim.peters | 2006-05-24 22:27:18 +0200 (Wed, 24 May 2006) | 2 lines
We can't leave the checked-in tests broken.
........
r46201 | tim.peters | 2006-05-24 22:29:44 +0200 (Wed, 24 May 2006) | 2 lines
Whitespace normalization.
........
r46202 | tim.peters | 2006-05-24 23:00:45 +0200 (Wed, 24 May 2006) | 4 lines
Disable the damn empty-string replace test -- it can't
be make to pass now for unicode if it passes for str, or
vice versa.
........
r46203 | tim.peters | 2006-05-24 23:10:40 +0200 (Wed, 24 May 2006) | 58 lines
Heavily fiddled variant of patch #1442927: PyLong_FromString optimization.
``long(str, base)`` is now up to 6x faster for non-power-of-2 bases. The
largest speedup is for inputs with about 1000 decimal digits. Conversion
from non-power-of-2 bases remains quadratic-time in the number of input
digits (it was and remains linear-time for bases 2, 4, 8, 16 and 32).
Speedups at various lengths for decimal inputs, comparing 2.4.3 with
current trunk. Note that it's actually a bit slower for 1-digit strings:
len speedup
---- -------
1 -4.5%
2 4.6%
3 8.3%
4 12.7%
5 16.9%
6 28.6%
7 35.5%
8 44.3%
9 46.6%
10 55.3%
11 65.7%
12 77.7%
13 73.4%
14 75.3%
15 85.2%
16 103.0%
17 95.1%
18 112.8%
19 117.9%
20 128.3%
30 174.5%
40 209.3%
50 236.3%
60 254.3%
70 262.9%
80 295.8%
90 297.3%
100 324.5%
200 374.6%
300 403.1%
400 391.1%
500 388.7%
600 440.6%
700 468.7%
800 498.0%
900 507.2%
1000 501.2%
2000 450.2%
3000 463.2%
4000 452.5%
5000 440.6%
6000 439.6%
7000 424.8%
8000 418.1%
9000 417.7%
........
r46204 | andrew.kuchling | 2006-05-25 02:23:03 +0200 (Thu, 25 May 2006) | 1 line
Minor edits; add an item
........
r46205 | fred.drake | 2006-05-25 04:42:25 +0200 (Thu, 25 May 2006) | 3 lines
fix broken links in PDF
(SF patch #1281291, contributed by Rory Yorke)
........
r46208 | walter.doerwald | 2006-05-25 10:53:28 +0200 (Thu, 25 May 2006) | 2 lines
Replace tab inside comment with space.
........
r46209 | thomas.wouters | 2006-05-25 13:25:51 +0200 (Thu, 25 May 2006) | 4 lines
Fix #1488915, Multiple dots in relative import statement raise SyntaxError.
........
r46210 | thomas.wouters | 2006-05-25 13:26:25 +0200 (Thu, 25 May 2006) | 5 lines
Update graminit.c for the fix for #1488915, Multiple dots in relative import
statement raise SyntaxError, and add testcase.
........
r46211 | andrew.kuchling | 2006-05-25 14:27:59 +0200 (Thu, 25 May 2006) | 1 line
Add entry; and fix a typo
........
r46214 | fredrik.lundh | 2006-05-25 17:22:03 +0200 (Thu, 25 May 2006) | 7 lines
needforspeed: speed up upper and lower for 8-bit string objects.
(the unicode versions of these are still 2x faster on windows,
though...)
based on work by Andrew Dalke, with tweaks by yours truly.
........
r46216 | fredrik.lundh | 2006-05-25 17:49:45 +0200 (Thu, 25 May 2006) | 5 lines
needforspeed: make new upper/lower work properly for single-character
strings too... (thanks to georg brandl for spotting the exact problem
faster than anyone else)
........
r46217 | kristjan.jonsson | 2006-05-25 17:53:30 +0200 (Thu, 25 May 2006) | 1 line
Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms
........
r46219 | fredrik.lundh | 2006-05-25 18:10:12 +0200 (Thu, 25 May 2006) | 4 lines
needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C
versions if they're not defined.
........
r46220 | andrew.kuchling | 2006-05-25 18:23:15 +0200 (Thu, 25 May 2006) | 1 line
Fix comment typos
........
r46221 | andrew.dalke | 2006-05-25 18:30:52 +0200 (Thu, 25 May 2006) | 2 lines
Added tests for implementation error we came up with in the need for speed sprint.
........
r46222 | andrew.kuchling | 2006-05-25 18:34:54 +0200 (Thu, 25 May 2006) | 1 line
Fix another typo
........
r46223 | kristjan.jonsson | 2006-05-25 18:39:27 +0200 (Thu, 25 May 2006) | 1 line
Fix incorrect documentation for the Py_IS_FINITE(X) macro.
........
r46224 | fredrik.lundh | 2006-05-25 18:46:54 +0200 (Thu, 25 May 2006) | 3 lines
needforspeed: check for overflow in replace (from Andrew Dalke)
........
r46226 | fredrik.lundh | 2006-05-25 19:08:14 +0200 (Thu, 25 May 2006) | 5 lines
needforspeed: new replace implementation by Andrew Dalke. replace is
now about 3x faster on my machine, for the replace tests from string-
bench.
........
r46227 | tim.peters | 2006-05-25 19:34:03 +0200 (Thu, 25 May 2006) | 5 lines
A new table to help string->integer conversion was added yesterday to
both mystrtoul.c and longobject.c. Share the table instead. Also
cut its size by 64 entries (they had been used for an inscrutable
trick originally, but the code no longer tries to use that trick).
........
r46229 | andrew.dalke | 2006-05-25 19:53:00 +0200 (Thu, 25 May 2006) | 11 lines
Fixed problem identified by Georg. The special-case in-place code for replace
made a copy of the string using PyString_FromStringAndSize(s, n) and modify
the copied string in-place. However, 1 (and 0) character strings are shared
from a cache. This cause "A".replace("A", "a") to change the cached version
of "A" -- used by everyone.
Now may the copy with NULL as the string and do the memcpy manually. I've
added regression tests to check if this happens in the future. Perhaps
there should be a PyString_Copy for this case?
........
r46230 | fredrik.lundh | 2006-05-25 19:55:31 +0200 (Thu, 25 May 2006) | 4 lines
needforspeed: use "fastsearch" for count. this results in a 3x speedup
for the related stringbench tests.
........
r46231 | andrew.dalke | 2006-05-25 20:03:25 +0200 (Thu, 25 May 2006) | 4 lines
Code had returned an ssize_t, upcast to long, then converted with PyInt_FromLong.
Now using PyInt_FromSsize_t.
........
r46233 | andrew.kuchling | 2006-05-25 20:11:16 +0200 (Thu, 25 May 2006) | 1 line
Comment typo
........
r46234 | andrew.dalke | 2006-05-25 20:18:39 +0200 (Thu, 25 May 2006) | 4 lines
Added overflow test for adding two (very) large strings where the
new string is over max Py_ssize_t. I have no way to test it on my
box or any box I have access to. At least it doesn't break anything.
........
r46235 | bob.ippolito | 2006-05-25 20:20:23 +0200 (Thu, 25 May 2006) | 1 line
Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm
........
r46238 | georg.brandl | 2006-05-25 20:44:09 +0200 (Thu, 25 May 2006) | 3 lines
Guard the _active.remove() call to avoid errors when there is no _active list.
........
r46239 | fredrik.lundh | 2006-05-25 20:44:29 +0200 (Thu, 25 May 2006) | 4 lines
needforspeed: use fastsearch also for find/index and contains. the
related tests are now about 10x faster.
........
r46240 | bob.ippolito | 2006-05-25 20:44:50 +0200 (Thu, 25 May 2006) | 1 line
Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifdef'ed out code that will return int instead of long when in bounds (not active since it's an API and doc change)
........
r46241 | jack.diederich | 2006-05-25 20:47:15 +0200 (Thu, 25 May 2006) | 1 line
* eliminate warning by reverting tmp_s type to 'const char*'
........
r46242 | bob.ippolito | 2006-05-25 21:03:19 +0200 (Thu, 25 May 2006) | 1 line
Fix Cygwin compiler issue
........
r46243 | bob.ippolito | 2006-05-25 21:15:27 +0200 (Thu, 25 May 2006) | 1 line
fix a struct regression where long would be returned for short unsigned integers
........
r46244 | georg.brandl | 2006-05-25 21:15:31 +0200 (Thu, 25 May 2006) | 4 lines
Replace PyObject_CallFunction calls with only object args
with PyObject_CallFunctionObjArgs, which is 30% faster.
........
r46245 | fredrik.lundh | 2006-05-25 21:19:05 +0200 (Thu, 25 May 2006) | 3 lines
needforspeed: use insert+reverse instead of append
........
r46246 | bob.ippolito | 2006-05-25 21:33:38 +0200 (Thu, 25 May 2006) | 1 line
Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incorrect INT_MIN and INT_MAX
........
r46248 | bob.ippolito | 2006-05-25 21:56:56 +0200 (Thu, 25 May 2006) | 1 line
Use faster struct pack/unpack functions for the endian table that matches the host's
........
r46249 | bob.ippolito | 2006-05-25 21:59:56 +0200 (Thu, 25 May 2006) | 1 line
enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --enable-universalsdk)
........
r46252 | georg.brandl | 2006-05-25 22:28:10 +0200 (Thu, 25 May 2006) | 4 lines
Someone seems to just have copy-pasted the docs of
tp_compare to tp_richcompare ;)
........
r46253 | brett.cannon | 2006-05-25 22:44:08 +0200 (Thu, 25 May 2006) | 2 lines
Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() .
........
r46254 | bob.ippolito | 2006-05-25 22:52:38 +0200 (Thu, 25 May 2006) | 1 line
squelch gcc4 darwin/x86 compiler warnings
........
r46255 | bob.ippolito | 2006-05-25 23:09:45 +0200 (Thu, 25 May 2006) | 1 line
fix test_float regression and 64-bit size mismatch issue
........
r46256 | georg.brandl | 2006-05-25 23:11:56 +0200 (Thu, 25 May 2006) | 3 lines
Add a x-ref to newer calling APIs.
........
r46257 | ronald.oussoren | 2006-05-25 23:30:54 +0200 (Thu, 25 May 2006) | 2 lines
Fix minor typo in prep_cif.c
........
r46259 | brett.cannon | 2006-05-25 23:33:11 +0200 (Thu, 25 May 2006) | 4 lines
Change test_values so that it compares the lowercasing of group names since getgrall() can return all lowercase names while getgrgid() returns proper casing.
Discovered on Ubuntu 5.04 (custom).
........
r46261 | tim.peters | 2006-05-25 23:50:17 +0200 (Thu, 25 May 2006) | 7 lines
Some Win64 pre-release in 2000 didn't support
QueryPerformanceCounter(), but we believe Win64 does
support it now. So use in time.clock().
It would be peachy if someone with a Win64 box tried
this ;-)
........
r46262 | tim.peters | 2006-05-25 23:52:19 +0200 (Thu, 25 May 2006) | 2 lines
Whitespace normalization.
........
r46263 | bob.ippolito | 2006-05-25 23:58:05 +0200 (Thu, 25 May 2006) | 1 line
Add missing files from x86 darwin ctypes patch
........
r46264 | brett.cannon | 2006-05-26 00:00:14 +0200 (Fri, 26 May 2006) | 2 lines
Move over to use of METH_O and METH_NOARGS.
........
r46265 | tim.peters | 2006-05-26 00:25:25 +0200 (Fri, 26 May 2006) | 3 lines
Repair idiot typo, and complete the job of trying to
use the Windows time.clock() implementation on Win64.
........
r46266 | tim.peters | 2006-05-26 00:28:46 +0200 (Fri, 26 May 2006) | 9 lines
Patch #1494387: SVN longobject.c compiler warnings
The SIGCHECK macro defined here has always been bizarre, but
it apparently causes compiler warnings on "Sun Studio 11".
I believe the warnings are bogus, but it doesn't hurt to make
the macro definition saner.
Bugfix candidate (but I'm not going to bother).
........
r46268 | fredrik.lundh | 2006-05-26 01:27:53 +0200 (Fri, 26 May 2006) | 8 lines
needforspeed: partition for 8-bit strings. for some simple tests,
this is on par with a corresponding find, and nearly twice as fast
as split(sep, 1)
full tests, a unicode version, and documentation will follow to-
morrow.
........
r46271 | andrew.kuchling | 2006-05-26 03:46:22 +0200 (Fri, 26 May 2006) | 1 line
Add Soc student
........
r46272 | ronald.oussoren | 2006-05-26 10:41:25 +0200 (Fri, 26 May 2006) | 3 lines
Without this patch OSX users couldn't add new help sources because the code
tried to update one item in a tuple.
........
r46273 | fredrik.lundh | 2006-05-26 10:54:28 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: partition implementation, part two.
feel free to improve the documentation and the docstrings.
........
r46274 | georg.brandl | 2006-05-26 11:05:54 +0200 (Fri, 26 May 2006) | 3 lines
Clarify docs for str.partition().
........
r46278 | fredrik.lundh | 2006-05-26 11:46:59 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: use METH_O for argument handling, which made partition some
~15% faster for the current tests (which is noticable faster than a corre-
sponding find call). thanks to neal-who-never-sleeps for the tip.
........
r46280 | fredrik.lundh | 2006-05-26 12:27:17 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: use Py_ssize_t for the fastsearch counter and skip
length (thanks, neal!). and yes, I've verified that this doesn't
slow things down ;-)
........
r46285 | andrew.dalke | 2006-05-26 13:11:38 +0200 (Fri, 26 May 2006) | 2 lines
Added a few more test cases for whitespace split. These strings have leading whitespace.
........
r46286 | jack.diederich | 2006-05-26 13:15:17 +0200 (Fri, 26 May 2006) | 1 line
use Py_ssize_t in places that may need it
........
r46287 | andrew.dalke | 2006-05-26 13:15:22 +0200 (Fri, 26 May 2006) | 2 lines
Added split whitespace checks for characters other than space.
........
r46288 | ronald.oussoren | 2006-05-26 13:17:55 +0200 (Fri, 26 May 2006) | 2 lines
Fix buglet in postinstall script, it would generate an invalid .cshrc file.
........
r46290 | georg.brandl | 2006-05-26 13:26:11 +0200 (Fri, 26 May 2006) | 3 lines
Add "partition" to UserString.
........
r46291 | fredrik.lundh | 2006-05-26 13:29:39 +0200 (Fri, 26 May 2006) | 5 lines
needforspeed: added Py_LOCAL macro, based on the LOCAL macro used
for SRE and others. applied Py_LOCAL to relevant portion of ceval,
which gives a 1-2% speedup on my machine. ymmv.
........
r46292 | jack.diederich | 2006-05-26 13:37:20 +0200 (Fri, 26 May 2006) | 1 line
when generating python code prefer to generate valid python code
........
r46293 | fredrik.lundh | 2006-05-26 13:38:15 +0200 (Fri, 26 May 2006) | 3 lines
use Py_LOCAL also for string and unicode objects
........
r46294 | ronald.oussoren | 2006-05-26 13:38:39 +0200 (Fri, 26 May 2006) | 12 lines
- Search the sqlite specific search directories
after the normal include directories when looking
for the version of sqlite to use.
- On OSX:
* Extract additional include and link directories
from the CFLAGS and LDFLAGS, if the user has
bothered to specify them we might as wel use them.
* Add '-Wl,-search_paths_first' to the extra_link_args
for readline and sqlite. This makes it possible to
use a static library to override the system provided
dynamic library.
........
r46295 | ronald.oussoren | 2006-05-26 13:43:26 +0200 (Fri, 26 May 2006) | 6 lines
Integrate installing a framework in the 'make install'
target. Until now users had to use 'make frameworkinstall'
to install python when it is configured with '--enable-framework'.
This tends to confuse users that don't hunt for readme files
hidden in platform specific directories :-)
........
r46297 | fredrik.lundh | 2006-05-26 13:54:04 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive"
LOCAL inlining; also added some missing whitespace
........
r46298 | andrew.kuchling | 2006-05-26 14:01:44 +0200 (Fri, 26 May 2006) | 1 line
Typo fixes
........
r46299 | fredrik.lundh | 2006-05-26 14:01:49 +0200 (Fri, 26 May 2006) | 4 lines
Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers,
but Trent's copy thinks that it's an anachronism...
........
r46300 | martin.blais | 2006-05-26 14:03:27 +0200 (Fri, 26 May 2006) | 12 lines
Support for buffer protocol for socket and struct.
* Added socket.recv_buf() and socket.recvfrom_buf() methods, that use the buffer
protocol (send and sendto already did).
* Added struct.pack_to(), that is the corresponding buffer compatible method to
unpack_from().
* Fixed minor typos in arraymodule.
........
r46302 | ronald.oussoren | 2006-05-26 14:23:20 +0200 (Fri, 26 May 2006) | 6 lines
- Remove previous version of the binary distribution script for OSX
- Some small bugfixes for the IDLE.app wrapper
- Tweaks to build-installer to ensure that python gets build in the right way,
including sqlite3.
- Updated readme files
........
r46305 | tim.peters | 2006-05-26 14:26:21 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46307 | andrew.dalke | 2006-05-26 14:28:15 +0200 (Fri, 26 May 2006) | 7 lines
I like tests.
The new split functions use a preallocated list. Added tests which exceed
the preallocation size, to exercise list appends/resizes.
Also added more edge case tests.
........
r46308 | andrew.dalke | 2006-05-26 14:31:00 +0200 (Fri, 26 May 2006) | 2 lines
Test cases for off-by-one errors in string split with multicharacter pattern.
........
r46309 | tim.peters | 2006-05-26 14:31:20 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46313 | andrew.kuchling | 2006-05-26 14:39:48 +0200 (Fri, 26 May 2006) | 1 line
Add str.partition()
........
r46314 | bob.ippolito | 2006-05-26 14:52:53 +0200 (Fri, 26 May 2006) | 1 line
quick hack to fix busted binhex test
........
r46316 | andrew.dalke | 2006-05-26 15:05:55 +0200 (Fri, 26 May 2006) | 2 lines
Added more rstrip tests, including for prealloc'ed arrays
........
r46320 | bob.ippolito | 2006-05-26 15:15:44 +0200 (Fri, 26 May 2006) | 1 line
fix #1229380 No struct.pack exception for some out of range integers
........
r46325 | tim.peters | 2006-05-26 15:39:17 +0200 (Fri, 26 May 2006) | 2 lines
Use open() to open files (was using file()).
........
r46327 | andrew.dalke | 2006-05-26 16:00:45 +0200 (Fri, 26 May 2006) | 37 lines
Changes to string.split/rsplit on whitespace to preallocate space in the
results list.
Originally it allocated 0 items and used the list growth during append. Now
it preallocates 12 items so the first few appends don't need list reallocs.
("Here are some words ."*2).split(None, 1) is 7% faster
("Here are some words ."*2).split() is is 15% faster
(Your milage may vary, see dealership for details.)
File parsing like this
for line in f:
count += len(line.split())
is also about 15% faster. There is a slowdown of about 3% for large
strings because of the additional overhead of checking if the append is
to a preallocated region of the list or not. This will be the rare case.
It could be improved with special case code but we decided it was not
useful enough.
There is a cost of 12*sizeof(PyObject *) bytes per list. For the normal
case of file parsing this is not a problem because of the lists have
a short lifetime. We have not come up with cases where this is a problem
in real life.
I chose 12 because human text averages about 11 words per line in books,
one of my data sets averages 6.2 words with a final peak at 11 words per
line, and I work with a tab delimited data set with 8 tabs per line (or
9 words per line). 12 encompasses all of these.
Also changed the last rstrip code to append then reverse, rather than
doing insert(0). The strip() and rstrip() times are now comparable.
........
r46328 | tim.peters | 2006-05-26 16:02:05 +0200 (Fri, 26 May 2006) | 5 lines
Explicitly close files. I'm trying to stop the frequent spurious test_tarfile
failures on Windows buildbots, but it's hard to know how since the regrtest
failure output is useless here, and it never fails when a buildbot slave runs
test_tarfile the second time in verbose mode.
........
r46329 | andrew.kuchling | 2006-05-26 16:03:41 +0200 (Fri, 26 May 2006) | 1 line
Add buffer support for struct, socket
........
r46330 | andrew.kuchling | 2006-05-26 16:04:19 +0200 (Fri, 26 May 2006) | 1 line
Typo fix
........
r46331 | bob.ippolito | 2006-05-26 16:07:23 +0200 (Fri, 26 May 2006) | 1 line
Fix distutils so that libffi will cross-compile between darwin/x86 and darwin/ppc
........
r46333 | bob.ippolito | 2006-05-26 16:23:21 +0200 (Fri, 26 May 2006) | 1 line
Fix _struct typo that broke some 64-bit platforms
........
r46335 | bob.ippolito | 2006-05-26 16:29:35 +0200 (Fri, 26 May 2006) | 1 line
Enable PY_USE_INT_WHEN_POSSIBLE in struct
........
r46343 | andrew.dalke | 2006-05-26 17:21:01 +0200 (Fri, 26 May 2006) | 2 lines
Eeked out another 3% or so performance in split whitespace by cleaning up the algorithm.
........
r46352 | andrew.dalke | 2006-05-26 18:22:52 +0200 (Fri, 26 May 2006) | 3 lines
Test for more edge strip cases; leading and trailing separator gets removed
even with strip(..., 0)
........
r46354 | bob.ippolito | 2006-05-26 18:23:28 +0200 (Fri, 26 May 2006) | 1 line
fix signed/unsigned mismatch in struct
........
r46355 | steve.holden | 2006-05-26 18:27:59 +0200 (Fri, 26 May 2006) | 5 lines
Add -t option to allow easy test selection.
Action verbose option correctly.
Tweak operation counts. Add empty and new instances tests.
Enable comparisons across different warp factors. Change version.
........
r46356 | fredrik.lundh | 2006-05-26 18:32:42 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: use Py_LOCAL on a few more locals in stringobject.c
........
r46357 | thomas.heller | 2006-05-26 18:42:44 +0200 (Fri, 26 May 2006) | 4 lines
For now, I gave up with automatic conversion of reST to Python-latex,
so I'm writing this in latex now.
Skeleton for the ctypes reference.
........
r46358 | tim.peters | 2006-05-26 18:49:28 +0200 (Fri, 26 May 2006) | 3 lines
Repair Windows compiler warnings about mixing
signed and unsigned integral types in comparisons.
........
r46359 | tim.peters | 2006-05-26 18:52:04 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46360 | tim.peters | 2006-05-26 18:53:04 +0200 (Fri, 26 May 2006) | 2 lines
Add missing svn:eol-style property to text files.
........
r46362 | fredrik.lundh | 2006-05-26 19:04:58 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: stringlib refactoring (in progress)
........
r46363 | thomas.heller | 2006-05-26 19:18:33 +0200 (Fri, 26 May 2006) | 1 line
Write some docs.
........
r46364 | fredrik.lundh | 2006-05-26 19:22:38 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: stringlib refactoring (in progress)
........
r46366 | fredrik.lundh | 2006-05-26 19:26:39 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: cleanup
........
r46367 | fredrik.lundh | 2006-05-26 19:31:41 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: remove remaining USE_FAST macros; if fastsearch was
broken, someone would have noticed by now ;-)
........
r46368 | steve.holden | 2006-05-26 19:41:32 +0200 (Fri, 26 May 2006) | 5 lines
Use minimum calibration time rather than avergae to avoid
the illusion of negative run times. Halt with an error if
run times go below 10 ms, indicating that results will be
unreliable.
........
r46370 | thomas.heller | 2006-05-26 19:47:40 +0200 (Fri, 26 May 2006) | 2 lines
Reordered, and wrote more docs.
........
r46372 | georg.brandl | 2006-05-26 20:03:31 +0200 (Fri, 26 May 2006) | 9 lines
Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache valid and
invalid file paths for the built-in import machinery which leads to
fewer open calls on startup.
Also fix issue with PEP 302 style import hooks which lead to more open()
calls than necessary.
........
r46373 | fredrik.lundh | 2006-05-26 20:05:34 +0200 (Fri, 26 May 2006) | 3 lines
removed unnecessary include
........
r46377 | fredrik.lundh | 2006-05-26 20:15:38 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: added rpartition implementation
........
r46380 | fredrik.lundh | 2006-05-26 20:24:15 +0200 (Fri, 26 May 2006) | 5 lines
needspeed: rpartition documentation, tests, and a bug fixes.
feel free to add more tests and improve the documentation.
........
r46381 | steve.holden | 2006-05-26 20:26:21 +0200 (Fri, 26 May 2006) | 4 lines
Revert tests to MAL's original round sizes to retiain comparability
from long ago and far away. Stop calling this pybench 1.4 because it
isn't. Remove the empty test, which was a bad idea.
........
r46387 | andrew.kuchling | 2006-05-26 20:41:18 +0200 (Fri, 26 May 2006) | 1 line
Add rpartition() and path caching
........
r46388 | andrew.dalke | 2006-05-26 21:02:09 +0200 (Fri, 26 May 2006) | 10 lines
substring split now uses /F's fast string matching algorithm.
(If compiled without FAST search support, changed the pre-memcmp test
to check the last character as well as the first. This gave a 25%
speedup for my test case.)
Rewrote the split algorithms so they stop when maxsplit gets to 0.
Previously they did a string match first then checked if the maxsplit
was reached. The new way prevents a needless string search.
........
r46391 | brett.cannon | 2006-05-26 21:04:47 +0200 (Fri, 26 May 2006) | 2 lines
Change C spacing to 4 spaces by default to match PEP 7 for new C files.
........
r46392 | georg.brandl | 2006-05-26 21:04:47 +0200 (Fri, 26 May 2006) | 3 lines
Exception isn't the root of all exception classes anymore.
........
r46397 | fredrik.lundh | 2006-05-26 21:23:21 +0200 (Fri, 26 May 2006) | 3 lines
added rpartition method to UserString class
........
r46398 | fredrik.lundh | 2006-05-26 21:24:53 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: stringlib refactoring, continued. added count and
find helpers; updated unicodeobject to use stringlib_count
........
r46400 | fredrik.lundh | 2006-05-26 21:29:05 +0200 (Fri, 26 May 2006) | 4 lines
needforspeed: stringlib refactoring: use stringlib/find for unicode
find
........
r46403 | fredrik.lundh | 2006-05-26 21:33:03 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: use a macro to fix slice indexes
........
r46404 | thomas.heller | 2006-05-26 21:43:45 +0200 (Fri, 26 May 2006) | 1 line
Write more docs.
........
r46406 | fredrik.lundh | 2006-05-26 21:48:07 +0200 (Fri, 26 May 2006) | 3 lines
needforspeed: stringlib refactoring: use stringlib/find for string find
........
r46407 | andrew.kuchling | 2006-05-26 21:51:10 +0200 (Fri, 26 May 2006) | 1 line
Comment typo
........
r46409 | georg.brandl | 2006-05-26 22:04:44 +0200 (Fri, 26 May 2006) | 3 lines
Replace Py_BuildValue("OO") by PyTuple_Pack.
........
r46411 | georg.brandl | 2006-05-26 22:14:47 +0200 (Fri, 26 May 2006) | 2 lines
Patch #1492218: document None being a constant.
........
r46415 | georg.brandl | 2006-05-26 22:22:50 +0200 (Fri, 26 May 2006) | 3 lines
Simplify calling.
........
r46416 | andrew.dalke | 2006-05-26 22:25:22 +0200 (Fri, 26 May 2006) | 4 lines
Added limits to the replace code so it does not count all of the matching
patterns in a string, only the number needed by the max limit.
........
r46417 | bob.ippolito | 2006-05-26 22:25:23 +0200 (Fri, 26 May 2006) | 1 line
enable all of the struct tests, use ssize_t, fix some whitespace
........
r46418 | tim.peters | 2006-05-26 22:56:56 +0200 (Fri, 26 May 2006) | 2 lines
Record Iceland sprint attendees.
........
r46421 | tim.peters | 2006-05-26 23:51:13 +0200 (Fri, 26 May 2006) | 2 lines
Whitespace normalization.
........
r46422 | steve.holden | 2006-05-27 00:17:54 +0200 (Sat, 27 May 2006) | 2 lines
Add Richard Tew to developers
........
r46423 | steve.holden | 2006-05-27 00:33:20 +0200 (Sat, 27 May 2006) | 2 lines
Update help text and documentaition.
........
r46424 | steve.holden | 2006-05-27 00:39:27 +0200 (Sat, 27 May 2006) | 2 lines
Blasted typos ...
........
r46425 | andrew.dalke | 2006-05-27 00:49:03 +0200 (Sat, 27 May 2006) | 2 lines
Added description of why splitlines doesn't use the prealloc strategy
........
r46426 | tim.peters | 2006-05-27 01:14:37 +0200 (Sat, 27 May 2006) | 19 lines
Patch 1145039.
set_exc_info(), reset_exc_info(): By exploiting the
likely (who knows?) invariant that when an exception's
`type` is NULL, its `value` and `traceback` are also NULL,
save some cycles in heavily-executed code.
This is a "a kronar saved is a kronar earned" patch: the
speedup isn't reliably measurable, but it obviously does
reduce the operation count in the normal (no exception
raised) path through PyEval_EvalFrameEx().
The tim-exc_sanity branch tries to push this harder, but
is still blowing up (at least in part due to pre-existing
subtle bugs that appear to have no other visible
consequences!).
Not a bugfix candidate.
........
r46429 | steve.holden | 2006-05-27 02:51:52 +0200 (Sat, 27 May 2006) | 2 lines
Reinstate new-style object tests.
........
r46430 | neal.norwitz | 2006-05-27 07:18:57 +0200 (Sat, 27 May 2006) | 1 line
Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code looked duplicated, I wonder if a utility function could help reduce the duplication here.)
........
r46431 | neal.norwitz | 2006-05-27 07:21:30 +0200 (Sat, 27 May 2006) | 4 lines
Fix Coverity warnings.
- Check the correct variable (str_obj, not str) for NULL
- sep_len was already verified it wasn't 0
........
r46432 | martin.v.loewis | 2006-05-27 10:36:52 +0200 (Sat, 27 May 2006) | 2 lines
Patch 1494554: Update numeric properties to Unicode 4.1.
........
r46433 | martin.v.loewis | 2006-05-27 10:54:29 +0200 (Sat, 27 May 2006) | 2 lines
Explain why 'consumed' is initialized.
........
r46436 | fredrik.lundh | 2006-05-27 12:05:10 +0200 (Sat, 27 May 2006) | 3 lines
needforspeed: more stringlib refactoring
........
r46438 | fredrik.lundh | 2006-05-27 12:39:48 +0200 (Sat, 27 May 2006) | 5 lines
needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in-
lining killed performance on certain Intel boxes, and the "aggressive"
macro itself gives most of the benefits on others.
........
r46439 | andrew.dalke | 2006-05-27 13:04:36 +0200 (Sat, 27 May 2006) | 2 lines
fixed typo
........
r46440 | martin.v.loewis | 2006-05-27 13:07:49 +0200 (Sat, 27 May 2006) | 2 lines
Revert bogus change committed in 46432 to this file.
........
r46444 | andrew.kuchling | 2006-05-27 13:26:33 +0200 (Sat, 27 May 2006) | 1 line
Add Py_LOCAL macros
........
r46450 | bob.ippolito | 2006-05-27 13:47:12 +0200 (Sat, 27 May 2006) | 1 line
Remove the range checking and int usage #defines from _struct and strip out the now-dead code
........
r46454 | bob.ippolito | 2006-05-27 14:11:36 +0200 (Sat, 27 May 2006) | 1 line
Fix up struct docstrings, add struct.pack_to function for symmetry
........
r46456 | richard.jones | 2006-05-27 14:29:24 +0200 (Sat, 27 May 2006) | 2 lines
Conversion of exceptions over from faked-up classes to new-style C types.
........
r46457 | georg.brandl | 2006-05-27 14:30:25 +0200 (Sat, 27 May 2006) | 3 lines
Add news item for new-style exception class branch merge.
........
r46458 | tim.peters | 2006-05-27 14:36:53 +0200 (Sat, 27 May 2006) | 3 lines
More random thrashing trying to understand spurious
Windows failures. Who's keeping a bz2 file open?
........
r46460 | andrew.kuchling | 2006-05-27 15:44:37 +0200 (Sat, 27 May 2006) | 1 line
Mention new-style exceptions
........
r46461 | richard.jones | 2006-05-27 15:50:42 +0200 (Sat, 27 May 2006) | 1 line
credit where credit is due
........
r46462 | georg.brandl | 2006-05-27 16:02:03 +0200 (Sat, 27 May 2006) | 3 lines
Always close BZ2Proxy object. Remove unnecessary struct usage.
........
r46463 | tim.peters | 2006-05-27 16:13:13 +0200 (Sat, 27 May 2006) | 2 lines
The cheery optimism of old age.
........
r46464 | andrew.dalke | 2006-05-27 16:16:40 +0200 (Sat, 27 May 2006) | 2 lines
cleanup - removed trailing whitespace
........
r46465 | georg.brandl | 2006-05-27 16:41:55 +0200 (Sat, 27 May 2006) | 3 lines
Remove spurious semicolons after macro invocations.
........
r46468 | fredrik.lundh | 2006-05-27 16:58:20 +0200 (Sat, 27 May 2006) | 4 lines
needforspeed: replace improvements, changed to Py_LOCAL_INLINE
where appropriate
........
r46469 | fredrik.lundh | 2006-05-27 17:20:22 +0200 (Sat, 27 May 2006) | 4 lines
needforspeed: stringlib refactoring: changed find_obj to find_slice,
to enable use from stringobject
........
r46470 | fredrik.lundh | 2006-05-27 17:26:19 +0200 (Sat, 27 May 2006) | 3 lines
needforspeed: stringlib refactoring: use find_slice for stringobject
........
r46472 | kristjan.jonsson | 2006-05-27 17:41:31 +0200 (Sat, 27 May 2006) | 1 line
Add a PCBuild8 build directory for building with Visual Studio .NET 2005. Contains a special project to perform profile guided optimizations on the pythoncore.dll, by instrumenting and running pybench.py
........
r46473 | jack.diederich | 2006-05-27 17:44:34 +0200 (Sat, 27 May 2006) | 3 lines
needforspeed: use PyObject_MALLOC instead of system malloc for small
allocations. Use PyMem_MALLOC for larger (1k+) chunks. 1%-2% speedup.
........
r46474 | bob.ippolito | 2006-05-27 17:53:49 +0200 (Sat, 27 May 2006) | 1 line
fix struct regression on 64-bit platforms
........
r46475 | richard.jones | 2006-05-27 18:07:28 +0200 (Sat, 27 May 2006) | 1 line
doc string additions and tweaks
........
r46477 | richard.jones | 2006-05-27 18:15:11 +0200 (Sat, 27 May 2006) | 1 line
move semicolons
........
r46478 | george.yoshida | 2006-05-27 18:32:44 +0200 (Sat, 27 May 2006) | 2 lines
minor markup nits
........
r46488 | george.yoshida | 2006-05-27 18:51:43 +0200 (Sat, 27 May 2006) | 3 lines
End of Ch.3 is now about "with statement".
Avoid obsolescence by directly referring to the section.
........
r46489 | george.yoshida | 2006-05-27 19:09:17 +0200 (Sat, 27 May 2006) | 2 lines
fix typo
........
2006-05-27 16:21:47 -03:00
|
|
|
def get_manager(self):
|
2006-02-28 17:57:43 -04:00
|
|
|
return ContextManager(self.copy())
|
|
|
|
|
2004-07-03 07:02:28 -03:00
|
|
|
def clear_flags(self):
|
|
|
|
"""Reset all flags to zero"""
|
|
|
|
for flag in self.flags:
|
2004-07-03 22:55:39 -03:00
|
|
|
self.flags[flag] = 0
|
2004-07-03 07:02:28 -03:00
|
|
|
|
2004-08-08 01:03:24 -03:00
|
|
|
def _shallow_copy(self):
|
|
|
|
"""Returns a shallow copy from self."""
|
2004-07-10 11:14:37 -03:00
|
|
|
nc = Context(self.prec, self.rounding, self.traps, self.flags,
|
2004-07-01 08:01:35 -03:00
|
|
|
self._rounding_decision, self.Emin, self.Emax,
|
|
|
|
self.capitals, self._clamp, self._ignored_flags)
|
|
|
|
return nc
|
2004-08-08 01:03:24 -03:00
|
|
|
|
|
|
|
def copy(self):
|
|
|
|
"""Returns a deep copy from self."""
|
|
|
|
nc = Context(self.prec, self.rounding, self.traps.copy(), self.flags.copy(),
|
|
|
|
self._rounding_decision, self.Emin, self.Emax,
|
|
|
|
self.capitals, self._clamp, self._ignored_flags)
|
|
|
|
return nc
|
2004-07-03 10:48:56 -03:00
|
|
|
__copy__ = copy
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-07-09 07:02:53 -03:00
|
|
|
def _raise_error(self, condition, explanation = None, *args):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Handles an error
|
|
|
|
|
|
|
|
If the flag is in _ignored_flags, returns the default response.
|
|
|
|
Otherwise, it increments the flag, then, if the corresponding
|
|
|
|
trap_enabler is set, it reaises the exception. Otherwise, it returns
|
|
|
|
the default value after incrementing the flag.
|
|
|
|
"""
|
2004-07-09 07:02:53 -03:00
|
|
|
error = _condition_map.get(condition, condition)
|
2004-07-01 08:01:35 -03:00
|
|
|
if error in self._ignored_flags:
|
|
|
|
#Don't touch the flag
|
|
|
|
return error().handle(self, *args)
|
|
|
|
|
|
|
|
self.flags[error] += 1
|
2004-07-10 11:14:37 -03:00
|
|
|
if not self.traps[error]:
|
2004-07-01 08:01:35 -03:00
|
|
|
#The errors define how to handle themselves.
|
2004-07-09 07:02:53 -03:00
|
|
|
return condition().handle(self, *args)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
# Errors should only be risked on copies of the context
|
|
|
|
#self._ignored_flags = []
|
|
|
|
raise error, explanation
|
|
|
|
|
|
|
|
def _ignore_all_flags(self):
|
|
|
|
"""Ignore all flags, if they are raised"""
|
2004-07-14 12:41:57 -03:00
|
|
|
return self._ignore_flags(*_signals)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def _ignore_flags(self, *flags):
|
|
|
|
"""Ignore the flags, if they are raised"""
|
|
|
|
# Do not mutate-- This way, copies of a context leave the original
|
|
|
|
# alone.
|
|
|
|
self._ignored_flags = (self._ignored_flags + list(flags))
|
|
|
|
return list(flags)
|
|
|
|
|
|
|
|
def _regard_flags(self, *flags):
|
|
|
|
"""Stop ignoring the flags, if they are raised"""
|
|
|
|
if flags and isinstance(flags[0], (tuple,list)):
|
|
|
|
flags = flags[0]
|
|
|
|
for flag in flags:
|
|
|
|
self._ignored_flags.remove(flag)
|
|
|
|
|
2004-07-09 07:02:53 -03:00
|
|
|
def __hash__(self):
|
|
|
|
"""A Context cannot be hashed."""
|
|
|
|
# We inherit object.__hash__, so we must deny this explicitly
|
|
|
|
raise TypeError, "Cannot hash a Context."
|
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
def Etiny(self):
|
|
|
|
"""Returns Etiny (= Emin - prec + 1)"""
|
|
|
|
return int(self.Emin - self.prec + 1)
|
|
|
|
|
|
|
|
def Etop(self):
|
2004-07-05 02:36:39 -03:00
|
|
|
"""Returns maximum exponent (= Emax - prec + 1)"""
|
2004-07-01 08:01:35 -03:00
|
|
|
return int(self.Emax - self.prec + 1)
|
|
|
|
|
|
|
|
def _set_rounding_decision(self, type):
|
|
|
|
"""Sets the rounding decision.
|
|
|
|
|
|
|
|
Sets the rounding decision, and returns the current (previous)
|
|
|
|
rounding decision. Often used like:
|
|
|
|
|
2004-08-08 01:03:24 -03:00
|
|
|
context = context._shallow_copy()
|
2004-07-01 08:01:35 -03:00
|
|
|
# That so you don't change the calling context
|
|
|
|
# if an error occurs in the middle (say DivisionImpossible is raised).
|
|
|
|
|
|
|
|
rounding = context._set_rounding_decision(NEVER_ROUND)
|
|
|
|
instance = instance / Decimal(2)
|
|
|
|
context._set_rounding_decision(rounding)
|
|
|
|
|
|
|
|
This will make it not round for that operation.
|
|
|
|
"""
|
|
|
|
|
|
|
|
rounding = self._rounding_decision
|
|
|
|
self._rounding_decision = type
|
|
|
|
return rounding
|
|
|
|
|
|
|
|
def _set_rounding(self, type):
|
|
|
|
"""Sets the rounding type.
|
|
|
|
|
|
|
|
Sets the rounding type, and returns the current (previous)
|
|
|
|
rounding type. Often used like:
|
|
|
|
|
|
|
|
context = context.copy()
|
|
|
|
# so you don't change the calling context
|
|
|
|
# if an error occurs in the middle.
|
|
|
|
rounding = context._set_rounding(ROUND_UP)
|
|
|
|
val = self.__sub__(other, context=context)
|
|
|
|
context._set_rounding(rounding)
|
|
|
|
|
|
|
|
This will make it round up for that operation.
|
|
|
|
"""
|
|
|
|
rounding = self.rounding
|
|
|
|
self.rounding= type
|
|
|
|
return rounding
|
|
|
|
|
2004-07-14 12:41:57 -03:00
|
|
|
def create_decimal(self, num='0'):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Creates a new Decimal instance but using self as context."""
|
|
|
|
d = Decimal(num, context=self)
|
2004-10-09 04:10:44 -03:00
|
|
|
return d._fix(self)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
#Methods
|
|
|
|
def abs(self, a):
|
|
|
|
"""Returns the absolute value of the operand.
|
|
|
|
|
|
|
|
If the operand is negative, the result is the same as using the minus
|
|
|
|
operation on the operand. Otherwise, the result is the same as using
|
|
|
|
the plus operation on the operand.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.abs(Decimal('2.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.abs(Decimal('-100'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("100")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.abs(Decimal('101.5'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("101.5")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.abs(Decimal('-101.5'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("101.5")
|
|
|
|
"""
|
|
|
|
return a.__abs__(context=self)
|
|
|
|
|
|
|
|
def add(self, a, b):
|
|
|
|
"""Return the sum of the two operands.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.add(Decimal('12'), Decimal('7.00'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("19.00")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.02E+4")
|
|
|
|
"""
|
|
|
|
return a.__add__(b, context=self)
|
|
|
|
|
|
|
|
def _apply(self, a):
|
2004-10-09 04:10:44 -03:00
|
|
|
return str(a._fix(self))
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def compare(self, a, b):
|
|
|
|
"""Compares values numerically.
|
|
|
|
|
|
|
|
If the signs of the operands differ, a value representing each operand
|
|
|
|
('-1' if the operand is less than zero, '0' if the operand is zero or
|
|
|
|
negative zero, or '1' if the operand is greater than zero) is used in
|
|
|
|
place of that operand for the comparison instead of the actual
|
|
|
|
operand.
|
|
|
|
|
|
|
|
The comparison is then effected by subtracting the second operand from
|
|
|
|
the first and then returning a value according to the result of the
|
|
|
|
subtraction: '-1' if the result is less than zero, '0' if the result is
|
|
|
|
zero or negative zero, or '1' if the result is greater than zero.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.compare(Decimal('2.1'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.compare(Decimal('3'), Decimal('2.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1")
|
|
|
|
"""
|
|
|
|
return a.compare(b, context=self)
|
|
|
|
|
|
|
|
def divide(self, a, b):
|
|
|
|
"""Decimal division in a specified context.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('1'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.333333333")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('2'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.666666667")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('5'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.5")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('1'), Decimal('10'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('12'), Decimal('12'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('8.00'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("4.00")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.20")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('1000'), Decimal('100'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("10")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('1000'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1000")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.20E+6")
|
|
|
|
"""
|
2006-03-24 04:14:36 -04:00
|
|
|
return a.__truediv__(b, context=self)
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
def divide_int(self, a, b):
|
|
|
|
"""Divides two numbers and returns the integer part of the result.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide_int(Decimal('2'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide_int(Decimal('10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("3")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("3")
|
|
|
|
"""
|
|
|
|
return a.__floordiv__(b, context=self)
|
|
|
|
|
|
|
|
def divmod(self, a, b):
|
|
|
|
return a.__divmod__(b, context=self)
|
|
|
|
|
|
|
|
def max(self, a,b):
|
|
|
|
"""max compares two values numerically and returns the maximum.
|
|
|
|
|
|
|
|
If either operand is a NaN then the general rules apply.
|
|
|
|
Otherwise, the operands are compared as as though by the compare
|
|
|
|
operation. If they are numerically equal then the left-hand operand
|
|
|
|
is chosen as the result. Otherwise the maximum (closer to positive
|
|
|
|
infinity) of the two operands is chosen as the result.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.max(Decimal('3'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("3")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.max(Decimal('-10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("3")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.max(Decimal('1.0'), Decimal('1'))
|
2004-08-17 03:39:37 -03:00
|
|
|
Decimal("1")
|
|
|
|
>>> ExtendedContext.max(Decimal('7'), Decimal('NaN'))
|
|
|
|
Decimal("7")
|
2004-07-01 08:01:35 -03:00
|
|
|
"""
|
|
|
|
return a.max(b, context=self)
|
|
|
|
|
|
|
|
def min(self, a,b):
|
|
|
|
"""min compares two values numerically and returns the minimum.
|
|
|
|
|
|
|
|
If either operand is a NaN then the general rules apply.
|
|
|
|
Otherwise, the operands are compared as as though by the compare
|
|
|
|
operation. If they are numerically equal then the left-hand operand
|
|
|
|
is chosen as the result. Otherwise the minimum (closer to negative
|
|
|
|
infinity) of the two operands is chosen as the result.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.min(Decimal('3'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.min(Decimal('-10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-10")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.min(Decimal('1.0'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.0")
|
2004-08-17 03:39:37 -03:00
|
|
|
>>> ExtendedContext.min(Decimal('7'), Decimal('NaN'))
|
|
|
|
Decimal("7")
|
2004-07-01 08:01:35 -03:00
|
|
|
"""
|
|
|
|
return a.min(b, context=self)
|
|
|
|
|
|
|
|
def minus(self, a):
|
|
|
|
"""Minus corresponds to unary prefix minus in Python.
|
|
|
|
|
|
|
|
The operation is evaluated using the same rules as subtract; the
|
|
|
|
operation minus(a) is calculated as subtract('0', a) where the '0'
|
|
|
|
has the same exponent as the operand.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.minus(Decimal('1.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1.3")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.minus(Decimal('-1.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.3")
|
|
|
|
"""
|
|
|
|
return a.__neg__(context=self)
|
|
|
|
|
|
|
|
def multiply(self, a, b):
|
|
|
|
"""multiply multiplies two operands.
|
|
|
|
|
|
|
|
If either operand is a special value then the general rules apply.
|
|
|
|
Otherwise, the operands are multiplied together ('long multiplication'),
|
|
|
|
resulting in a number which may be as long as the sum of the lengths
|
|
|
|
of the two operands.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("3.60")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.multiply(Decimal('7'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("21")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.72")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0.0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("4.28135971E+11")
|
|
|
|
"""
|
|
|
|
return a.__mul__(b, context=self)
|
|
|
|
|
|
|
|
def normalize(self, a):
|
2004-07-05 02:36:39 -03:00
|
|
|
"""normalize reduces an operand to its simplest form.
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
Essentially a plus operation with all trailing zeros removed from the
|
|
|
|
result.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.normalize(Decimal('2.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.normalize(Decimal('-2.0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.normalize(Decimal('1.200'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.normalize(Decimal('-120'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1.2E+2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.normalize(Decimal('120.00'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.2E+2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.normalize(Decimal('0.00'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
|
|
|
"""
|
|
|
|
return a.normalize(context=self)
|
|
|
|
|
|
|
|
def plus(self, a):
|
|
|
|
"""Plus corresponds to unary prefix plus in Python.
|
|
|
|
|
|
|
|
The operation is evaluated using the same rules as add; the
|
|
|
|
operation plus(a) is calculated as add('0', a) where the '0'
|
|
|
|
has the same exponent as the operand.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.plus(Decimal('1.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.3")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.plus(Decimal('-1.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1.3")
|
|
|
|
"""
|
|
|
|
return a.__pos__(context=self)
|
|
|
|
|
|
|
|
def power(self, a, b, modulo=None):
|
|
|
|
"""Raises a to the power of b, to modulo if given.
|
|
|
|
|
|
|
|
The right-hand operand must be a whole number whose integer part (after
|
|
|
|
any exponent has been applied) has no more than 9 digits and whose
|
|
|
|
fractional part (if any) is all zeros before any rounding. The operand
|
|
|
|
may be positive, negative, or zero; if negative, the absolute value of
|
|
|
|
the power is used, and the left-hand operand is inverted (divided into
|
|
|
|
1) before use.
|
|
|
|
|
|
|
|
If the increased precision needed for the intermediate calculations
|
|
|
|
exceeds the capabilities of the implementation then an Invalid operation
|
|
|
|
condition is raised.
|
|
|
|
|
|
|
|
If, when raising to a negative power, an underflow occurs during the
|
|
|
|
division into 1, the operation is not halted at that point but
|
|
|
|
continues.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('2'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("8")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('2'), Decimal('-3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.125")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('1.7'), Decimal('8'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("69.7575744")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('Infinity'), Decimal('-2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('Infinity'), Decimal('-1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('Infinity'), Decimal('0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('Infinity'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("Infinity")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('Infinity'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("Infinity")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('-Infinity'), Decimal('-2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('-Infinity'), Decimal('-1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('-Infinity'), Decimal('0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('-Infinity'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-Infinity")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('-Infinity'), Decimal('2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("Infinity")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.power(Decimal('0'), Decimal('0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("NaN")
|
|
|
|
"""
|
|
|
|
return a.__pow__(b, modulo, context=self)
|
|
|
|
|
|
|
|
def quantize(self, a, b):
|
|
|
|
"""Returns a value equal to 'a' (rounded) and having the exponent of 'b'.
|
|
|
|
|
|
|
|
The coefficient of the result is derived from that of the left-hand
|
|
|
|
operand. It may be rounded using the current rounding setting (if the
|
|
|
|
exponent is being increased), multiplied by a positive power of ten (if
|
|
|
|
the exponent is being decreased), or is unchanged (if the exponent is
|
|
|
|
already equal to that of the right-hand operand).
|
|
|
|
|
|
|
|
Unlike other operations, if the length of the coefficient after the
|
|
|
|
quantize operation would be greater than precision then an Invalid
|
|
|
|
operation condition is raised. This guarantees that, unless there is an
|
|
|
|
error condition, the exponent of the result of a quantize is always
|
|
|
|
equal to that of the right-hand operand.
|
|
|
|
|
|
|
|
Also unlike other operations, quantize will never raise Underflow, even
|
|
|
|
if the result is subnormal and inexact.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.170")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.17")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0E+1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-Infinity")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("NaN")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0E+5")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("NaN")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("NaN")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("217.0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("217")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.2E+2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2E+2")
|
|
|
|
"""
|
|
|
|
return a.quantize(b, context=self)
|
|
|
|
|
|
|
|
def remainder(self, a, b):
|
|
|
|
"""Returns the remainder from integer division.
|
|
|
|
|
|
|
|
The result is the residue of the dividend after the operation of
|
|
|
|
calculating integer division as described for divide-integer, rounded to
|
|
|
|
precision digits if necessary. The sign of the result, if non-zero, is
|
|
|
|
the same as that of the original dividend.
|
|
|
|
|
|
|
|
This operation will fail under the same conditions as integer division
|
|
|
|
(that is, if integer division on the same two operands would fail, the
|
|
|
|
remainder cannot be calculated).
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder(Decimal('10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder(Decimal('-10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.0")
|
|
|
|
"""
|
|
|
|
return a.__mod__(b, context=self)
|
|
|
|
|
|
|
|
def remainder_near(self, a, b):
|
|
|
|
"""Returns to be "a - b * n", where n is the integer nearest the exact
|
|
|
|
value of "x / b" (if two integers are equally near then the even one
|
|
|
|
is chosen). If the result is equal to 0 then its sign will be the
|
|
|
|
sign of a.
|
|
|
|
|
|
|
|
This operation will fail under the same conditions as integer division
|
|
|
|
(that is, if integer division on the same two operands would fail, the
|
|
|
|
remainder cannot be calculated).
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0.9")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0.3")
|
|
|
|
"""
|
|
|
|
return a.remainder_near(b, context=self)
|
|
|
|
|
|
|
|
def same_quantum(self, a, b):
|
|
|
|
"""Returns True if the two operands have the same exponent.
|
|
|
|
|
|
|
|
The result is never affected by either the sign or the coefficient of
|
|
|
|
either operand.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))
|
2004-07-01 08:01:35 -03:00
|
|
|
False
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))
|
2004-07-01 08:01:35 -03:00
|
|
|
True
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
False
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))
|
2004-07-01 08:01:35 -03:00
|
|
|
True
|
|
|
|
"""
|
|
|
|
return a.same_quantum(b)
|
|
|
|
|
|
|
|
def sqrt(self, a):
|
|
|
|
"""Returns the square root of a non-negative number to context precision.
|
|
|
|
|
|
|
|
If the result must be inexact, it is rounded using the round-half-even
|
|
|
|
algorithm.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('-0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('0.39'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.624499800")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('100'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("10")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('1.0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('1.00'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.0")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('7'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2.64575131")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.sqrt(Decimal('10'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("3.16227766")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.prec
|
2004-07-03 09:26:21 -03:00
|
|
|
9
|
2004-07-01 08:01:35 -03:00
|
|
|
"""
|
|
|
|
return a.sqrt(context=self)
|
|
|
|
|
|
|
|
def subtract(self, a, b):
|
2005-08-22 16:35:18 -03:00
|
|
|
"""Return the difference between the two operands.
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.23")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("0.00")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-0.77")
|
|
|
|
"""
|
|
|
|
return a.__sub__(b, context=self)
|
|
|
|
|
|
|
|
def to_eng_string(self, a):
|
|
|
|
"""Converts a number to a string, using scientific notation.
|
|
|
|
|
|
|
|
The operation is not affected by the context.
|
|
|
|
"""
|
|
|
|
return a.to_eng_string(context=self)
|
|
|
|
|
|
|
|
def to_sci_string(self, a):
|
|
|
|
"""Converts a number to a string, using scientific notation.
|
|
|
|
|
|
|
|
The operation is not affected by the context.
|
|
|
|
"""
|
|
|
|
return a.__str__(context=self)
|
|
|
|
|
|
|
|
def to_integral(self, a):
|
|
|
|
"""Rounds to an integer.
|
|
|
|
|
|
|
|
When the operand has a negative exponent, the result is the same
|
|
|
|
as using the quantize() operation using the given operand as the
|
|
|
|
left-hand-operand, 1E+0 as the right-hand-operand, and the precision
|
|
|
|
of the operand as the precision setting, except that no flags will
|
|
|
|
be set. The rounding mode is taken from the context.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('2.1'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("2")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('100'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("100")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('100.0'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("100")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('101.5'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("102")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('-101.5'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-102")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('10E+5'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("1.0E+6")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('7.89E+77'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("7.89E+77")
|
2004-07-03 10:48:56 -03:00
|
|
|
>>> ExtendedContext.to_integral(Decimal('-Inf'))
|
2004-07-01 08:01:35 -03:00
|
|
|
Decimal("-Infinity")
|
|
|
|
"""
|
|
|
|
return a.to_integral(context=self)
|
|
|
|
|
|
|
|
class _WorkRep(object):
|
|
|
|
__slots__ = ('sign','int','exp')
|
2004-10-27 03:21:46 -03:00
|
|
|
# sign: 0 or 1
|
2004-09-18 22:54:09 -03:00
|
|
|
# int: int or long
|
2004-07-01 08:01:35 -03:00
|
|
|
# exp: None, int, or string
|
|
|
|
|
|
|
|
def __init__(self, value=None):
|
|
|
|
if value is None:
|
|
|
|
self.sign = None
|
2004-09-18 22:54:09 -03:00
|
|
|
self.int = 0
|
2004-07-01 08:01:35 -03:00
|
|
|
self.exp = None
|
2004-10-27 03:21:46 -03:00
|
|
|
elif isinstance(value, Decimal):
|
|
|
|
self.sign = value._sign
|
2004-09-18 22:54:09 -03:00
|
|
|
cum = 0
|
2004-10-27 03:21:46 -03:00
|
|
|
for digit in value._int:
|
2004-09-18 22:54:09 -03:00
|
|
|
cum = cum * 10 + digit
|
|
|
|
self.int = cum
|
2004-07-01 08:01:35 -03:00
|
|
|
self.exp = value._exp
|
2004-10-27 03:21:46 -03:00
|
|
|
else:
|
|
|
|
# assert isinstance(value, tuple)
|
2004-07-01 08:01:35 -03:00
|
|
|
self.sign = value[0]
|
|
|
|
self.int = value[1]
|
|
|
|
self.exp = value[2]
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "(%r, %r, %r)" % (self.sign, self.int, self.exp)
|
|
|
|
|
|
|
|
__str__ = __repr__
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _normalize(op1, op2, shouldround = 0, prec = 0):
|
|
|
|
"""Normalizes op1, op2 to have the same exp and length of coefficient.
|
|
|
|
|
|
|
|
Done during addition.
|
|
|
|
"""
|
|
|
|
# Yes, the exponent is a long, but the difference between exponents
|
|
|
|
# must be an int-- otherwise you'd get a big memory problem.
|
|
|
|
numdigits = int(op1.exp - op2.exp)
|
|
|
|
if numdigits < 0:
|
|
|
|
numdigits = -numdigits
|
|
|
|
tmp = op2
|
|
|
|
other = op1
|
|
|
|
else:
|
|
|
|
tmp = op1
|
|
|
|
other = op2
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
|
|
|
|
if shouldround and numdigits > prec + 1:
|
|
|
|
# Big difference in exponents - check the adjusted exponents
|
|
|
|
tmp_len = len(str(tmp.int))
|
|
|
|
other_len = len(str(other.int))
|
|
|
|
if numdigits > (other_len + prec + 1 - tmp_len):
|
|
|
|
# If the difference in adjusted exps is > prec+1, we know
|
|
|
|
# other is insignificant, so might as well put a 1 after the precision.
|
|
|
|
# (since this is only for addition.) Also stops use of massive longs.
|
|
|
|
|
|
|
|
extend = prec + 2 - tmp_len
|
|
|
|
if extend <= 0:
|
|
|
|
extend = 1
|
|
|
|
tmp.int *= 10 ** extend
|
|
|
|
tmp.exp -= extend
|
|
|
|
other.int = 1
|
|
|
|
other.exp = tmp.exp
|
|
|
|
return op1, op2
|
|
|
|
|
|
|
|
tmp.int *= 10 ** numdigits
|
|
|
|
tmp.exp -= numdigits
|
2004-07-01 08:01:35 -03:00
|
|
|
return op1, op2
|
|
|
|
|
|
|
|
def _adjust_coefficients(op1, op2):
|
2004-09-18 22:54:09 -03:00
|
|
|
"""Adjust op1, op2 so that op2.int * 10 > op1.int >= op2.int.
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
Returns the adjusted op1, op2 as well as the change in op1.exp-op2.exp.
|
|
|
|
|
|
|
|
Used on _WorkRep instances during division.
|
|
|
|
"""
|
|
|
|
adjust = 0
|
2004-09-18 22:54:09 -03:00
|
|
|
#If op1 is smaller, make it larger
|
|
|
|
while op2.int > op1.int:
|
|
|
|
op1.int *= 10
|
2004-07-01 08:01:35 -03:00
|
|
|
op1.exp -= 1
|
2004-09-18 22:54:09 -03:00
|
|
|
adjust += 1
|
2004-07-01 08:01:35 -03:00
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
#If op2 is too small, make it larger
|
|
|
|
while op1.int >= (10 * op2.int):
|
|
|
|
op2.int *= 10
|
2004-07-01 08:01:35 -03:00
|
|
|
op2.exp -= 1
|
|
|
|
adjust -= 1
|
2004-09-18 22:54:09 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
return op1, op2, adjust
|
|
|
|
|
|
|
|
##### Helper Functions ########################################
|
|
|
|
|
2004-09-18 22:54:09 -03:00
|
|
|
def _convert_other(other):
|
|
|
|
"""Convert other to Decimal.
|
|
|
|
|
|
|
|
Verifies that it's ok to use in an implicit construction.
|
|
|
|
"""
|
|
|
|
if isinstance(other, Decimal):
|
|
|
|
return other
|
|
|
|
if isinstance(other, (int, long)):
|
|
|
|
return Decimal(other)
|
2005-03-27 06:47:39 -04:00
|
|
|
return NotImplemented
|
2004-09-18 22:54:09 -03:00
|
|
|
|
2004-07-01 08:01:35 -03:00
|
|
|
_infinity_map = {
|
|
|
|
'inf' : 1,
|
|
|
|
'infinity' : 1,
|
|
|
|
'+inf' : 1,
|
|
|
|
'+infinity' : 1,
|
|
|
|
'-inf' : -1,
|
|
|
|
'-infinity' : -1
|
|
|
|
}
|
|
|
|
|
2004-07-04 10:53:24 -03:00
|
|
|
def _isinfinity(num):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Determines whether a string or float is infinity.
|
|
|
|
|
2004-07-04 10:53:24 -03:00
|
|
|
+1 for negative infinity; 0 for finite ; +1 for positive infinity
|
2004-07-01 08:01:35 -03:00
|
|
|
"""
|
|
|
|
num = str(num).lower()
|
|
|
|
return _infinity_map.get(num, 0)
|
|
|
|
|
2004-07-04 10:53:24 -03:00
|
|
|
def _isnan(num):
|
2004-07-01 08:01:35 -03:00
|
|
|
"""Determines whether a string or float is NaN
|
|
|
|
|
|
|
|
(1, sign, diagnostic info as string) => NaN
|
|
|
|
(2, sign, diagnostic info as string) => sNaN
|
|
|
|
0 => not a NaN
|
|
|
|
"""
|
|
|
|
num = str(num).lower()
|
|
|
|
if not num:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
#get the sign, get rid of trailing [+-]
|
|
|
|
sign = 0
|
|
|
|
if num[0] == '+':
|
|
|
|
num = num[1:]
|
|
|
|
elif num[0] == '-': #elif avoids '+-nan'
|
|
|
|
num = num[1:]
|
|
|
|
sign = 1
|
|
|
|
|
|
|
|
if num.startswith('nan'):
|
|
|
|
if len(num) > 3 and not num[3:].isdigit(): #diagnostic info
|
|
|
|
return 0
|
|
|
|
return (1, sign, num[3:].lstrip('0'))
|
|
|
|
if num.startswith('snan'):
|
|
|
|
if len(num) > 4 and not num[4:].isdigit():
|
|
|
|
return 0
|
|
|
|
return (2, sign, num[4:].lstrip('0'))
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
##### Setup Specific Contexts ################################
|
|
|
|
|
|
|
|
# The default context prototype used by Context()
|
2004-07-14 12:41:57 -03:00
|
|
|
# Is mutable, so that new contexts can have different default values
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
DefaultContext = Context(
|
2004-07-03 09:26:21 -03:00
|
|
|
prec=28, rounding=ROUND_HALF_EVEN,
|
2004-07-10 11:14:37 -03:00
|
|
|
traps=[DivisionByZero, Overflow, InvalidOperation],
|
|
|
|
flags=[],
|
2004-07-01 08:01:35 -03:00
|
|
|
_rounding_decision=ALWAYS_ROUND,
|
2004-07-14 16:56:56 -03:00
|
|
|
Emax=999999999,
|
|
|
|
Emin=-999999999,
|
2004-07-05 02:36:39 -03:00
|
|
|
capitals=1
|
2004-07-01 08:01:35 -03:00
|
|
|
)
|
|
|
|
|
|
|
|
# Pre-made alternate contexts offered by the specification
|
|
|
|
# Don't change these; the user should be able to select these
|
|
|
|
# contexts and be able to reproduce results from other implementations
|
|
|
|
# of the spec.
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
BasicContext = Context(
|
2004-07-01 08:01:35 -03:00
|
|
|
prec=9, rounding=ROUND_HALF_UP,
|
2004-07-10 11:14:37 -03:00
|
|
|
traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow],
|
|
|
|
flags=[],
|
2004-07-01 08:01:35 -03:00
|
|
|
)
|
|
|
|
|
2004-07-03 10:48:56 -03:00
|
|
|
ExtendedContext = Context(
|
2004-07-03 09:26:21 -03:00
|
|
|
prec=9, rounding=ROUND_HALF_EVEN,
|
2004-07-10 11:14:37 -03:00
|
|
|
traps=[],
|
|
|
|
flags=[],
|
2004-07-01 08:01:35 -03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2004-07-03 07:02:28 -03:00
|
|
|
##### Useful Constants (internal use only) ####################
|
2004-07-01 08:01:35 -03:00
|
|
|
|
|
|
|
#Reusable defaults
|
|
|
|
Inf = Decimal('Inf')
|
|
|
|
negInf = Decimal('-Inf')
|
|
|
|
|
|
|
|
#Infsign[sign] is infinity w/ that sign
|
|
|
|
Infsign = (Inf, negInf)
|
|
|
|
|
|
|
|
NaN = Decimal('NaN')
|
|
|
|
|
|
|
|
|
|
|
|
##### crud for parsing strings #################################
|
|
|
|
import re
|
|
|
|
|
|
|
|
# There's an optional sign at the start, and an optional exponent
|
|
|
|
# at the end. The exponent has an optional sign and at least one
|
|
|
|
# digit. In between, must have either at least one digit followed
|
|
|
|
# by an optional fraction, or a decimal point followed by at least
|
|
|
|
# one digit. Yuck.
|
|
|
|
|
|
|
|
_parser = re.compile(r"""
|
|
|
|
# \s*
|
|
|
|
(?P<sign>[-+])?
|
|
|
|
(
|
|
|
|
(?P<int>\d+) (\. (?P<frac>\d*))?
|
|
|
|
|
|
|
|
|
\. (?P<onlyfrac>\d+)
|
|
|
|
)
|
|
|
|
([eE](?P<exp>[-+]? \d+))?
|
|
|
|
# \s*
|
|
|
|
$
|
|
|
|
""", re.VERBOSE).match #Uncomment the \s* to allow leading or trailing spaces.
|
|
|
|
|
|
|
|
del re
|
|
|
|
|
|
|
|
# return sign, n, p s.t. float string value == -1**sign * n * 10**p exactly
|
|
|
|
|
|
|
|
def _string2exact(s):
|
|
|
|
m = _parser(s)
|
|
|
|
if m is None:
|
|
|
|
raise ValueError("invalid literal for Decimal: %r" % s)
|
|
|
|
|
|
|
|
if m.group('sign') == "-":
|
|
|
|
sign = 1
|
|
|
|
else:
|
|
|
|
sign = 0
|
|
|
|
|
|
|
|
exp = m.group('exp')
|
|
|
|
if exp is None:
|
|
|
|
exp = 0
|
|
|
|
else:
|
|
|
|
exp = int(exp)
|
|
|
|
|
|
|
|
intpart = m.group('int')
|
|
|
|
if intpart is None:
|
|
|
|
intpart = ""
|
|
|
|
fracpart = m.group('onlyfrac')
|
|
|
|
else:
|
|
|
|
fracpart = m.group('frac')
|
|
|
|
if fracpart is None:
|
|
|
|
fracpart = ""
|
|
|
|
|
|
|
|
exp -= len(fracpart)
|
|
|
|
|
|
|
|
mantissa = intpart + fracpart
|
|
|
|
tmp = map(int, mantissa)
|
|
|
|
backup = tmp
|
|
|
|
while tmp and tmp[0] == 0:
|
|
|
|
del tmp[0]
|
|
|
|
|
|
|
|
# It's a zero
|
|
|
|
if not tmp:
|
|
|
|
if backup:
|
|
|
|
return (sign, tuple(backup), exp)
|
|
|
|
return (sign, (0,), exp)
|
|
|
|
mantissa = tuple(tmp)
|
|
|
|
|
|
|
|
return (sign, mantissa, exp)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import doctest, sys
|
|
|
|
doctest.testmod(sys.modules[__name__])
|