File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -5877,6 +5877,7 @@ cfunc_noargs(PyTypeObject *t, const char *name)
5877
5877
return NULL ;
5878
5878
}
5879
5879
5880
+ static int minalloc_is_set = 0 ;
5880
5881
5881
5882
static int
5882
5883
_decimal_exec (PyObject * m )
@@ -5899,7 +5900,12 @@ _decimal_exec(PyObject *m)
5899
5900
mpd_reallocfunc = PyMem_Realloc ;
5900
5901
mpd_callocfunc = mpd_callocfunc_em ;
5901
5902
mpd_free = PyMem_Free ;
5902
- mpd_setminalloc (_Py_DEC_MINALLOC );
5903
+
5904
+ /* Suppress the warning caused by multi-phase initialization */
5905
+ if (!minalloc_is_set ) {
5906
+ mpd_setminalloc (_Py_DEC_MINALLOC );
5907
+ minalloc_is_set = 1 ;
5908
+ }
5903
5909
5904
5910
decimal_state * state = get_module_state (m );
5905
5911
Original file line number Diff line number Diff line change @@ -166,6 +166,9 @@ Python/pylifecycle.c fatal_error reentrant -
166
166
# explicitly protected, internal-only
167
167
Modules/_xxinterpchannelsmodule.c - _globals -
168
168
169
+ # set once during module init
170
+ Modules/_decimal/_decimal.c - minalloc_is_set -
171
+
169
172
170
173
# #################################
171
174
# # not significant
You can’t perform that action at this time.
0 commit comments