Can somebody point me to a complete online reference for Python's tkinter module? Of course I've tried to find one by myself, but for some reason I can't, maybe I'm using the wrong keywords?
I'm not looking for a tutorial, instead I'd like to have a reference for all the available classes and attributes.
For example, if I write this code:
from tkinter import *
root = Tk()
root.title("My title")
I wonder: what optional arguments does the Tk class accept for instantiation? What are properties and methods for a Tk object? What arguments does title accept? And so on...
"Look at the source" is not an answer to this question, obviously ^^
(I'm using Python 3.2)
Thank you!