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,52 +1,52 @@
|
|||
from global_functions import *
|
||||
|
||||
|
||||
def check(a, b):
|
||||
if a != b:
|
||||
raise RuntimeError("Failed: " + str(a) + " != " + str(b))
|
||||
if a != b:
|
||||
raise RuntimeError("Failed: " + str(a) + " != " + str(b))
|
||||
global_void()
|
||||
check(global_one(1), 1)
|
||||
check(global_two(2, 2), 4)
|
||||
|
||||
fail = True
|
||||
try:
|
||||
global_void(1)
|
||||
global_void(1)
|
||||
except TypeError, e:
|
||||
fail = False
|
||||
fail = False
|
||||
if fail:
|
||||
raise RuntimeError("argument count check failed")
|
||||
raise RuntimeError("argument count check failed")
|
||||
|
||||
fail = True
|
||||
try:
|
||||
global_one()
|
||||
global_one()
|
||||
except TypeError, e:
|
||||
fail = False
|
||||
fail = False
|
||||
if fail:
|
||||
raise RuntimeError("argument count check failed")
|
||||
raise RuntimeError("argument count check failed")
|
||||
|
||||
fail = True
|
||||
try:
|
||||
global_one(2, 2)
|
||||
global_one(2, 2)
|
||||
except TypeError, e:
|
||||
fail = False
|
||||
fail = False
|
||||
|
||||
if fail:
|
||||
raise RuntimeError("argument count check failed")
|
||||
raise RuntimeError("argument count check failed")
|
||||
|
||||
fail = True
|
||||
try:
|
||||
global_two(1)
|
||||
global_two(1)
|
||||
except TypeError, e:
|
||||
fail = False
|
||||
fail = False
|
||||
|
||||
if fail:
|
||||
raise RuntimeError("argument count check failed")
|
||||
raise RuntimeError("argument count check failed")
|
||||
|
||||
fail = True
|
||||
try:
|
||||
global_two(3, 3, 3)
|
||||
global_two(3, 3, 3)
|
||||
except TypeError, e:
|
||||
fail = False
|
||||
fail = False
|
||||
|
||||
if fail:
|
||||
raise RuntimeError("argument count check failed")
|
||||
|
||||
raise RuntimeError("argument count check failed")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue