mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#16112: platform.architecture does not correctly escape argument to /usr/bin/file. Use 'communicate()'
This commit is contained in:
parent
45c0766c02
commit
69e7c9b1fd
1 changed files with 3 additions and 4 deletions
|
@ -1045,13 +1045,12 @@ def _syscmd_file(target,default=''):
|
||||||
return default
|
return default
|
||||||
target = _follow_symlinks(target)
|
target = _follow_symlinks(target)
|
||||||
try:
|
try:
|
||||||
with open(DEV_NULL) as dev_null:
|
|
||||||
proc = subprocess.Popen(['file', '-b', '--', target],
|
proc = subprocess.Popen(['file', '-b', '--', target],
|
||||||
stdout=subprocess.PIPE, stderr=dev_null)
|
stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)
|
||||||
|
|
||||||
except (AttributeError,os.error):
|
except (AttributeError,os.error):
|
||||||
return default
|
return default
|
||||||
output = proc.stdout.read()
|
output = proc.communicate()[0]
|
||||||
rc = proc.wait()
|
rc = proc.wait()
|
||||||
if not output or rc:
|
if not output or rc:
|
||||||
return default
|
return default
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue