]> granicus.if.org Git - python/commitdiff
Add a version tag to the decimal module.
authorRaymond Hettinger <python@rcn.com>
Tue, 10 Mar 2009 04:49:21 +0000 (04:49 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 10 Mar 2009 04:49:21 +0000 (04:49 +0000)
Lib/decimal.py

index dfc7043dde0f0de80e0c2882424685446038854d..1d12e87b138baa58d932b3ce501b8d84ab2f55a5 100644 (file)
@@ -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