Unfortunately, GTK is rather noisy with its warnings and this doesn't
*necessarily* indicate that there's a bug somewhere (although there could
be). Do you see any problems in your application?
You can make a GTK program abort on the first warning using a special
command line option, --g-fatal-warnings. With this you can get a stack
trace with gdb when the warning occurs. Doing it with Python is a little
tricky, but here's how you can do it:
$ gdb python3
...
(gdb) run <your program>.py --g-fatal-warnings
Then you should be able to get a stack trace, debug, etc. when one of
those warnings occurs.
Scott