| 
									
										
										
										
											2014-06-16 19:01:01 -04:00
										 |  |  | """Provide advanced parsing abilities for ParenMatch and other extensions.
 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | HyperParser uses PyParser.  PyParser mostly gives information on the | 
					
						
							|  |  |  | proper indentation of code.  HyperParser gives additional information on | 
					
						
							|  |  |  | the structure of code. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import string | 
					
						
							| 
									
										
										
										
											2014-07-16 16:33:36 +03:00
										 |  |  | from keyword import iskeyword | 
					
						
							| 
									
										
										
										
											2007-08-22 23:01:33 +00:00
										 |  |  | from idlelib import PyParse | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 16:33:36 +03:00
										 |  |  | # all ASCII chars that may be in an identifier | 
					
						
							|  |  |  | _ASCII_ID_CHARS = frozenset(string.ascii_letters + string.digits + "_") | 
					
						
							|  |  |  | # all ASCII chars that may be the first char of an identifier | 
					
						
							|  |  |  | _ASCII_ID_FIRST_CHARS = frozenset(string.ascii_letters + "_") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # lookup table for whether 7-bit ASCII chars are valid in a Python identifier | 
					
						
							|  |  |  | _IS_ASCII_ID_CHAR = [(chr(x) in _ASCII_ID_CHARS) for x in range(128)] | 
					
						
							|  |  |  | # lookup table for whether 7-bit ASCII chars are valid as the first | 
					
						
							|  |  |  | # char in a Python identifier | 
					
						
							|  |  |  | _IS_ASCII_ID_FIRST_CHAR = \ | 
					
						
							|  |  |  |     [(chr(x) in _ASCII_ID_FIRST_CHARS) for x in range(128)] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class HyperParser: | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |     def __init__(self, editwin, index): | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         "To initialize, analyze the surroundings of the given index." | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.editwin = editwin | 
					
						
							|  |  |  |         self.text = text = editwin.text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def index2line(index): | 
					
						
							|  |  |  |             return int(float(index)) | 
					
						
							|  |  |  |         lno = index2line(text.index(index)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not editwin.context_use_ps1: | 
					
						
							|  |  |  |             for context in editwin.num_context_lines: | 
					
						
							|  |  |  |                 startat = max(lno - context, 1) | 
					
						
							| 
									
										
										
										
											2006-08-25 02:59:59 +00:00
										 |  |  |                 startatindex = repr(startat) + ".0" | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                 stopatindex = "%d.end" % lno | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |                 # We add the newline because PyParse requires a newline | 
					
						
							|  |  |  |                 # at end. We add a space so that index won't be at end | 
					
						
							|  |  |  |                 # of line, so that its status will be the same as the | 
					
						
							|  |  |  |                 # char before it, if should. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                 parser.set_str(text.get(startatindex, stopatindex)+' \n') | 
					
						
							|  |  |  |                 bod = parser.find_good_parse_start( | 
					
						
							|  |  |  |                           editwin._build_char_in_string_func(startatindex)) | 
					
						
							|  |  |  |                 if bod is not None or startat == 1: | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  |             parser.set_lo(bod or 0) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             r = text.tag_prevrange("console", index) | 
					
						
							|  |  |  |             if r: | 
					
						
							|  |  |  |                 startatindex = r[1] | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 startatindex = "1.0" | 
					
						
							|  |  |  |             stopatindex = "%d.end" % lno | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |             # We add the newline because PyParse requires it. We add a | 
					
						
							|  |  |  |             # space so that index won't be at end of line, so that its | 
					
						
							|  |  |  |             # status will be the same as the char before it, if should. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             parser.set_str(text.get(startatindex, stopatindex)+' \n') | 
					
						
							|  |  |  |             parser.set_lo(0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         # We want what the parser has, minus the last newline and space. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         self.rawtext = parser.str[:-2] | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         # Parser.str apparently preserves the statement we are in, so | 
					
						
							|  |  |  |         # that stopatindex can be used to synchronize the string with | 
					
						
							|  |  |  |         # the text box indices. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         self.stopatindex = stopatindex | 
					
						
							|  |  |  |         self.bracketing = parser.get_last_stmt_bracketing() | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         # find which pairs of bracketing are openers. These always | 
					
						
							|  |  |  |         # correspond to a character of rawtext. | 
					
						
							|  |  |  |         self.isopener = [i>0 and self.bracketing[i][1] > | 
					
						
							|  |  |  |                          self.bracketing[i-1][1] | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                          for i in range(len(self.bracketing))] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.set_index(index) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_index(self, index): | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         """Set the index to which the functions relate.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The index must be in the same statement. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         indexinrawtext = (len(self.rawtext) - | 
					
						
							|  |  |  |                           len(self.text.get(index, self.stopatindex))) | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         if indexinrawtext < 0: | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |             raise ValueError("Index %s precedes the analyzed statement" | 
					
						
							|  |  |  |                              % index) | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         self.indexinrawtext = indexinrawtext | 
					
						
							|  |  |  |         # find the rightmost bracket to which index belongs | 
					
						
							|  |  |  |         self.indexbracket = 0 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         while (self.indexbracket < len(self.bracketing)-1 and | 
					
						
							|  |  |  |                self.bracketing[self.indexbracket+1][0] < self.indexinrawtext): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             self.indexbracket += 1 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         if (self.indexbracket < len(self.bracketing)-1 and | 
					
						
							|  |  |  |             self.bracketing[self.indexbracket+1][0] == self.indexinrawtext and | 
					
						
							|  |  |  |            not self.isopener[self.indexbracket+1]): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             self.indexbracket += 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def is_in_string(self): | 
					
						
							| 
									
										
										
										
											2014-06-16 19:01:01 -04:00
										 |  |  |         """Is the index given to the HyperParser in a string?""" | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         # The bracket to which we belong should be an opener. | 
					
						
							|  |  |  |         # If it's an opener, it has to have a character. | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         return (self.isopener[self.indexbracket] and | 
					
						
							|  |  |  |                 self.rawtext[self.bracketing[self.indexbracket][0]] | 
					
						
							|  |  |  |                 in ('"', "'")) | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def is_in_code(self): | 
					
						
							| 
									
										
										
										
											2014-06-16 19:01:01 -04:00
										 |  |  |         """Is the index given to the HyperParser in normal code?""" | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         return (not self.isopener[self.indexbracket] or | 
					
						
							|  |  |  |                 self.rawtext[self.bracketing[self.indexbracket][0]] | 
					
						
							|  |  |  |                 not in ('#', '"', "'")) | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_surrounding_brackets(self, openers='([{', mustclose=False): | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         """Return bracket indexes or None.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         If the index given to the HyperParser is surrounded by a | 
					
						
							|  |  |  |         bracket defined in openers (or at least has one before it), | 
					
						
							|  |  |  |         return the indices of the opening bracket and the closing | 
					
						
							|  |  |  |         bracket (or the end of line, whichever comes first). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         If it is not surrounded by brackets, or the end of line comes | 
					
						
							|  |  |  |         before the closing bracket and mustclose is True, returns None. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:40:24 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         bracketinglevel = self.bracketing[self.indexbracket][1] | 
					
						
							|  |  |  |         before = self.indexbracket | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         while (not self.isopener[before] or | 
					
						
							|  |  |  |               self.rawtext[self.bracketing[before][0]] not in openers or | 
					
						
							|  |  |  |               self.bracketing[before][1] > bracketinglevel): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             before -= 1 | 
					
						
							|  |  |  |             if before < 0: | 
					
						
							|  |  |  |                 return None | 
					
						
							|  |  |  |             bracketinglevel = min(bracketinglevel, self.bracketing[before][1]) | 
					
						
							|  |  |  |         after = self.indexbracket + 1 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         while (after < len(self.bracketing) and | 
					
						
							|  |  |  |               self.bracketing[after][1] >= bracketinglevel): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             after += 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         beforeindex = self.text.index("%s-%dc" % | 
					
						
							|  |  |  |             (self.stopatindex, len(self.rawtext)-self.bracketing[before][0])) | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         if (after >= len(self.bracketing) or | 
					
						
							|  |  |  |            self.bracketing[after][0] > len(self.rawtext)): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             if mustclose: | 
					
						
							|  |  |  |                 return None | 
					
						
							|  |  |  |             afterindex = self.stopatindex | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |             # We are after a real char, so it is a ')' and we give the | 
					
						
							|  |  |  |             # index before it. | 
					
						
							|  |  |  |             afterindex = self.text.index( | 
					
						
							|  |  |  |                 "%s-%dc" % (self.stopatindex, | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                  len(self.rawtext)-(self.bracketing[after][0]-1))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return beforeindex, afterindex | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 16:33:36 +03:00
										 |  |  |     # the set of built-in identifiers which are also keywords, | 
					
						
							|  |  |  |     # i.e. keyword.iskeyword() returns True for them | 
					
						
							|  |  |  |     _ID_KEYWORDS = frozenset({"True", "False", "None"}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @classmethod | 
					
						
							|  |  |  |     def _eat_identifier(cls, str, limit, pos): | 
					
						
							|  |  |  |         """Given a string and pos, return the number of chars in the
 | 
					
						
							|  |  |  |         identifier which ends at pos, or 0 if there is no such one. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         This ignores non-identifier eywords are not identifiers. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         is_ascii_id_char = _IS_ASCII_ID_CHAR | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Start at the end (pos) and work backwards. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         i = pos | 
					
						
							| 
									
										
										
										
											2014-07-16 16:33:36 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Go backwards as long as the characters are valid ASCII | 
					
						
							|  |  |  |         # identifier characters. This is an optimization, since it | 
					
						
							|  |  |  |         # is faster in the common case where most of the characters | 
					
						
							|  |  |  |         # are ASCII. | 
					
						
							|  |  |  |         while i > limit and ( | 
					
						
							|  |  |  |                 ord(str[i - 1]) < 128 and | 
					
						
							|  |  |  |                 is_ascii_id_char[ord(str[i - 1])] | 
					
						
							|  |  |  |         ): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             i -= 1 | 
					
						
							| 
									
										
										
										
											2014-07-16 16:33:36 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # If the above loop ended due to reaching a non-ASCII | 
					
						
							|  |  |  |         # character, continue going backwards using the most generic | 
					
						
							|  |  |  |         # test for whether a string contains only valid identifier | 
					
						
							|  |  |  |         # characters. | 
					
						
							|  |  |  |         if i > limit and ord(str[i - 1]) >= 128: | 
					
						
							|  |  |  |             while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier(): | 
					
						
							|  |  |  |                 i -= 4 | 
					
						
							|  |  |  |             if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier(): | 
					
						
							|  |  |  |                 i -= 2 | 
					
						
							|  |  |  |             if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier(): | 
					
						
							|  |  |  |                 i -= 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # The identifier candidate starts here. If it isn't a valid | 
					
						
							|  |  |  |             # identifier, don't eat anything. At this point that is only | 
					
						
							|  |  |  |             # possible if the first character isn't a valid first | 
					
						
							|  |  |  |             # character for an identifier. | 
					
						
							|  |  |  |             if not str[i:pos].isidentifier(): | 
					
						
							|  |  |  |                 return 0 | 
					
						
							|  |  |  |         elif i < pos: | 
					
						
							|  |  |  |             # All characters in str[i:pos] are valid ASCII identifier | 
					
						
							|  |  |  |             # characters, so it is enough to check that the first is | 
					
						
							|  |  |  |             # valid as the first character of an identifier. | 
					
						
							|  |  |  |             if not _IS_ASCII_ID_FIRST_CHAR[ord(str[i])]: | 
					
						
							|  |  |  |                 return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # All keywords are valid identifiers, but should not be | 
					
						
							|  |  |  |         # considered identifiers here, except for True, False and None. | 
					
						
							|  |  |  |         if i < pos and ( | 
					
						
							|  |  |  |                 iskeyword(str[i:pos]) and | 
					
						
							|  |  |  |                 str[i:pos] not in cls._ID_KEYWORDS | 
					
						
							|  |  |  |         ): | 
					
						
							|  |  |  |             return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         return pos - i | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 16:33:36 +03:00
										 |  |  |     # This string includes all chars that may be in a white space | 
					
						
							|  |  |  |     _whitespace_chars = " \t\n\\" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |     def get_expression(self): | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |         """Return a string with the Python expression which ends at the
 | 
					
						
							|  |  |  |         given index, which is empty if there is no real one. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         if not self.is_in_code(): | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |             raise ValueError("get_expression should only be called" | 
					
						
							|  |  |  |                              "if index is inside a code.") | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         rawtext = self.rawtext | 
					
						
							|  |  |  |         bracketing = self.bracketing | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         brck_index = self.indexbracket | 
					
						
							|  |  |  |         brck_limit = bracketing[brck_index][0] | 
					
						
							|  |  |  |         pos = self.indexinrawtext | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         last_identifier_pos = pos | 
					
						
							|  |  |  |         postdot_phase = True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         while 1: | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |             # Eat whitespaces, comments, and if postdot_phase is False - a dot | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |             while 1: | 
					
						
							|  |  |  |                 if pos>brck_limit and rawtext[pos-1] in self._whitespace_chars: | 
					
						
							|  |  |  |                     # Eat a whitespace | 
					
						
							|  |  |  |                     pos -= 1 | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |                 elif (not postdot_phase and | 
					
						
							|  |  |  |                       pos > brck_limit and rawtext[pos-1] == '.'): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                     # Eat a dot | 
					
						
							|  |  |  |                     pos -= 1 | 
					
						
							|  |  |  |                     postdot_phase = True | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |                 # The next line will fail if we are *inside* a comment, | 
					
						
							|  |  |  |                 # but we shouldn't be. | 
					
						
							|  |  |  |                 elif (pos == brck_limit and brck_index > 0 and | 
					
						
							|  |  |  |                       rawtext[bracketing[brck_index-1][0]] == '#'): | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                     # Eat a comment | 
					
						
							|  |  |  |                     brck_index -= 2 | 
					
						
							|  |  |  |                     brck_limit = bracketing[brck_index][0] | 
					
						
							|  |  |  |                     pos = bracketing[brck_index+1][0] | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     # If we didn't eat anything, quit. | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if not postdot_phase: | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |                 # We didn't find a dot, so the expression end at the | 
					
						
							|  |  |  |                 # last identifier pos. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                 break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             ret = self._eat_identifier(rawtext, brck_limit, pos) | 
					
						
							|  |  |  |             if ret: | 
					
						
							|  |  |  |                 # There is an identifier to eat | 
					
						
							|  |  |  |                 pos = pos - ret | 
					
						
							|  |  |  |                 last_identifier_pos = pos | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |                 # Now, to continue the search, we must find a dot. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                 postdot_phase = False | 
					
						
							|  |  |  |                 # (the loop continues now) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             elif pos == brck_limit: | 
					
						
							| 
									
										
										
										
											2014-06-16 02:33:35 -04:00
										 |  |  |                 # We are at a bracketing limit. If it is a closing | 
					
						
							|  |  |  |                 # bracket, eat the bracket, otherwise, stop the search. | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                 level = bracketing[brck_index][1] | 
					
						
							|  |  |  |                 while brck_index > 0 and bracketing[brck_index-1][1] > level: | 
					
						
							|  |  |  |                     brck_index -= 1 | 
					
						
							|  |  |  |                 if bracketing[brck_index][0] == brck_limit: | 
					
						
							|  |  |  |                     # We were not at the end of a closing bracket | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  |                 pos = bracketing[brck_index][0] | 
					
						
							|  |  |  |                 brck_index -= 1 | 
					
						
							|  |  |  |                 brck_limit = bracketing[brck_index][0] | 
					
						
							|  |  |  |                 last_identifier_pos = pos | 
					
						
							|  |  |  |                 if rawtext[pos] in "([": | 
					
						
							|  |  |  |                     # [] and () may be used after an identifier, so we | 
					
						
							|  |  |  |                     # continue. postdot_phase is True, so we don't allow a dot. | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     # We can't continue after other types of brackets | 
					
						
							| 
									
										
										
										
											2013-01-01 22:25:59 +02:00
										 |  |  |                     if rawtext[pos] in "'\"": | 
					
						
							|  |  |  |                         # Scan a string prefix | 
					
						
							| 
									
										
										
										
											2013-01-01 22:32:42 +02:00
										 |  |  |                         while pos > 0 and rawtext[pos - 1] in "rRbBuU": | 
					
						
							| 
									
										
										
										
											2013-01-01 22:25:59 +02:00
										 |  |  |                             pos -= 1 | 
					
						
							|  |  |  |                         last_identifier_pos = pos | 
					
						
							| 
									
										
										
										
											2005-11-18 22:05:48 +00:00
										 |  |  |                     break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 # We've found an operator or something. | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return rawtext[last_identifier_pos:self.indexinrawtext] | 
					
						
							| 
									
										
										
										
											2014-06-16 19:01:01 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     import unittest | 
					
						
							|  |  |  |     unittest.main('idlelib.idle_test.test_hyperparser', verbosity=2) |