(self, event)
| 1233 | return "break" |
| 1234 | |
| 1235 | def linefeed_callback(self, event): |
| 1236 | # Insert a linefeed without entering anything (still autoindented) |
| 1237 | if self.reading: |
| 1238 | self.text.insert("insert", "\n") |
| 1239 | self.text.see("insert") |
| 1240 | else: |
| 1241 | self.newline_and_indent_event(event) |
| 1242 | return "break" |
| 1243 | |
| 1244 | def enter_callback(self, event): |
| 1245 | if self.executing and not self.reading: |
nothing calls this directly
no test coverage detected