summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2014-08-26 21:31:47 +0200
committerStefan Krah <skrah@bytereef.org>2014-08-26 21:31:47 +0200
commit231c5e35c00fce6f898a69d056f8712613c6ed79 (patch)
tree068a0f524edfba3f02db92eafd52d25234d06c2a /Lib/decimal.py
parent03f5b7b27fc9955bc06ada46fe67e3ea9bb5990d (diff)
downloadcpython-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.py2
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