(self)
| 136 | aliases = Dict() |
| 137 | |
| 138 | def start(self): |
| 139 | if self.force or ask_yes_no("Really delete all ipython history? ", |
| 140 | default="no", interrupt="no"): |
| 141 | HistoryTrim.start(self) |
| 142 | |
| 143 | class HistoryApp(Application): |
| 144 | name = u'ipython-history' |
nothing calls this directly
no test coverage detected