]> 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:

Wrap multiple context managers in parentheses when targeting Python 3.9+ (#3489)
authorYilei "Dolee" Yang <yileiyang@google.com>
Fri, 20 Jan 2023 12:14:05 +0000 (04:14 -0800)
committerGitHub <noreply@github.com>
Fri, 20 Jan 2023 12:14:05 +0000 (04:14 -0800)
commit91e1e1328aa0a11ef50017316ff97149886e1b05
treedbc6c7e02917b0599931928b620fee30c9ce3674
parent18fb88486d434dbde9b2a9c98f008a71cf5d941d
Wrap multiple context managers in parentheses when targeting Python 3.9+ (#3489)
CHANGES.md
src/black/__init__.py
src/black/linegen.py
src/black/mode.py
tests/data/preview_context_managers/auto_detect/features_3_10.py [new file with mode: 0644]
tests/data/preview_context_managers/auto_detect/features_3_11.py [new file with mode: 0644]
tests/data/preview_context_managers/auto_detect/features_3_8.py [new file with mode: 0644]
tests/data/preview_context_managers/auto_detect/features_3_9.py [new file with mode: 0644]
tests/data/preview_context_managers/targeting_py38.py [new file with mode: 0644]
tests/data/preview_context_managers/targeting_py39.py [new file with mode: 0644]
tests/test_format.py