Examples: Unify string quoting in the Python sources

This commit is contained in:
Dmitry D. Chernov 2019-07-14 14:12:23 +10:00
commit f88ba7c182
10 changed files with 21 additions and 21 deletions

View file

@ -1,5 +1,5 @@
import sys
sys.path.append('..')
sys.path.append("..")
import harness

View file

@ -1,5 +1,5 @@
import sys
sys.path.append('..')
sys.path.append("..")
import harness

View file

@ -17,16 +17,16 @@ def run(proc):
except IndexError:
proc = Popen(
[sys.executable, 'runme.py', 'Simple_baseline'], stdout=PIPE)
[sys.executable, "runme.py", "Simple_baseline"], stdout=PIPE)
(stdout, stderr) = proc.communicate()
print stdout
proc = Popen(
[sys.executable, 'runme.py', 'Simple_optimized'], stdout=PIPE)
[sys.executable, "runme.py", "Simple_optimized"], stdout=PIPE)
(stdout, stderr) = proc.communicate()
print stdout
proc = Popen(
[sys.executable, 'runme.py', 'Simple_builtin'], stdout=PIPE)
[sys.executable, "runme.py", "Simple_builtin"], stdout=PIPE)
(stdout, stderr) = proc.communicate()
print stdout

View file

@ -1,5 +1,5 @@
import sys
sys.path.append('..')
sys.path.append("..")
import harness

View file

@ -1,5 +1,5 @@
import sys
sys.path.append('..')
sys.path.append("..")
import harness

View file

@ -1,5 +1,5 @@
import sys
sys.path.append('..')
sys.path.append("..")
import harness