This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author iritkatriel
Recipients astrosticks, iritkatriel
Date 2022-01-30.00:23:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643502184.93.0.855076082087.issue44264@roundup.psfhosted.org>
In-reply-to
Content
It's not necessarily true that the environment variable is not set just because the key is not in os.environ. In this example my del did not change the environment variable:

>>> import os
>>> os.environ['TMPDIR']
'/var/folders/kf/0v7kz3ps62dg11v9rq0sz35m0000gn/T/'
>>> del os.environ['TMPDIR']
>>> os.environ['TMPDIR']
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<frozen os>", line 678, in __getitem__
KeyError: 'TMPDIR'
History
Date User Action Args
2022-01-30 00:23:04iritkatrielsetrecipients: + iritkatriel, astrosticks
2022-01-30 00:23:04iritkatrielsetmessageid: <1643502184.93.0.855076082087.issue44264@roundup.psfhosted.org>
2022-01-30 00:23:04iritkatriellinkissue44264 messages
2022-01-30 00:23:04iritkatrielcreate