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,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")