(self, lineno)
| 747 | return "break" |
| 748 | |
| 749 | def gotoline(self, lineno): |
| 750 | if lineno is not None and lineno > 0: |
| 751 | self.text.mark_set("insert", "%d.0" % lineno) |
| 752 | self.text.tag_remove("sel", "1.0", "end") |
| 753 | self.text.tag_add("sel", "insert", "insert +1l") |
| 754 | self.center() |
| 755 | |
| 756 | def ispythonsource(self, filename): |
| 757 | if not filename or os.path.isdir(filename): |
no test coverage detected