Skip to content

Commit dba9744

Browse files
author
Git for Windows Build Agent
committed
Update 4 packages
mingw-w64-i686-python (3.12.7-3 -> 3.12.8-1) mingw-w64-x86_64-python (3.12.7-3 -> 3.12.8-1) msys2-runtime (3.5.4-5 -> 3.5.5-1) msys2-runtime-devel (3.5.4-5 -> 3.5.5-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 72b90dc commit dba9744

File tree

591 files changed

+10747
-2464
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

591 files changed

+10747
-2464
lines changed

mingw32/bin/libpython3.12.dll

3.53 KB
Binary file not shown.

mingw32/bin/libpython3.dll

0 Bytes
Binary file not shown.

mingw32/bin/python.exe

519 Bytes
Binary file not shown.

mingw32/bin/python3.12.exe

519 Bytes
Binary file not shown.

mingw32/bin/python3.exe

519 Bytes
Binary file not shown.

mingw32/bin/python3w.exe

519 Bytes
Binary file not shown.

mingw32/bin/pythonw.exe

519 Bytes
Binary file not shown.

mingw32/include/python3.12/internal/pycore_object_state.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ struct _py_object_state {
2424
* together via the _ob_prev and _ob_next members of a PyObject, which
2525
* exist only in a Py_TRACE_REFS build.
2626
*/
27-
PyObject refchain;
27+
PyObject *refchain;
28+
/* In most cases, refchain points to _refchain_obj.
29+
* In sub-interpreters that share objmalloc state with the main interp,
30+
* refchain points to the main interpreter's _refchain_obj, and their own
31+
* _refchain_obj is unused.
32+
*/
33+
PyObject _refchain_obj;
2834
#endif
2935
int _not_used;
3036
};

mingw32/include/python3.12/internal/pycore_runtime_init.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,8 @@ extern PyTypeObject _PyExc_MemoryError;
132132
.context_ver = 1, \
133133
}
134134

135-
#ifdef Py_TRACE_REFS
136-
# define _py_object_state_INIT(INTERP) \
137-
{ \
138-
.refchain = {&INTERP.object_state.refchain, &INTERP.object_state.refchain}, \
139-
}
140-
#else
141135
# define _py_object_state_INIT(INTERP) \
142136
{ 0 }
143-
#endif
144137

145138

146139
// global objects

mingw32/include/python3.12/internal/pycore_typeobject.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ PyAPI_DATA(PyTypeObject) _PyBufferWrapper_Type;
143143
PyObject *
144144
_PySuper_Lookup(PyTypeObject *su_type, PyObject *su_obj, PyObject *name, int *meth_found);
145145

146+
extern int _PyType_AddMethod(PyTypeObject *, PyMethodDef *);
147+
146148
#ifdef __cplusplus
147149
}
148150
#endif

0 commit comments

Comments
 (0)