HomeSort by relevance Sort by last modified time
    Searched refs:drop_whitespace (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_textwrap.py 72 self.check_wrap("", 6, [], drop_whitespace=False)
77 self.check_wrap("", 6, [], initial_indent="++", drop_whitespace=False)
336 # Check that drop_whitespace=False preserves whitespace.
342 drop_whitespace=False)
345 # Check that drop_whitespace=False preserves a whitespace-only string.
346 self.check_wrap(" ", 6, [" "], drop_whitespace=False)
350 # drop_whitespace is False).
351 self.check_wrap(" ", 6, [" "], drop_whitespace=False,
355 # Check drop_whitespace on a whitespace-only string.
359 # Check that drop_whitespace does not drop leading whitespace (i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_textwrap.py 72 self.check_wrap("", 6, [], drop_whitespace=False)
77 self.check_wrap("", 6, [], initial_indent="++", drop_whitespace=False)
336 # Check that drop_whitespace=False preserves whitespace.
342 drop_whitespace=False)
345 # Check that drop_whitespace=False preserves a whitespace-only string.
346 self.check_wrap(" ", 6, [" "], drop_whitespace=False)
350 # drop_whitespace is False).
351 self.check_wrap(" ", 6, [" "], drop_whitespace=False,
355 # Check drop_whitespace on a whitespace-only string.
359 # Check that drop_whitespace does not drop leading whitespace (i
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
textwrap.py 78 drop_whitespace (default: true)
123 drop_whitespace=True,
132 self.drop_whitespace = drop_whitespace
282 if self.drop_whitespace and chunks[-1].strip() == '' and lines:
303 if self.drop_whitespace and cur_line and cur_line[-1].strip() == '':
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
textwrap.py 78 drop_whitespace (default: true)
123 drop_whitespace=True,
132 self.drop_whitespace = drop_whitespace
282 if self.drop_whitespace and chunks[-1].strip() == '' and lines:
303 if self.drop_whitespace and cur_line and cur_line[-1].strip() == '':

Completed in 171 milliseconds