| 67 | |
| 68 | |
| 69 | class PageChanged(_PageChanged, NotebookTabChangeEvent): |
| 70 | |
| 71 | def __init__(self, old, new, *args, **kwargs): |
| 72 | _PageChanged.__init__(self, *args, **kwargs) |
| 73 | NotebookTabChangeEvent.__init__(self, old, new) |
| 74 | |
| 75 | |
| 76 | class PageClosing(_PageClosing, VetoAble): |
no outgoing calls
no test coverage detected