Searched refs:get_line_col (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Lib/idlelib/ |
H A D | searchengine.py | 131 line, col = get_line_col(start) 138 line, col = get_line_col(start) 226 def get_line_col(index): function
|
H A D | replace.py | 220 line, col = searchengine.get_line_col(pos)
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_searchengine.py | 51 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'))
|
Completed in 2 milliseconds