We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 443e0af commit b1a9b58Copy full SHA for b1a9b58
Objects/moduleobject.c
@@ -89,7 +89,7 @@ PyModuleDef_Init(PyModuleDef* def)
89
// - 0b1111 (e.g. from UINT_MAX)
90
// (The values may change at runtime as the PyModuleDef is used, but
91
// PyModuleDef_Init is required before using the def as a Python object,
92
- // so this check at least once with the initial values.
+ // so we check at least once with the initial values.
93
uint16_t flags = ((PyObject*)def)->ob_flags;
94
uint16_t bits = _Py_STATICALLY_ALLOCATED_FLAG | _Py_LEGACY_ABI_CHECK_FLAG;
95
if ((flags & bits) != _Py_STATICALLY_ALLOCATED_FLAG) {
0 commit comments