Skip to content

Commit 3f5fc8b

Browse files
author
Git for Windows Build Agent
committed
Update 5 packages
diffutils (3.11-1 -> 3.12-1) gdbm (1.24-1 -> 1.25-1) libgdbm (1.24-1 -> 1.25-1) mingw-w64-i686-python (3.12.9-5 -> 3.12.10-1) mingw-w64-x86_64-python (3.12.9-5 -> 3.12.10-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 2ca01d4 commit 3f5fc8b

File tree

512 files changed

+30197
-36373
lines changed

Some content is hidden

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

512 files changed

+30197
-36373
lines changed

mingw32/bin/libpython3.12.dll

3 KB
Binary file not shown.

mingw32/bin/libpython3.dll

0 Bytes
Binary file not shown.

mingw32/bin/python.exe

0 Bytes
Binary file not shown.

mingw32/bin/python3.12.exe

0 Bytes
Binary file not shown.

mingw32/bin/python3.exe

0 Bytes
Binary file not shown.

mingw32/bin/python3w.exe

0 Bytes
Binary file not shown.

mingw32/bin/pythonw.exe

0 Bytes
Binary file not shown.

mingw32/include/python3.12/cpython/pythread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ PyAPI_FUNC(int) _PyThread_at_fork_reinit(PyThread_type_lock *lock);
2121
*/
2222
# define NATIVE_TSS_KEY_T unsigned long
2323
#elif defined(HAVE_PTHREAD_STUBS)
24-
# include "cpython/pthread_stubs.h"
24+
# include "pthread_stubs.h"
2525
# define NATIVE_TSS_KEY_T pthread_key_t
2626
#else
2727
# error "Require native threads. See https://bugs.python.org/issue31370"

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@
4343
#define Py_HAVE_CONDVAR
4444

4545
/* include windows if it hasn't been done before */
46-
#define WIN32_LEAN_AND_MEAN
47-
#include <windows.h>
46+
#ifndef WIN32_LEAN_AND_MEAN
47+
# define WIN32_LEAN_AND_MEAN
48+
#endif
49+
#include <windows.h> // CRITICAL_SECTION
4850
/* winpthreads are involved via windows header, so need undef _POSIX_THREADS after header include */
4951
#if defined(_POSIX_THREADS)
5052
#undef _POSIX_THREADS

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ extern "C" {
88
# error "this header requires Py_BUILD_CORE define"
99
#endif
1010

11+
PyAPI_FUNC(int) _PySys_GetOptionalAttr(PyObject *, PyObject **);
12+
PyAPI_FUNC(int) _PySys_GetOptionalAttrString(const char *, PyObject **);
13+
PyAPI_FUNC(PyObject *) _PySys_GetRequiredAttr(PyObject *);
14+
PyAPI_FUNC(PyObject *) _PySys_GetRequiredAttrString(const char *);
15+
1116
PyAPI_FUNC(int) _PySys_Audit(
1217
PyThreadState *tstate,
1318
const char *event,

0 commit comments

Comments
 (0)