Home | History | Annotate | Download | only in idlelib

Lines Matching refs:continuation

205     # based) of the non-continuation lines.
206 # Creates self.{goodlines, continuation}.
229 # whether & why the last stmt is a continuation.
230 continuation = C_NONE
303 continuation = C_STRING_FIRST_LINE
305 continuation = C_STRING_NEXT_LINES
319 continuation = C_BACKSLASH
323 # String continuation takes precedence over bracket
324 # continuation, which beats backslash continuation.
325 if (continuation != C_STRING_FIRST_LINE
326 and continuation != C_STRING_NEXT_LINES and level > 0):
327 continuation = C_BRACKET
328 self.continuation = continuation
332 assert (continuation == C_NONE) == (goodlines[-1] == lno)
338 return self.continuation
340 # study1 was sufficient to determine the continuation status,
355 # if continuation is C_BRACKET, index of last open bracket
375 # The stmt str[p:q] isn't a continuation, but may be blank
463 # Assuming continuation is C_BRACKET, return the number
468 assert self.continuation == C_BRACKET
495 # continuation is C_BACKSLASH).
502 # Assuming continuation is C_BACKSLASH, return the number of spaces
508 assert self.continuation == C_BACKSLASH