I am having difficulty looking for this on the internet - my search skills aren't up the scratch. I can remember the event names, but I always have to look up what type of angle brackets to use
Some tkinter events are bound with words in <> for example
tab4e.bind("<Button-1>",f_x)
Others are in <<>>, for example
nbook.bind('<<NotebookTabChanged>>', handle_tab_changed)
Is there any reason why some bindings are in <> and others in <<>>?
Even though the examples are given in python, I've added TCL, just in case a TCL coder might know the answer.