1. Official Python Documentation: The tkinter documentation lists unbind(sequence, funcid=None) as a method of the tkinter.Misc class, which is a base class for all widgets. This confirms it is invoked on a widget object and requires the sequence (event name) as an argument.
Source: Python 3 Documentation, The Python Standard Library, tkinter — Python interface to Tcl/Tk, Section 27.1.10. Binding events. (docs.python.org/3/library/tkinter.html#binding-events)
2. University Courseware: Course materials on GUI programming in Python consistently demonstrate this usage. For example, lecture notes explain that to remove a binding, one calls the unbind method on the specific widget instance, providing the event pattern as an argument.
Source: University of Michigan, SI 507 - Intermediate Programming, "Lecture 18: GUIs and Tkinter". The notes show the syntax widget.unbind(event) for removing event handlers.
3. Authoritative Technical Resource: "An Introduction to Tkinter" by Fredrik Lundh, a widely respected resource, explicitly states: "To unbind a handler, use the unbind method. This method takes the event sequence as the first argument."
Source: Lundh, F. (1999). An Introduction to Tkinter. Section: "The bind method". (effbot.org/tkinterbook/tkinter-events-and-bindings.htm)