(self)
| 21 | class InternalCommandHistory: |
| 22 | |
| 23 | def __init__(self): |
| 24 | self.__buffer = wx.CommandProcessor() |
| 25 | |
| 26 | def submit(self, command): |
| 27 | return self.__buffer.Submit(command) |
nothing calls this directly
no outgoing calls
no test coverage detected