On Thu, May 26, 2005 at 04:50:35AM -0400, Jody Steele wrote: > self.list.set_sort_func(0, self.__Sort,(column0.get_sort_order,0)) > self.list.set_sort_func(1, self.__Sort,(column1.get_sort_order,1)) > self.list.set_sort_func(2, self.__Sort,(column2.get_sort_order,2))
I'm guessing these sort funcs are eating up the time. I would keep track of the total time spent in these sort funcs by incrementing some global variables. Or use the profiler. Dave Cook _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
