overrides: Add comparison operators to Gtk.TextIter
Submitted by Simon Feltman
Link to original bug (#736287)
Description
Comparing Gtk.TextIter instances defaults to pointer comparison of the held iter (PyGIBoxed defaults to this). We should override Gtk.TextIter to add all the standard comparisons. The following should really be True:
from gi.repository import Gtk buf = Gtk.TextBuffer() buf.get_start_iter() == buf.get_start_iter() False