Skip to content

Commit 92039ce

Browse files
committed
requested changes
1 parent 5c1d13b commit 92039ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Make :mod:`array` module safe under :term:`free threading`.
1+
Make the :mod:`array` module safe under :term:`free threading`.

Modules/arraymodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ typedef struct {
7575
PyObject *str_iter;
7676
} array_state;
7777

78-
static Py_ssize_t
78+
static inline Py_ssize_t
7979
PyArray_GET_SIZE(PyObject *op) {
8080
arrayobject *ao = (arrayobject *)op;
8181
#ifdef Py_GIL_DISABLED

0 commit comments

Comments
 (0)