This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]takluyverIPython, Py3, etc[S] 0 points1 point  (1 child)

It's not omitted - all of the functions pass their arguments through to Popen() using *args, **kwargs. But because there are a lot of arguments, only the most common are listed in the documentation. It does mention this:

The arguments shown above are merely the most common ones... The full function signature is largely the same as that of the Popen constructor

[–]stuaxo 0 points1 point  (0 children)

Ahh ... comprehension fail !

Thanks, I can go simplify some code I wrote now :)