[issue18161] call fchdir if subprocess.Popen(cwd=integer|fileobject)

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue18161] call fchdir if subprocess.Popen(cwd=integer|fileobject)

2015-11-29 Thread Марк Коренберг
Марк Коренберг added the comment: Do not understand what should be done in order to fix that... It will be nice if I can create pull request by myself -- ___ Python tracker ___

[issue18161] call fchdir if subprocess.Popen(cwd=integer|fileobject)

2014-10-07 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue18161] call fchdir if subprocess.Popen(cwd=integer|fileobject)

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: mmarkk we're sorry about the delay in getting back to you. Who is best placed to reply to this enhancement request, the only name on the experts list is inactive? -- nosy: +BreamoreBoy versions: -Python 3.3, Python 3.4 ___

[issue18161] call fchdir if subprocess.Popen(cwd=integer|fileobject)

2013-06-07 Thread Марк Коренберг
New submission from Марк Коренберг: Today, subprocess allow to change directory only by using its name. What if I have only file descriptor referring to that dir? It will be nice if such feture will be implemented. Now, I use preexc_fn to call os.fchdir() by hand. We should handle close_fds *