Home
last modified time | relevance | path

Searched refs:stopline (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/idlelib/
Dcodecontext.py149 def get_context(self, new_topvisible, stopline=1, stopindent=0): argument
158 assert stopline > 0
164 for linenum in range(new_topvisible, stopline-1, -1):
/third_party/python/Lib/idlelib/idle_test/
Dtest_codecontext.py179 gc(1, stopline=0)
203 eq(gc(11, stopline=2), ([(2, 0, 'class C1:', 'class'),
207 eq(gc(11, stopline=3), ([(7, 4, ' def compare(self):', 'def'),
210 eq(gc(11, stopline=8), ([(8, 8, ' if a > b:', 'if'),
Dtest_format.py58 def runcase(self, inserttext, stopline, expected): argument
64 for line in range(1, stopline):