8f848a2684ab0ec0e12d313757c7cea0736d7a3d,gui/mozregui/report.py,ReportModel,attach_bisector,#ReportModel#,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)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
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: commonsense/conceptnet5
Commit Name: 3f43e40494c1add760b3fb5cb2a9abc3284d4b22
Time: 2016-09-29
Author: rob@luminoso.com
File Name: conceptnet5/db/connection.py
Class Name:
Method Name: get_db_connection
Project Name: mozilla/mozregression
Commit Name: 62ff132b35a825e97f372ef2d2acdcb73db76917
Time: 2015-03-28
Author: j.parkouss@gmail.com
File Name: gui/mozregui/main.py
Class Name:
Method Name: