mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 15:15:33 +00:00
9 lines
104 B
Python
9 lines
104 B
Python
from ast import literal_eval
|
|
|
|
eval("3 + 4")
|
|
|
|
literal_eval({1: 2})
|
|
|
|
|
|
def fn() -> None:
|
|
eval("3 + 4")
|