autopep8 cleanup of Examples/test-suite/python

automated cleanup of python pep8 whitespace compliance
This commit is contained in:
Jon Schlueter 2015-05-06 08:27:35 -04:00 committed by Jon Schlueter
commit b77f3afafb
202 changed files with 3477 additions and 3382 deletions

View file

@ -1,20 +1,22 @@
import director_stl
class MyFoo(director_stl.Foo):
def ping(self, s):
return "MyFoo::ping():" + s
def pident(self, arg):
return arg
def vident(self,v):
return v
def ping(self, s):
return "MyFoo::ping():" + s
def vidents(self,v):
return v
def pident(self, arg):
return arg
def vsecond(self,v1,v2):
return v2
def vident(self, v):
return v
def vidents(self, v):
return v
def vsecond(self, v1, v2):
return v2
a = MyFoo()
@ -22,18 +24,18 @@ a = MyFoo()
a.tping("hello")
a.tpong("hello")
p = (1,2)
p = (1, 2)
a.pident(p)
v = (3,4)
v = (3, 4)
a.vident(v)
a.tpident(p)
a.tvident(v)
v1 = (3,4)
v2 = (5,6)
a.tvsecond(v1,v2)
v1 = (3, 4)
v2 = (5, 6)
a.tvsecond(v1, v2)
vs=("hi", "hello")
vs = ("hi", "hello")
vs
a.tvidents(vs)