Home
last modified time | relevance | path

Searched refs:HyperParser (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
Dtest_hyperparser.py3 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/
Dparenmatch.py7 from idlelib.hyperparser import HyperParser
78 indices = (HyperParser(self.editwin, "insert")
89 hp = HyperParser(self.editwin, "insert-1c")
Dcalltip.py15 from idlelib.hyperparser import HyperParser
62 hp = HyperParser(self.editwin, "insert")
Dautocomplete.py22 from idlelib.hyperparser import HyperParser
114 hp = HyperParser(self.editwin, "insert")
Dhyperparser.py25 class HyperParser: class
DNEWS.txt1104 - 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/
D3.5.0a1.rst4713 Add support for non-ascii identifiers to HyperParser.
4749 add unittest for HyperParser. Original patch by Saimadhav Heblikar.
/third_party/python/Misc/
DHISTORY1723 - Issue #21765: Add support for non-ascii identifiers to HyperParser.
1732 - Issue #21686: add unittest for HyperParser. Original patch by Saimadhav