Searched refs:HyperParser (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
D | test_hyperparser.py | 3 from idlelib.hyperparser import HyperParser 62 return HyperParser(self.editwin, index) 205 result = HyperParser._eat_identifier(candidate, 0, len(candidate)) 246 self.assertEqual(HyperParser._eat_identifier('+ var', 0, 5), len('var')) 247 self.assertEqual(HyperParser._eat_identifier('+var', 0, 4), len('var')) 248 self.assertEqual(HyperParser._eat_identifier('.var', 0, 4), len('var')) 261 eat_id = HyperParser._eat_identifier
|
/third_party/python/Lib/idlelib/ |
D | parenmatch.py | 7 from idlelib.hyperparser import HyperParser 78 indices = (HyperParser(self.editwin, "insert") 89 hp = HyperParser(self.editwin, "insert-1c")
|
D | calltip.py | 15 from idlelib.hyperparser import HyperParser 62 hp = HyperParser(self.editwin, "insert")
|
D | autocomplete.py | 22 from idlelib.hyperparser import HyperParser 114 hp = HyperParser(self.editwin, "insert")
|
D | hyperparser.py | 25 class HyperParser: class
|
D | NEWS.txt | 1104 - Issue #21765: Add support for non-ascii identifiers to HyperParser. 1113 - Issue #21686: add unittest for HyperParser. Original patch by Saimadhav
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 4713 Add support for non-ascii identifiers to HyperParser. 4749 add unittest for HyperParser. Original patch by Saimadhav Heblikar.
|
/third_party/python/Misc/ |
D | HISTORY | 1723 - Issue #21765: Add support for non-ascii identifiers to HyperParser. 1732 - Issue #21686: add unittest for HyperParser. Original patch by Saimadhav
|