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():
206 """This is a docstring with
207 some lines of text here
213 """This is another docstring
214 with more lines of text
220 '''"This" is a string with some
226 """Indentation with tabs
242 Lorem ipsum dolor sit amet.
244 Consectetur adipiscing elit:
245 - sed do eiusmod tempor incididunt ut labore
246 - dolore magna aliqua
247 - enim ad minim veniam
248 - quis nostrud exercitation ullamco laboris nisi
249 - aliquip ex ea commodo consequat
256 These lines are indented in a way that does not
264 This has a shallow indent
265 - But some lines are deeper
266 - And the closing quote is too deep
272 """But with a newline after it!"""
296 def multiline_whitespace():
300 def oneline_whitespace():
312 def believe_it_or_not_this_is_in_the_py_stdlib():
317 def ignored_docstring():
322 def single_line_docstring_with_whitespace():
323 """This should be stripped"""
326 def docstring_with_inline_tabs_and_space_indentation():
330 tab at start of line and then a tab separated value
331 multiple tabs at the beginning and inline
332 mixed tabs and spaces at beginning. next line has mixed tabs and spaces only.
334 line ends with some tabs
338 def docstring_with_inline_tabs_and_tab_indentation():
342 tab at start of line and then a tab separated value
343 multiple tabs at the beginning and inline
344 mixed tabs and spaces at beginning. next line has mixed tabs and spaces only.
346 line ends with some tabs
351 def backslash_space():
355 def multiline_backslash_1():
361 def multiline_backslash_2():
366 def multiline_backslash_3():
368 already escaped \\"""
371 def my_god_its_full_of_stars_1():
372 "I'm sorry Dave\u2001"
375 # the space below is actually a \u2001, removed in output
376 def my_god_its_full_of_stars_2():