It's been widely discussed that a few things changed from Python2/Gtk2 to Python3/Gtk+3. I got along with that so far, but there is one thing I am having trouble with: Where did all the constants go?
In Python 2.x I could just do gtk.RESPONSE_OK
and now I can do (after a lot of trying around, I found) Gtk.ResponseType.OK
Question: Is there any complete and comprehensive list/documentation of where the specific constants went?