[issue24888] FileNotFoundException raised by subprocess.call

2021-09-07 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the patch, DonnaDia! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue24888] FileNotFoundException raised by subprocess.call

2021-09-07 Thread miss-islington
miss-islington added the comment: New changeset 31be544721670516fa9700e088c022ff38b0c5fe by Miss Islington (bot) in branch '3.10': bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to start process (GH-28018)

[issue24888] FileNotFoundException raised by subprocess.call

2021-09-07 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 2363910662cda4dcf574da68b4633b55e5fc0f9c by Miss Islington (bot) in branch '3.9': bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to start process (GH-28018) (GH-28223)

[issue24888] FileNotFoundException raised by subprocess.call

2021-09-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +26646 pull_request: https://github.com/python/cpython/pull/28224 ___ Python tracker ___

[issue24888] FileNotFoundException raised by subprocess.call

2021-09-07 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +26645 pull_request: https://github.com/python/cpython/pull/28223 ___ Python tracker

[issue24888] FileNotFoundException raised by subprocess.call

2021-09-07 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 19a304ba990481f0381a5316096b6b3cf2dff381 by DonnaDia in branch 'main': bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to start process (GH-28018)

[issue24888] FileNotFoundException raised by subprocess.call

2021-08-29 Thread Padmashree Jha
Padmashree Jha added the comment: You have to add shell=True to execute a shell command. check_output is trying to find an executable. Try this -- nosy: +padmashreejha717 versions: -Python 3.4 ___ Python tracker

[issue24888] FileNotFoundException raised by subprocess.call

2021-08-28 Thread Diana
Change by Diana : -- keywords: +patch pull_requests: +26464 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28018 ___ Python tracker ___

[issue24888] FileNotFoundException raised by subprocess.call

2021-08-27 Thread Diana
Diana added the comment: Hi, I will work on this. I will create a pull request within 3 days. -- nosy: +DonnaDia ___ Python tracker ___

[issue24888] FileNotFoundException raised by subprocess.call

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: That said, the current wording does seem to imply that only CalledProcessErrors can be raised by this function so it might be worth clarifying that other exceptions can occur if the command could not run at all (without enumerating the precise exceptions).

[issue24888] FileNotFoundException raised by subprocess.call

2021-06-18 Thread Irit Katriel
Irit Katriel added the comment: The FileNotFoundException exception is coming from the Popen call, and the docs for subprocess.check_call already mention that it delegates to Popen. There are quite a few different exceptions that Popen could raise, so I think David's general comment is

[issue24888] FileNotFoundException raised by subprocess.call

2015-08-18 Thread Geoffrey Royer
Changes by Geoffrey Royer geoffrey.ro...@gmail.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24888 ___ ___

[issue24888] FileNotFoundException raised by subprocess.call

2015-08-18 Thread R. David Murray
R. David Murray added the comment: We don't in general document all the exceptions that can be raised by a piece of code. This could be an edge case, though. Let's see what others thing. -- nosy: +r.david.murray ___ Python tracker

[issue24888] FileNotFoundException raised by subprocess.call

2015-08-18 Thread R. David Murray
R. David Murray added the comment: think. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24888 ___ ___ Python-bugs-list mailing list