autopep8 cleanup of Examples/test-suite/python
automated cleanup of python pep8 whitespace compliance
This commit is contained in:
parent
9086eb351c
commit
b77f3afafb
202 changed files with 3477 additions and 3382 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue