mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-24 12:45:35 +00:00
Simplify expression normalization
No need to split lines, or remove whitespace after removing whitespace. No behavior change.
This commit is contained in:
parent
5a994c15f4
commit
5a6dc895f2
|
@ -307,8 +307,7 @@ def normalize(expr):
|
|||
"""Normalize the C expression so as not to care about trivial differences.
|
||||
Currently "trivial differences" means whitespace.
|
||||
"""
|
||||
expr = re.sub(NORMALIZE_STRIP_RE, '', expr, len(expr))
|
||||
return expr.strip().split('\n')
|
||||
return re.sub(NORMALIZE_STRIP_RE, '', expr)
|
||||
|
||||
def do_test(options, inputs, type_word, names):
|
||||
"""Test psa_constant_names for the specified type.
|
||||
|
|
Loading…
Reference in a new issue