Issue 2633: Improve subprocess.Popen() documentation ("env" parameter) (original) (raw)

Issue2633

Created on 2008-04-14 20:44 by roysmith, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg65480 - (view) Author: Roy Smith (roysmith) Date: 2008-04-14 20:44
http://docs.python.org/lib/node528.html (17.1.1 Using the subprocess Module) describes the "env" parameter thusly: If env is not None, it defines the environment variables for the new process. This is too vague to be useful. If it's not None, what should it be? A dictionary in the style of os.environ? A sequence of name/value pairs? A string with some sort of delimiter between each entry?
msg65633 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-04-19 16:59
Fixed in r62391.
History
Date User Action Args
2022-04-11 14:56:33 admin set github: 46885
2008-04-19 16:59:03 georg.brandl set status: open -> closedresolution: fixedmessages: +
2008-04-14 20:44:35 roysmith create