Home | History | Annotate | Download | only in idlelib

Lines Matching refs:after

121         after = self.indexbracket + 1
122 while after < len(self.bracketing) and \
123 self.bracketing[after][1] >= bracketinglevel:
124 after += 1
128 if after >= len(self.bracketing) or \
129 self.bracketing[after][0] > len(self.rawtext):
134 # We are after a real char, so it is a ')' and we give the index
138 len(self.rawtext)-(self.bracketing[after][0]-1)))
230 # [] and () may be used after an identifier, so we
234 # We can't continue after other types of brackets