From 900df71900f78de07579b606f0c7f6788e955ad9 Mon Sep 17 00:00:00 2001 From: "raymond.hettinger" Date: Tue, 10 Mar 2009 04:49:21 +0000 Subject: [PATCH] Add a version tag to the decimal module. git-svn-id: http://svn.python.org/projects/python/trunk@70293 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Lib/decimal.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.11.4.GIT