[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread R. David Murray
R. David Murray added the comment: Note that Benjamin's commit only addresses the posix side. Amaury, do you want to fix the windows side? -- nosy: +r.david.murray ___ Python tracker _

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: r86593 -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread endian
Changes by endian : Removed file: http://bugs.python.org/file19687/issue4925.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread endian
Changes by endian : Added file: http://bugs.python.org/file19688/issue4925.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread endian
Changes by endian : Added file: http://bugs.python.org/file19687/issue4925.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread endian
Changes by endian : Removed file: http://bugs.python.org/file19683/issue4925.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread endian
Changes by endian : -- keywords: +patch Added file: http://bugs.python.org/file19683/issue4925.diff ___ Python tracker ___ ___ Python-b

[issue4925] Improve error message of subprocess when cannot open

2010-11-20 Thread endian
endian added the comment: I'm working this for platforms that use OSError. #pythonbugday2010 #myfirstpatch -- nosy: +endian ___ Python tracker ___ ___

[issue4925] Improve error message of subprocess when cannot open

2010-06-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: in PC/_subprocess.c, it should be enough to use PyErr_SetFromWindowsErrWithFilename() instead of PyErr_SetFromWindowsErr() -- keywords: +easy nosy: +amaury.forgeotdarc ___ Python tracker

[issue4925] Improve error message of subprocess when cannot open

2010-06-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: Improved error messages are feature requests because 1) there is no particular guarantee in the doc and 2) changes can break existing code, so should only happen in an new x.y version. When reporting behavior, it is helpful to give *minimal* code that will r