Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
update comment
  • Loading branch information
picnixz committed Jan 1, 2026
commit fefb95a935dc3f0ef27ef8840ee0fecb49a5d6a2
4 changes: 2 additions & 2 deletions Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -7317,8 +7317,8 @@ parse_envlist(PyObject* env, Py_ssize_t *envc_ptr)
}

for (pos = 0; pos < i; pos++) {
// The 'key' and 'val' must be strong references because
// of possible side-effects by PyUnicode_FSConverter().
// The 'key' and 'val' must be strong references because of
// possible side-effects by PyUnicode_FS{Converter,Decoder}().
key = PyList_GetItemRef(keys, pos);
if (key == NULL) {
goto error;
Expand Down
Loading