Skip to content

Commit b1a9b58

Browse files
authored
Update Objects/moduleobject.c
1 parent 443e0af commit b1a9b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/moduleobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ PyModuleDef_Init(PyModuleDef* def)
8989
// - 0b1111 (e.g. from UINT_MAX)
9090
// (The values may change at runtime as the PyModuleDef is used, but
9191
// PyModuleDef_Init is required before using the def as a Python object,
92-
// so this check at least once with the initial values.
92+
// so we check at least once with the initial values.
9393
uint16_t flags = ((PyObject*)def)->ob_flags;
9494
uint16_t bits = _Py_STATICALLY_ALLOCATED_FLAG | _Py_LEGACY_ABI_CHECK_FLAG;
9595
if ((flags & bits) != _Py_STATICALLY_ALLOCATED_FLAG) {

0 commit comments

Comments
 (0)