From: Raymond Hettinger Date: Tue, 10 Mar 2009 04:49:21 +0000 (+0000) Subject: Add a version tag to the decimal module. X-Git-Tag: v2.7a1~1875 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=daeceb2de80047f25aedbf16bf40dc5d619e64dd;p=python Add a version tag to the decimal module. --- diff --git a/Lib/decimal.py b/Lib/decimal.py index dfc7043dde..1d12e87b13 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