diff options
| author | Claudiu Popa <pcmanticore@gmail.com> | 2019-09-25 08:32:43 +0200 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-09-25 08:32:43 +0200 |
| commit | d1fb604acafd44001f676eb88d19dec162cbe51b (patch) | |
| tree | 0fffc70d905e9ee6d0feb6d01babdf4451b34dbb /astroid | |
| parent | ff97852076de8c70b6af749fd129938c55e9786b (diff) | |
| download | astroid-git-d1fb604acafd44001f676eb88d19dec162cbe51b.tar.gz | |
Proper signature for subprocess.check_output. Close #PyCQA/3118
Diffstat (limited to 'astroid')
| -rw-r--r-- | astroid/brain/brain_subprocess.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/astroid/brain/brain_subprocess.py b/astroid/brain/brain_subprocess.py index 5c604918..e6672ef0 100644 --- a/astroid/brain/brain_subprocess.py +++ b/astroid/brain/brain_subprocess.py @@ -63,8 +63,11 @@ def _subprocess_transform(): stdin=None, stderr=None, shell=False, + cwd=None, + encoding=None, + errors=None, universal_newlines=False, - timeout=None + timeout=None, ): if universal_newlines: |
