diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-08-26 19:31:47 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-08-26 19:31:47 (GMT) |
commit | cf26115651c4c5cfc92776fd7204d7a218241e88 (patch) | |
tree | feadaf2def9e0d5776bcc46a90b30909deb84d4f /Lib/decimal.py | |
parent | 298131a44896a4fec1ea829814ad52409d59aba5 (diff) | |
download | cpython-cf26115651c4c5cfc92776fd7204d7a218241e88.zip cpython-cf26115651c4c5cfc92776fd7204d7a218241e88.tar.gz cpython-cf26115651c4c5cfc92776fd7204d7a218241e88.tar.bz2 |
Introduce and check for MPD_VERSION_HEX for precise management of builds
with an external libmpdec.
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r-- | Lib/decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index e11f1a0..5544f4e 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -140,7 +140,7 @@ __all__ = [ __version__ = '1.70' # Highest version of the spec this complies with # See http://speleotrove.com/decimal/ -__libmpdec_version__ = "2.4.0" # compatible libmpdec version +__libmpdec_version__ = "2.4.1" # compatible libmpdec version import math as _math import numbers as _numbers |