assigning to os.environ does not clear the environment

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください

Metadata

ID: python-best-practices/os-environ-no-assign

Language: Python

Severity: Error

Category: Error Prone

Description

Assigning to os.environ does not clear the environment. To clear the environment, use os.environ.clear()

Non-Compliant Code Examples

import os

os.environ = {}  # use os.environ.clear

Compliant Code Examples

import os

os.environ.clear()