New submission from Jakub Wilk <jw...@jwilk.net>:
ast.Constant.n is documented to be deprecated, but you don't get any warning when you use it: $ python3.11 -Wd Python 3.11.0a5 (main, Feb 12 2022, 17:11:59) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import ast >>> help(ast.Constant.n) Help on property: Deprecated. Use value instead. >>> ast.Constant(value=42).n 42 ---------- components: Library (Lib) messages: 413541 nosy: jwilk, serhiy.storchaka priority: normal severity: normal status: open title: ast.Constant.n deprecated without warning versions: Python 3.11 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue46797> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com