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

Draft for Black 2023 stable style (#3418)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Tue, 31 Jan 2023 23:39:56 +0000 (15:39 -0800)
committerGitHub <noreply@github.com>
Tue, 31 Jan 2023 23:39:56 +0000 (15:39 -0800)
commitc4bd2e31ceeac84d68592986fe70920f3d3d0443
tree9d7d5189b7ace3360e0bc1d0622f501c81bedd15
parent226cbf0226ee3bc26972357ba54c36409e9a84ae
Draft for Black 2023 stable style (#3418)
36 files changed:
CHANGES.md
docs/the_black_code_style/current_style.md
docs/the_black_code_style/future_style.md
src/black/__init__.py
src/black/comments.py
src/black/linegen.py
src/black/lines.py
src/black/mode.py
tests/data/miscellaneous/expression_skip_magic_trailing_comma.diff
tests/data/preview/return_annotation_brackets_string.py [new file with mode: 0644]
tests/data/py_310/parenthesized_context_managers.py
tests/data/py_310/remove_newline_after_match.py [moved from tests/data/preview_310/remove_newline_after_match.py with 100% similarity]
tests/data/py_311/pep_654_style.py
tests/data/py_38/pep_572_remove_parens.py
tests/data/py_39/remove_with_brackets.py [moved from tests/data/preview_39/remove_with_brackets.py with 100% similarity]
tests/data/simple_cases/comments2.py
tests/data/simple_cases/comments3.py
tests/data/simple_cases/comments5.py
tests/data/simple_cases/comments8.py [moved from tests/data/preview/comments8.py with 100% similarity]
tests/data/simple_cases/comments9.py [moved from tests/data/preview/comments9.py with 100% similarity]
tests/data/simple_cases/docstring_preview.py [moved from tests/data/preview/docstring_preview.py with 100% similarity]
tests/data/simple_cases/empty_lines.py
tests/data/simple_cases/fmtonoff.py
tests/data/simple_cases/function_trailing_comma.py
tests/data/simple_cases/one_element_subscript.py [moved from tests/data/preview/one_element_subscript.py with 100% similarity]
tests/data/simple_cases/prefer_rhs_split_reformatted.py [moved from tests/data/preview/prefer_rhs_split_reformatted.py with 100% similarity]
tests/data/simple_cases/remove_await_parens.py [moved from tests/data/preview/remove_await_parens.py with 100% similarity]
tests/data/simple_cases/remove_except_parens.py [moved from tests/data/preview/remove_except_parens.py with 100% similarity]
tests/data/simple_cases/remove_for_brackets.py [moved from tests/data/preview/remove_for_brackets.py with 100% similarity]
tests/data/simple_cases/remove_newline_after_code_block_open.py [moved from tests/data/preview/remove_newline_after_code_block_open.py with 100% similarity]
tests/data/simple_cases/return_annotation_brackets.py [moved from tests/data/preview/return_annotation_brackets.py with 93% similarity]
tests/data/simple_cases/skip_magic_trailing_comma.py [moved from tests/data/preview/skip_magic_trailing_comma.py with 100% similarity]
tests/data/simple_cases/trailing_commas_in_leading_parts.py [moved from tests/data/preview/trailing_commas_in_leading_parts.py with 100% similarity]
tests/data/simple_cases/whitespace.py [moved from tests/data/preview/whitespace.py with 100% similarity]
tests/test_black.py
tests/test_format.py