Message359122
| Author |
ppperry |
| Recipients |
BTaskaya, belopolsky, benjamin.peterson, eric.snow, georg.brandl, gregory.p.smith, meador.inge, ppperry |
| Date |
2019年12月31日.19:06:17 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1577819177.13.0.46868972679.issue11105@roundup.psfhosted.org> |
| In-reply-to |
| Content |
What about indirect cycles like below:
>>> e = ast.UnaryOp(op=ast.Not(), lineno=0, col_offset=0)
>>> f = ast.UnaryOp(op=ast.Not(), lineno=0, col_offset=0)
>>> e.operand = f
>>> f.operand = e
>>> compile(ast.Expression(e), "<test>", "eval")
(I tested, this also crashes) |
|