8f848a2684ab0ec0e12d313757c7cea0736d7a3d,gui/mozregui/report.py,ReportModel,attach_bisector,#ReportModel#Any#,72

Before Change


        bisector.step_started.connect(self.step_started)
        bisector.step_build_found.connect(self.step_build_found)
        bisector.step_testing.connect(self.step_testing)
        bisector.step_finished.connect(self.step_finished)
        bisector.started.connect(self.started)
        bisector.finished.connect(self.finished)

    def rowCount(self, parent=QModelIndex()):

After Change



    @Slot(object)
    def attach_bisector(self, bisector):
        slots = ("step_started", "step_build_found", "step_testing",
                 "step_finished", "started", "finished")
        if self.bisector:
            // disconnect previous bisector
            for name in slots:
                signal = getattr(self.bisector, name)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: mozilla/mozregression
Commit Name: 8f848a2684ab0ec0e12d313757c7cea0736d7a3d
Time: 2015-03-29
Author: j.parkouss@gmail.com
File Name: gui/mozregui/report.py
Class Name: ReportModel
Method Name: attach_bisector


Project Name: ilastik/ilastik
Commit Name: 9be131f0e7c77086ab4c3cad7469887bd1d55c89
Time: 2013-05-15
Author: ben-heuer@web.de
File Name: ilastik/widgets/featureDlg.py
Class Name:
Method Name:


Project Name: ilastik/ilastik
Commit Name: 098408171dd0f2fd01cb113df78b23e4b6c89886
Time: 2013-05-03
Author: ben-heuer@web.de
File Name: ilastik/widgets/featureDlg.py
Class Name:
Method Name: