We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ast
Describe the bug Some deprecation warnings from ast.
Additional context The following that appear in the code have been deprecated and will be deleted in Python 3.14.
ast.Ellipsis
ast.Num
ast.NameConstant
ast.Str
ast.Constant
In addition,
xian-contracting/src/contracting/compilation/compiler.py
Line 118 in d8fd3cf
visit_Constant
node.n
node.value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Some deprecation warnings from
ast
.Additional context
The following that appear in the code have been deprecated and will be deleted in Python 3.14.
ast.Ellipsis
ast.Num
ast.NameConstant
ast.Str
These can be replaced with
ast.Constant
.In addition,
xian-contracting/src/contracting/compilation/compiler.py
Line 118 in d8fd3cf
visit_Constant
instead. Also,node.n
should be replaced bynode.value
.The text was updated successfully, but these errors were encountered: