Home | History | Annotate | Download | only in idlelib

Lines Matching refs:before

38                 # its status will be the same as the char before it, if should.
54 # its status will be the same as the char before it, if should.
79 raise ValueError("The index given is before the analyzed statement")
106 defined in openers (or at least has one before it), return the
109 If it is not surrounded by brackets, or the end of line comes before
113 before = self.indexbracket
114 while not self.isopener[before] or \
115 self.rawtext[self.bracketing[before][0]] not in openers or \
116 self.bracketing[before][1] > bracketinglevel:
117 before -= 1
118 if before < 0:
120 bracketinglevel = min(bracketinglevel, self.bracketing[before][1])
127 (self.stopatindex, len(self.rawtext)-self.bracketing[before][0]))
135 # before it.