import dis
import enum
import os
+import re
import sys
import textwrap
import types
msg="source code string cannot contain null bytes"):
ast.parse("a\0b")
+ def assert_none_check(self, node: type[ast.AST], attr: str, source: str) -> None:
+ with self.subTest(f"{node.__name__}.{attr}"):
+ tree = ast.parse(source)
+ found = 0
+ for child in ast.walk(tree):
+ if isinstance(child, node):
+ setattr(child, attr, None)
+ found += 1
+ self.assertEqual(found, 1)
+ e = re.escape(f"field '{attr}' is required for {node.__name__}")
+ with self.assertRaisesRegex(ValueError, f"^{e}$"):
+ compile(tree, "<test>", "exec")
+
+ def test_none_checks(self) -> None:
+ tests = [
+ (ast.alias, "name", "import spam as SPAM"),
+ (ast.arg, "arg", "def spam(SPAM): spam"),
+ (ast.comprehension, "target", "[spam for SPAM in spam]"),
+ (ast.comprehension, "iter", "[spam for spam in SPAM]"),
+ (ast.keyword, "value", "spam(**SPAM)"),
+ (ast.match_case, "pattern", "match spam:\n case SPAM: spam"),
+ (ast.withitem, "context_expr", "with SPAM: spam"),
+ ]
+ for node, attr, source in tests:
+ self.assert_none_check(node, attr, source)
+
class ASTHelpers_Test(unittest.TestCase):
maxDiff = None
args = [f.name for f in prod.fields]
args.extend([a.name for a in prod.attributes])
self.emit("*out = %s(%s);" % (ast_func_name(name), self.buildArgs(args)), 1)
+ self.emit("if (*out == NULL) goto failed;", 1)
self.emit("return 0;", 1)
self.emit("failed:", 0)
self.emit("Py_XDECREF(tmp);", 1)
Py_CLEAR(tmp);
}
*out = _PyAST_comprehension(target, iter, ifs, is_async, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);
}
*out = _PyAST_arguments(posonlyargs, args, vararg, kwonlyargs, kw_defaults,
kwarg, defaults, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);
}
*out = _PyAST_arg(arg, annotation, type_comment, lineno, col_offset,
end_lineno, end_col_offset, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);
}
*out = _PyAST_keyword(arg, value, lineno, col_offset, end_lineno,
end_col_offset, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);
}
*out = _PyAST_alias(name, asname, lineno, col_offset, end_lineno,
end_col_offset, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);
Py_CLEAR(tmp);
}
*out = _PyAST_withitem(context_expr, optional_vars, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);
Py_CLEAR(tmp);
}
*out = _PyAST_match_case(pattern, guard, body, arena);
+ if (*out == NULL) goto failed;
return 0;
failed:
Py_XDECREF(tmp);