From: Victor Stinner Date: Sun, 25 Apr 2010 21:23:29 +0000 (+0000) Subject: Blocked revisions 80166,80189,80288 via svnmerge X-Git-Tag: v2.6.6rc1~403 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=212067b93cf0112bfc67cf48a9b479e6fab84c8e;p=python Blocked revisions 80166,80189,80288 via svnmerge ........ r80166 | victor.stinner | 2010-04-18 11:07:49 +0200 (dim., 18 avril 2010) | 7 lines platform: use subprocess.Popen() instead of os.popen() in _syscmd_file() * Popen() avoids ugly shell escape: target.replace('"', '\\"') * Use proc.communicate() instead of f.stdout.read() * Get output from stdout by splitting with ": " instead of splitting by spaces to support filename with spaces ........ r80189 | victor.stinner | 2010-04-18 20:22:25 +0200 (dim., 18 avril 2010) | 1 line Revert r80166 (and r80171), restore Lib/platform.py. subprocess cannot be used in platform.py ........ r80288 | victor.stinner | 2010-04-21 00:28:31 +0200 (mer., 21 avril 2010) | 2 lines Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm ........ ---