]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/black/tests/data/cases/module_docstring_2.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 / module_docstring_2.py
1 # flags: --preview
2 """I am a very helpful module docstring.
3
4 Lorem ipsum dolor sit amet, consectetur adipiscing elit,
5 sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
6 Ut enim ad minim veniam,
7 quis nostrud exercitation ullamco laboris
8 nisi ut aliquip ex ea commodo consequat.
9 Duis aute irure dolor in reprehenderit in voluptate
10 velit esse cillum dolore eu fugiat nulla pariatur.
11 Excepteur sint occaecat cupidatat non proident,
12 sunt in culpa qui officia deserunt mollit anim id est laborum.
13 """
14
15
16
17
18 a = 1
19
20
21 """Look at me I'm a docstring...
22
23 ............................................................
24 ............................................................
25 ............................................................
26 ............................................................
27 ............................................................
28 ............................................................
29 ............................................................
30 ........................................................NOT!
31 """
32
33
34
35
36 b = 2
37
38 # output
39 """I am a very helpful module docstring.
40
41 Lorem ipsum dolor sit amet, consectetur adipiscing elit,
42 sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
43 Ut enim ad minim veniam,
44 quis nostrud exercitation ullamco laboris
45 nisi ut aliquip ex ea commodo consequat.
46 Duis aute irure dolor in reprehenderit in voluptate
47 velit esse cillum dolore eu fugiat nulla pariatur.
48 Excepteur sint occaecat cupidatat non proident,
49 sunt in culpa qui officia deserunt mollit anim id est laborum.
50 """
51
52 a = 1
53
54
55 """Look at me I'm a docstring...
56
57 ............................................................
58 ............................................................
59 ............................................................
60 ............................................................
61 ............................................................
62 ............................................................
63 ............................................................
64 ........................................................NOT!
65 """
66
67
68 b = 2