Codebase list python-procrunner / c765276
Remove Python <3.7 crutch Markus Gerstel 2 years ago
1 changed file(s) with 0 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
382382 command = tuple(_path_resolve(part) for part in command)
383383 if win32resolve and sys.platform == "win32":
384384 command = _windows_resolve(command)
385 if working_directory and sys.version_info < (3, 7):
386 working_directory = os.fspath(working_directory)
387385
388386 p = subprocess.Popen(
389387 command,