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