GNOME Bugzilla – Bug 654056
pygobject overrides ListStore.append, but not ListStore.prepend
Last modified: 2011-08-13 10:05:20 UTC
Created attachment 191365 [details] [review] patch pygobject provides a special binding for Gtk.ListStore.append() which allows the caller to append a row to a ListStore and assign values to it in a single step. There should be a similar binding for the analogous method Gtk.ListStore.prepend(). Here's a patch.
Comment on attachment 191365 [details] [review] patch Looks good but it needs a unit test in tests/test_overrides.py
Created attachment 191371 [details] [review] Updated patch with unit test.