HomeSort by relevance Sort by last modified time
    Searched refs:stopline (Results 1 - 8 of 8) sorted by null

  /external/python/cpython2/Lib/idlelib/
CodeContext.py 107 def get_context(self, new_topvisible, stopline=1, stopindent=0):
110 Stop when stopline or stopindent is reached. Return a tuple of context
114 assert stopline > 0
120 for linenum in xrange(new_topvisible, stopline-1, -1):
  /external/python/cpython3/Lib/idlelib/
codecontext.py 109 def get_context(self, new_topvisible, stopline=1, stopindent=0):
112 Stop when stopline or stopindent is reached. Return a tuple of context
116 assert stopline > 0
122 for linenum in range(new_topvisible, stopline-1, -1):
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
CodeContext.py 107 def get_context(self, new_topvisible, stopline=1, stopindent=0):
110 Stop when stopline or stopindent is reached. Return a tuple of context
114 assert stopline > 0
120 for linenum in xrange(new_topvisible, stopline-1, -1):
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
CodeContext.py 107 def get_context(self, new_topvisible, stopline=1, stopindent=0):
110 Stop when stopline or stopindent is reached. Return a tuple of context
114 assert stopline > 0
120 for linenum in xrange(new_topvisible, stopline-1, -1):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CodeContext.py 107 def get_context(self, new_topvisible, stopline=1, stopindent=0):
110 Stop when stopline or stopindent is reached. Return a tuple of context
114 assert stopline > 0
120 for linenum in xrange(new_topvisible, stopline-1, -1):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CodeContext.py 107 def get_context(self, new_topvisible, stopline=1, stopindent=0):
110 Stop when stopline or stopindent is reached. Return a tuple of context
114 assert stopline > 0
120 for linenum in xrange(new_topvisible, stopline-1, -1):
  /external/python/cpython2/Lib/idlelib/idle_test/
test_formatparagraph.py 55 def runcase(self, inserttext, stopline, expected):
61 for line in range(1, stopline):
  /external/python/cpython3/Lib/idlelib/idle_test/
test_paragraph.py 55 def runcase(self, inserttext, stopline, expected):
61 for line in range(1, stopline):

Completed in 125 milliseconds