(self, evt)
| 92 | print(None) |
| 93 | |
| 94 | def cmd_print(self, evt): |
| 95 | print("=" * 20) |
| 96 | for x in self.mainFrame.command.GetCommands(): |
| 97 | print("{}{} {}".format("==> " if x == self.mainFrame.command.GetCurrentCommand() else "", x.GetName(), x)) |
| 98 | |
| 99 | def gc_collect(self, evt): |
| 100 | print(gc.collect()) |
nothing calls this directly
no outgoing calls
no test coverage detected