New submission from Михаил Кыштымов <mister.r...@gmail.com>:
Assignment expression in assert causes SyntaxError Minimal case: ``` assert var := None ``` Error: ``` File "<input>", line 1 assert var := None ^ SyntaxError: invalid syntax ``` Workaround: ``` assert (var := None) ``` My use case: ``` my_dict = dict() assert value := my_dict.get('key') ``` ---------- components: Interpreter Core messages: 363698 nosy: Михаил Кыштымов priority: normal severity: normal status: open title: Assignment expression in assert causes SyntaxError type: behavior versions: Python 3.8 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue39909> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com