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 gregory.p.smith
Recipients christian.heimes, gregory.p.smith, jafo, loewis, majid
Date 2009-05-03.20:32:28
SpamBayes Score 6.2572835e-06
Marked as misclassified No
Message-id <1241382750.27.0.559463282842.issue1684@psf.upfronthosting.co.za>
In-reply-to
Content
yes the reporter is correct.

the suggested chdir happens in the subprocess.

however, that only works on posix systems:

windows currently uses popen2/3.  (see issue1535504 for another issue
with that).  switching to subprocess and passing in cwd would fix it.

and non-posix non-windows (what is that?) uses execfile to run the
script in process.  we can't fix that one, nor should be bother.  what
is a non-posix non-windows system that needs to run a cgi http server??
History
Date User Action Args
2009-05-03 20:32:30gregory.p.smithsetrecipients: + gregory.p.smith, loewis, jafo, majid, christian.heimes
2009-05-03 20:32:30gregory.p.smithsetmessageid: <1241382750.27.0.559463282842.issue1684@psf.upfronthosting.co.za>
2009-05-03 20:32:29gregory.p.smithlinkissue1684 messages
2009-05-03 20:32:28gregory.p.smithcreate