Remove parens around Python 'assert' statement

'assert' is a statement, not a function
This commit is contained in:
Corey Farwell 2015-09-20 12:10:28 -04:00
parent 5667283d1f
commit 38bbdd80db

View file

@ -650,7 +650,7 @@ def getJSToNativeConversionInfo(type, descriptorProvider, failureCode=None,
""" """
# We should not have a defaultValue if we know we're an object # We should not have a defaultValue if we know we're an object
assert(not isDefinitelyObject or defaultValue is None) assert not isDefinitelyObject or defaultValue is None
# If exceptionCode is not set, we'll just rethrow the exception we got. # If exceptionCode is not set, we'll just rethrow the exception we got.
# Note that we can't just set failureCode to exceptionCode, because setting # Note that we can't just set failureCode to exceptionCode, because setting
@ -908,7 +908,7 @@ def getJSToNativeConversionInfo(type, descriptorProvider, failureCode=None,
"handleInvalidEnumValueCode": handleInvalidEnumValueCode}) "handleInvalidEnumValueCode": handleInvalidEnumValueCode})
if defaultValue is not None: if defaultValue is not None:
assert(defaultValue.type.tag() == IDLType.Tags.domstring) assert defaultValue.type.tag() == IDLType.Tags.domstring
default = "%s::%s" % (enum, getEnumValueName(defaultValue.value)) default = "%s::%s" % (enum, getEnumValueName(defaultValue.value))
else: else:
default = None default = None
@ -1065,7 +1065,7 @@ def getJSToNativeConversionInfo(type, descriptorProvider, failureCode=None,
elif tag in numericTags: elif tag in numericTags:
defaultStr = str(defaultValue.value) defaultStr = str(defaultValue.value)
else: else:
assert(tag == IDLType.Tags.bool) assert tag == IDLType.Tags.bool
defaultStr = toStringBool(defaultValue.value) defaultStr = toStringBool(defaultValue.value)
if type.nullable(): if type.nullable():
@ -1137,7 +1137,7 @@ class CGArgumentConverter(CGThing):
def __init__(self, argument, index, args, argc, descriptorProvider, def __init__(self, argument, index, args, argc, descriptorProvider,
invalidEnumValueFatal=True): invalidEnumValueFatal=True):
CGThing.__init__(self) CGThing.__init__(self)
assert(not argument.defaultValue or argument.optional) assert not argument.defaultValue or argument.optional
replacer = { replacer = {
"index": index, "index": index,
@ -1364,7 +1364,7 @@ class PropertyDefiner:
returns a tuple suitable for substitution into specTemplate. returns a tuple suitable for substitution into specTemplate.
""" """
assert(len(array) is not 0) assert len(array) is not 0
specs = [] specs = []
for member in array: for member in array:
@ -3034,8 +3034,8 @@ class CGMemberJITInfo(CGThing):
reason (e.g. we have overloads or we're not a method) and reason (e.g. we have overloads or we're not a method) and
otherwise an iterable of the arguments for this method. otherwise an iterable of the arguments for this method.
""" """
assert(not movable or aliasSet != "AliasEverything") # Can't move write-aliasing things assert not movable or aliasSet != "AliasEverything" # Can't move write-aliasing things
assert(not alwaysInSlot or movable) # Things always in slots had better be movable assert not alwaysInSlot or movable # Things always in slots had better be movable
def jitInfoInitializer(isTypedMethod): def jitInfoInitializer(isTypedMethod):
initializer = fill( initializer = fill(