Home
last modified time | relevance | path

Searched refs:is_all_white (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DFormatParagraph.py87 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line):
96 not is_all_white(line[comment_header_len:]):
106 not is_all_white(line[comment_header_len:]):
119 while i < n and is_all_white(lines[i]):
124 if i+1 < n and not is_all_white(lines[i+1]):
130 while i < n and not is_all_white(lines[i]):
172 def is_all_white(line): function
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_formatparagraph.py18 self.assertTrue(fp.is_all_white(''))
19 self.assertTrue(fp.is_all_white('\t\n\r\f\v'))
20 self.assertFalse(fp.is_all_white(self.test_comment))