From: Zsolt Dollenstein Date: Mon, 20 Aug 2018 13:47:58 +0000 (+0100) Subject: Support parsing of async generators in non-async functions (#165) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/883689366ce0f0e0ddd66d81360c61abfd19b01a?ds=sidebyside;hp=883689366ce0f0e0ddd66d81360c61abfd19b01a Support parsing of async generators in non-async functions (#165) This is a new syntax added in python3.7, so black can't verify that reformatting will not change the ast unless black itself is run with 3.7. We'll need to change the error message black gives in this case. @ambv any ideas? Fixes #125. ---