Replace setenv with putenv. Reported by Dietmar Schwertberger.

This commit is contained in:
Martin v. Löwis 2001-03-07 09:08:11 +00:00
parent a90f438d4a
commit f115a0826d
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class _Environ:
else:
raise KeyError
def __setitem__(self, key, item):
riscos.setenv(key, item)
riscos.putenv(key, item)
def __delitem__(self, key):
riscos.delenv(key)
def clear(self):