Module: Mesa Branch: master Commit: 33906eeaca917506cfa4297913c386121357531e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=33906eeaca917506cfa4297913c386121357531e
Author: Kenneth Graunke <[email protected]> Date: Mon May 7 11:23:27 2018 -0700 intel/genxml: Make assert in gen_pack_header print a message. Python's assert can take both a condition and a string, which will cause it to print the string if the assertion trips. (You can't use parens as that creates a tuple.) Doing "condition and string" works in C, but doesn't have the desired effect in Python. Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> --- src/intel/genxml/gen_pack_header.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/genxml/gen_pack_header.py b/src/intel/genxml/gen_pack_header.py index 6a4c8033a7..4bce425d12 100644 --- a/src/intel/genxml/gen_pack_header.py +++ b/src/intel/genxml/gen_pack_header.py @@ -220,7 +220,7 @@ def num_from_str(num_str): if num_str.lower().startswith('0x'): return int(num_str, base=16) else: - assert(not num_str.startswith('0') and 'octals numbers not allowed') + assert not num_str.startswith('0'), 'octals numbers not allowed' return int(num_str) class Field(object): _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
