New submission from Kaushik G :
a call of the form `subprocess.run([x, y, z])` where one of the elements is a
`pathlib.Pat`h fails on windows because the path is not converted to a string
as it should. This works fine (as expected) on macOS and Linux.
A typical error message is:
`TypeError
Kaushik G added the comment:
Thank you for your response.
There are two concerns I have here.
1. Python's promise of being straightforward. In MOST cases pathlib.Path
objects do the right thing, casting to a string such that pathlib.Path is a
drop in replacement. This excepti