summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/os.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 85924d0..23ce987 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -201,6 +201,11 @@ process and user.
``'surrogateescape'`` error handler. Use :data:`environb` if you would like
to use a different encoding.
+ On Windows, the keys are converted to uppercase. This also applies when
+ getting, setting, or deleting an item. For example,
+ ``environ['monty'] = 'python'`` maps the key ``'MONTY'`` to the value
+ ``'python'``.
+
.. note::
Calling :func:`putenv` directly does not change :data:`os.environ`, so it's better