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

@ -8,16 +8,15 @@ b1 = B(a)
b2 = B_create(a)
if a.ref_count() != 3:
raise RuntimeError("Count = %d" % a.ref_count())
raise RuntimeError("Count = %d" % a.ref_count())
rca = b2.get_rca()
b3 = B_create(rca)
if a.ref_count() != 5:
raise RuntimeError("Count = %d" % a.ref_count())
raise RuntimeError("Count = %d" % a.ref_count())
v = vector_A(2)
@ -28,28 +27,28 @@ x = v[0]
del v
if a.ref_count() != 6:
raise RuntimeError("Count = %d" % a.ref_count())
raise RuntimeError("Count = %d" % a.ref_count())
# Check %newobject
b4 = b2.cloner()
if b4.ref_count() != 1:
raise RuntimeError
raise RuntimeError
b5 = global_create(a)
if b5.ref_count() != 1:
raise RuntimeError
raise RuntimeError
b6 = Factory_create(a)
if b6.ref_count() != 1:
raise RuntimeError
raise RuntimeError
b7 = Factory().create2(a)
if b7.ref_count() != 1:
raise RuntimeError
raise RuntimeError
if a.ref_count() != 10:
raise RuntimeError("Count = %d" % a.ref_count())
raise RuntimeError("Count = %d" % a.ref_count())
del b4
del b5
@ -57,5 +56,4 @@ del b6
del b7
if a.ref_count() != 6:
raise RuntimeError("Count = %d" % a.ref_count())
raise RuntimeError("Count = %d" % a.ref_count())