]> git.madduck.net Git - etc/vim.git/commit

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Support parsing of async generators in non-async functions (#165)
authorZsolt Dollenstein <zsol.zsol@gmail.com>
Mon, 20 Aug 2018 13:47:58 +0000 (14:47 +0100)
committerŁukasz Langa <lukasz@langa.pl>
Mon, 20 Aug 2018 13:47:58 +0000 (14:47 +0100)
commit883689366ce0f0e0ddd66d81360c61abfd19b01a
tree519b40cadbabd6f73de66754e2e5d18f18c43d5a
parentb719d85ccc330170e40b2617307a7e3b2a0bab14
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.
blib2to3/pgen2/tokenize.py
tests/data/python37.py [new file with mode: 0644]
tests/test_black.py