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.

classification
Title: Improve subprocess.Popen() documentation ("env" parameter)
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, roysmith
Priority: normal Keywords:

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:33adminsetgithub: 46885
2008-04-19 16:59:03georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg65633
2008-04-14 20:44:35roysmithcreate