[issue1602133] non-framework python fails to define os.environ properly

2011-07-26 Thread Dan Colish
Dan Colish added the comment: I can also confirm this patch is required to build py2cairo on OSX with Python2.7.2 when --enable-framework is not used. -- nosy: +dcolish ___ Python tracker <http://bugs.python.org/issue1602

[issue14242] Make subprocess.Popen aware of $SHELL

2012-03-09 Thread Dan Colish
New submission from Dan Colish : The hardcoding of /bin/sh in the Popen _execute_child method can be a point of frustration when so many users are used to their chosen environment shell. The module can easily support the re-use of the defined $SHELL variable. I've attached a patch which