I have tkinter code that binds 2 keys.
self.TKroot.bind('<Cancel>', self._callback_main_debugger_window_create_keystroke)
self.TKroot.bind('<Pause>', self._callback_popout_window_create_keystroke)
On a PC, these map to BREAK and CONTROL+BREAK.
Can't figure out how to invoke them on a Mac keyboard. What keyboard keys do I need to press to get these 2 events to happen in tkinter?