Examples: Unify string quoting in the Python sources
This commit is contained in:
parent
fa5f519bf9
commit
f88ba7c182
10 changed files with 21 additions and 21 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import sys
|
||||
sys.path.append('..')
|
||||
sys.path.append("..")
|
||||
import harness
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import sys
|
||||
sys.path.append('..')
|
||||
sys.path.append("..")
|
||||
import harness
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import sys
|
||||
sys.path.append('..')
|
||||
sys.path.append("..")
|
||||
import harness
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import sys
|
||||
sys.path.append('..')
|
||||
sys.path.append("..")
|
||||
import harness
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import sys
|
||||
sys.path.append('..')
|
||||
sys.path.append("..")
|
||||
import harness
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue