Replace os.system() with subprocess.check_call() #53210

Closed
opened 2017-10-31 09:34:02 +01:00 by Lawrence D'Oliveiro · 10 comments

Change all instances of os.system() that do not need to go through the shell to use subprocess.check_call() instead. Not only does this save a process creation, it is also safer, with less chance of being tripped up by filenames with odd characters in them.

ldo-use-subprocess-20171031.patch

Change all instances of `os.system()` that do not need to go through the shell to use `subprocess.check_call()` instead. Not only does this save a process creation, it is also safer, with less chance of being tripped up by filenames with odd characters in them. [ldo-use-subprocess-20171031.patch](https://archive.blender.org/developer/F1079096/ldo-use-subprocess-20171031.patch)

Changed status to: 'Open'

Changed status to: 'Open'

Added subscriber: @ldo

Added subscriber: @ldo

Added subscriber: @mont29

Added subscriber: @mont29

Changed status from 'Open' to: 'Archived'

Changed status from 'Open' to: 'Archived'
Bastien Montagne self-assigned this 2017-10-31 11:35:04 +01:00

Thanks for the patch, but there are two problems here:

  • First, cleanup patches are not usually that easy to handle, because they tend to touch several, totally unrelated areas (like this one, even affecting buildbot scripts), so it's complicated to get several maintainers to review and test it. Further more, as 'cleanup' says, it does not really adds any new feature, nor fix any real issue, it’s just 'nice improvement to have', but… finding time to handle this is a bit difficult tbh.
  • Secondly, subprocess.check_call() & co are not latest recommended stuff, since py3.5 you have subprocess.run() which is new recommended high-level API to be used.

Also, please create a differential, it’s correct way to submit patches now. :)

We appreciate the effort, but am going to close that task, if you really think getting rid of os.system() calls is that important please resubmit to correct place with latest API usage, and avoid mixing totally different areas of code base in the same diff. ;)

Thanks for the patch, but there are two problems here: * First, cleanup patches are not usually that easy to handle, because they tend to touch several, totally unrelated areas (like this one, even affecting buildbot scripts), so it's complicated to get several maintainers to review and test it. Further more, as 'cleanup' says, it does not really adds any new feature, nor fix any real issue, it’s just 'nice improvement to have', but… finding time to handle this is a bit difficult tbh. * Secondly, `subprocess.check_call()` & co are not latest recommended stuff, since py3.5 you have `subprocess.run()` which is new recommended high-level API to be used. Also, please [create a differential](https://developer.blender.org/differential/diff/create/), it’s correct way to submit patches now. :) We appreciate the effort, but am going to close that task, if you really think getting rid of `os.system()` calls is that important please resubmit to correct place with latest API usage, and avoid mixing totally different areas of code base in the same diff. ;)

subprocess.run() was not appropriate for any of them. It returns an object for separate extraction of output, status etc, which is not needed in any of the cases I replaced.

`subprocess.run()` was not appropriate for any of them. It returns an object for separate extraction of output, status etc, which is not needed in any of the cases I replaced.
Updated patch: [ldo-use-subprocess-20171217.patch](https://archive.blender.org/developer/F1427442/ldo-use-subprocess-20171217.patch)
Member

Added subscriber: @LazyDodo

Added subscriber: @LazyDodo
Member

it's still preferred you post it as a differential

it's still preferred you post it as a [differential ](https://developer.blender.org/differential/diff/create/)

OK D2967

OK [D2967](https://archive.blender.org/developer/D2967)
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#53210
No description provided.