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.
14 """This is a docstring with
15 some lines of text here
21 '''This is another docstring
22 with more lines of text
28 '''"This" is a string with some
34 '''Indentation with tabs
49 Lorem ipsum dolor sit amet.
51 Consectetur adipiscing elit:
52 - sed do eiusmod tempor incididunt ut labore
54 - enim ad minim veniam
55 - quis nostrud exercitation ullamco laboris nisi
56 - aliquip ex ea commodo consequat
63 These lines are indented in a way that does not
71 This has a shallow indent
72 - But some lines are deeper
73 - And the closing quote is too deep
79 """But with a newline after it!
105 def multiline_whitespace():
114 def oneline_whitespace():
126 def believe_it_or_not_this_is_in_the_py_stdlib(): '''
130 def ignored_docstring():
134 def single_line_docstring_with_whitespace():
135 """ This should be stripped """
137 def docstring_with_inline_tabs_and_space_indentation():
141 tab at start of line and then a tab separated value
142 multiple tabs at the beginning and inline
143 mixed tabs and spaces at beginning. next line has mixed tabs and spaces only.
145 line ends with some tabs
149 def docstring_with_inline_tabs_and_tab_indentation():
153 tab at start of line and then a tab separated value
154 multiple tabs at the beginning and inline
155 mixed tabs and spaces at beginning. next line has mixed tabs and spaces only.
157 line ends with some tabs
162 def backslash_space():
166 def multiline_backslash_1():
172 def multiline_backslash_2():
177 def multiline_backslash_3():
179 already escaped \\ '''
182 def my_god_its_full_of_stars_1():
183 "I'm sorry Dave\u2001"
186 # the space below is actually a \u2001, removed in output
187 def my_god_its_full_of_stars_2():
191 def docstring_almost_at_line_limit():
192 """long docstring................................................................."""
195 def docstring_almost_at_line_limit2():
196 """long docstring.................................................................
198 ..................................................................................
202 def docstring_at_line_limit():
203 """long docstring................................................................"""
206 def multiline_docstring_at_line_limit():
207 """first line-----------------------------------------------------------------------
209 second line----------------------------------------------------------------------"""
227 """This is a docstring with
228 some lines of text here
234 """This is another docstring
235 with more lines of text
241 '''"This" is a string with some
247 """Indentation with tabs
263 Lorem ipsum dolor sit amet.
265 Consectetur adipiscing elit:
266 - sed do eiusmod tempor incididunt ut labore
267 - dolore magna aliqua
268 - enim ad minim veniam
269 - quis nostrud exercitation ullamco laboris nisi
270 - aliquip ex ea commodo consequat
277 These lines are indented in a way that does not
285 This has a shallow indent
286 - But some lines are deeper
287 - And the closing quote is too deep
293 """But with a newline after it!"""
317 def multiline_whitespace():
321 def oneline_whitespace():
333 def believe_it_or_not_this_is_in_the_py_stdlib():
338 def ignored_docstring():
343 def single_line_docstring_with_whitespace():
344 """This should be stripped"""
347 def docstring_with_inline_tabs_and_space_indentation():
351 tab at start of line and then a tab separated value
352 multiple tabs at the beginning and inline
353 mixed tabs and spaces at beginning. next line has mixed tabs and spaces only.
355 line ends with some tabs
359 def docstring_with_inline_tabs_and_tab_indentation():
363 tab at start of line and then a tab separated value
364 multiple tabs at the beginning and inline
365 mixed tabs and spaces at beginning. next line has mixed tabs and spaces only.
367 line ends with some tabs
372 def backslash_space():
376 def multiline_backslash_1():
382 def multiline_backslash_2():
387 def multiline_backslash_3():
389 already escaped \\"""
392 def my_god_its_full_of_stars_1():
393 "I'm sorry Dave\u2001"
396 # the space below is actually a \u2001, removed in output
397 def my_god_its_full_of_stars_2():
401 def docstring_almost_at_line_limit():
402 """long docstring................................................................."""
405 def docstring_almost_at_line_limit2():
406 """long docstring.................................................................
408 ..................................................................................
412 def docstring_at_line_limit():
413 """long docstring................................................................"""
416 def multiline_docstring_at_line_limit():
417 """first line-----------------------------------------------------------------------
419 second line----------------------------------------------------------------------"""