def jump_to_blockD(self):
end = len(self.b)
row, col = self.w.cursor
while row <= end:
try:
new_col = self.b[row].index('def')
self.w.cursor = row, new_col
break
except ValueError:
pass
row += 1
def jump_to_blockU(self):
end = 0
row, col = self.w.cursor
while row >= end:
try:
new_col = self.b[row].rindex('def')
self.w.cursor = row, new_col
break
except ValueError:
pass
row -= 1
--
https://mail.python.org/mailman/listinfo/python-list
