diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-08-26 21:31:47 +0200 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-08-26 21:31:47 +0200 |
commit | 231c5e35c00fce6f898a69d056f8712613c6ed79 (patch) | |
tree | 068a0f524edfba3f02db92eafd52d25234d06c2a /Lib/decimal.py | |
parent | 03f5b7b27fc9955bc06ada46fe67e3ea9bb5990d (diff) | |
download | cpython-231c5e35c00fce6f898a69d056f8712613c6ed79.tar.gz |
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 e11f1a0082..5544f4e34a 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 |