diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-05 03:31:31 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-05 03:31:31 (GMT) |
commit | cb95996fdc6956365642dd42f86dfb380f923fa5 (patch) | |
tree | eec60235147528d46ec346d1a731b678646141f4 /Lib | |
parent | e7f90375b175ed9e610a1de3b5c910f9271375ad (diff) | |
parent | 685fffa8f427b3a768b232170752565d58c32112 (diff) | |
download | cpython-cb95996fdc6956365642dd42f86dfb380f923fa5.zip cpython-cb95996fdc6956365642dd42f86dfb380f923fa5.tar.gz cpython-cb95996fdc6956365642dd42f86dfb380f923fa5.tar.bz2 |
MERGE: #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/platform.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index dd318fe..769fe88 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -924,13 +924,12 @@ def _syscmd_file(target,default=''): return default target = _follow_symlinks(target) try: - with open(DEV_NULL) as dev_null: - proc = subprocess.Popen(['file', '-b', '--', target], - stdout=subprocess.PIPE, stderr=dev_null) + proc = subprocess.Popen(['file', target], + stdout=subprocess.PIPE, stderr=subprocess.STDOUT) except (AttributeError,os.error): return default - output = proc.stdout.read() + output = proc.communicate()[0].decode('latin-1') rc = proc.wait() if not output or rc: return default |