mirror of
https://github.com/MidnightCommander/mc
synced 2025-02-12 05:14:15 +03:00
![Witold Baryluk](/assets/img/avatar_default.png)
Add nonlocal, async, await keywoards. nonlocal: added in Python 3.0 in 2006: https://docs.python.org/3.0/whatsnew/3.0.html https://www.python.org/dev/peps/pep-3104/ https://docs.python.org/3/reference/simple_stmts.html#the-nonlocal-statement async, await: added in Python 3.5 in 2015: https://docs.python.org/3.5/whatsnew/3.5.html#what-s-new-in-python-3-5 https://www.python.org/downloads/release/python-350/ https://www.python.org/dev/peps/pep-0492/ https://docs.python.org/3/reference/compound_stmts.html#async-def https://docs.python.org/3/reference/compound_stmts.html#the-async-for-statement https://docs.python.org/3/reference/compound_stmts.html#the-async-with-statement https://docs.python.org/3/reference/expressions.html#await-expression https://docs.python.org/3/glossary.html#term-coroutine https://docs.python.org/3/library/asyncio-task.html Signed-off-by: Andrew Borodin <aborodin@vmail.ru>