-
decimal: 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
and IEEE standard 854-1987:
www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html
Decimal floating point has finite precision with arbitrarily large bounds.
-
fixedpoint: FixedPoint objects support decimal arithmetic with a fixed number of
digits (called the object's precision) after the decimal point.
-
shellwords: shellwords.py
Parse a string into words like a (POSIX) shell does.
|