diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-30 05:56:40 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-30 05:56:40 (GMT) |
commit | 1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19 (patch) | |
tree | 0575e38da29c8d788fe38568886b11cb19d6eb99 /Lib/os.py | |
parent | 003047a5f2e1566f70dc2f001c0f43e8059c02e3 (diff) | |
download | cpython-1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19.zip cpython-1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19.tar.gz cpython-1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -362,7 +362,7 @@ else: import UserDict # Fake unsetenv() for Windows - # not sure about os2 and dos here but + # not sure about os2 and dos here but # I'm guessing they are the same. if name in ('os2', 'nt', 'dos'): @@ -421,7 +421,7 @@ else: def __delitem__(self, key): unsetenv(key) del self.data[key] - + environ = _Environ(environ) |