]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/black/tests/data/cases/multiline_consecutive_open_parentheses_ignore.py

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:

Merge commit '882d8795c6ff65c02f2657e596391748d1b6b7f5'
[etc/vim.git] / .vim / bundle / black / tests / data / cases / multiline_consecutive_open_parentheses_ignore.py
1 # This is a regression test. Issue #3737
2
3 a = (  # type: ignore
4     int(  # type: ignore
5         int(  # type: ignore
6             int(  # type: ignore
7                 6
8             )
9         )
10     )
11 )
12
13 b = (
14     int(
15         6
16     )
17 )
18
19 print(   "111") # type: ignore
20 print(   "111"                         ) # type: ignore
21 print(   "111"       ) # type: ignore
22
23
24 # output
25
26
27 # This is a regression test. Issue #3737
28
29 a = (  # type: ignore
30     int(  # type: ignore
31         int(  # type: ignore
32             int(6)  # type: ignore
33         )
34     )
35 )
36
37 b = int(6)
38
39 print("111")  # type: ignore
40 print("111")  # type: ignore
41 print("111")  # type: ignore