Home
last modified time | relevance | path

Searched refs:get_line_col (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DSearchEngine.py132 line, col = get_line_col(start)
139 line, col = get_line_col(start)
226 def get_line_col(index): function
DReplaceDialog.py155 line, col = SearchEngine.get_line_col(pos)
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_searchengine.py50 self.assertEqual(se.get_line_col('1.0'), (1, 0))
51 self.assertEqual(se.get_line_col('1.11'), (1, 11))
53 self.assertRaises(ValueError, se.get_line_col, ('1.0 lineend'))
54 self.assertRaises(ValueError, se.get_line_col, ('end'))