File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Modules/_decimal/libmpdec Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 148
148
__name__ = 'decimal' # For pickling
149
149
__version__ = '1.70' # Highest version of the spec this complies with
150
150
# See http://speleotrove.com/decimal/
151
- __libmpdec_version__ = "2.4.1 " # compatible libmpdec version
151
+ __libmpdec_version__ = "2.4.2 " # compatible libmpdec version
152
152
153
153
import math as _math
154
154
import numbers as _numbers
Original file line number Diff line number Diff line change @@ -4206,7 +4206,6 @@ def test_module_attributes(self):
4206
4206
self .assertTrue (P .HAVE_THREADS is True or P .HAVE_THREADS is False )
4207
4207
4208
4208
self .assertEqual (C .__version__ , P .__version__ )
4209
- self .assertEqual (C .__libmpdec_version__ , P .__libmpdec_version__ )
4210
4209
4211
4210
self .assertEqual (dir (C ), dir (P ))
4212
4211
Original file line number Diff line number Diff line change @@ -108,9 +108,9 @@ MPD_PRAGMA(MPD_HIDE_SYMBOLS_START)
108
108
109
109
#define MPD_MAJOR_VERSION 2
110
110
#define MPD_MINOR_VERSION 4
111
- #define MPD_MICRO_VERSION 1
111
+ #define MPD_MICRO_VERSION 2
112
112
113
- #define MPD_VERSION "2.4.1 "
113
+ #define MPD_VERSION "2.4.2 "
114
114
115
115
#define MPD_VERSION_HEX ((MPD_MAJOR_VERSION << 24) | \
116
116
(MPD_MINOR_VERSION << 16) | \
You can’t perform that action at this time.
0 commit comments