summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-21 03:43:15 +0000
committerRaymond Hettinger <python@rcn.com>2009-04-21 03:43:15 +0000
commitc6bbb295d31801bbf4cf03fb0dca5eebb4dcee22 (patch)
tree4e1fd79a55ab28f59afa86c31aa0461ee3defa21 /Lib/decimal.py
parent1fa9d65ed5ec15a88302650da35e2fdf231eed8f (diff)
downloadcpython-c6bbb295d31801bbf4cf03fb0dca5eebb4dcee22.tar.gz
Update links and version info.
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index af29e68c2e..aac90d7e5c 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -17,7 +17,7 @@
This is an implementation of decimal floating point arithmetic based on
the General Decimal Arithmetic Specification:
- www2.hursley.ibm.com/decimal/decarith.html
+ http://speleotrove.com/decimal/decarith.html
and IEEE standard 854-1987:
@@ -130,6 +130,8 @@ __all__ = [
'setcontext', 'getcontext', 'localcontext'
]
+__version__ = '1.70' # Highest version of the spec this complies with
+
import copy as _copy
import math as _math
import numbers as _numbers