Home
last modified time | relevance | path

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

/third_party/python/Lib/idlelib/
Dsearchengine.py131 line, col = get_line_col(start)
138 line, col = get_line_col(start)
226 def get_line_col(index): function
Dreplace.py223 line, col = searchengine.get_line_col(pos)
/third_party/python/Lib/idlelib/idle_test/
Dtest_searchengine.py51 self.assertEqual(se.get_line_col('1.0'), (1, 0))
52 self.assertEqual(se.get_line_col('1.11'), (1, 11))
54 self.assertRaises(ValueError, se.get_line_col, ('1.0 lineend'))
55 self.assertRaises(ValueError, se.get_line_col, ('end'))