diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f7b16a05ef9..2a1efa63a90 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -300,7 +300,8 @@ convertenviron() if (v == NULL) continue; *p = '\0'; - (void) PyDict_SetItemString(d, *e, v); + if (PyDict_GetItemString(d, *e) == NULL) + (void) PyDict_SetItemString(d, *e, v); *p = '='; Py_DECREF(v); }