Imports are sorted in the usual fashion: stdlib first.
literal_eval() parses string/numbers/lists/sets/dicts, and nothing else, while
eval will execute any python code. Using literal_eval() is generally more
correct, because it avoids the risk of side effects from the parsed expression.
In this case, we generate the parsed strings ourselves, so it's very unlikely
to have anything unexpected in the expressions. But let's do the correct thing
anyway.
#!/usr/bin/env python3
# SPDX-License-Identifier: LGPL-2.1-or-later
-import jinja2
+import ast
import re
import sys
+import jinja2
+
def parse_config_h(filename):
# Parse config.h file generated by meson.
ans = {}
continue
a, b = m.groups()
if b and b[0] in '0123456789"':
- b = eval(b)
+ b = ast.literal_eval(b)
ans[a] = b
return ans