diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-10 04:49:21 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-10 04:49:21 (GMT) |
commit | daeceb2de80047f25aedbf16bf40dc5d619e64dd (patch) | |
tree | 0cd638a90d2a9d730f101f479d78f0cb31c84359 /Lib/decimal.py | |
parent | eecd1dc6e076f517539ecb655bf35da3754f6237 (diff) | |
download | cpython-daeceb2de80047f25aedbf16bf40dc5d619e64dd.zip cpython-daeceb2de80047f25aedbf16bf40dc5d619e64dd.tar.gz cpython-daeceb2de80047f25aedbf16bf40dc5d619e64dd.tar.bz2 |
Add a version tag to the decimal module.
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r-- | Lib/decimal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index dfc7043..1d12e87 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -134,6 +134,8 @@ __all__ = [ 'setcontext', 'getcontext', 'localcontext' ] +__version__ = '1.68' # Highest version of the spec this complies with + import copy as _copy import math as _math import numbers as _numbers |