Beispiel #1
0
    def crash_function(self):
        """
        Return the most common crash function among all backtraces of this
        report
        """

        return most_common_crash_function(self.backtraces)
Beispiel #2
0
    def crash_function(self) -> str:
        """
        Return the most common crash function among all backtraces of this
        report
        """

        return most_common_crash_function(self.backtraces)
Beispiel #3
0
    def crash_function(self) -> str:
        """
        Return the most common crash function among all backtraces of this
        report
        """

        # self.backtraces is a backref from ReportBacktrace.
        # pylint: disable=no-member
        return most_common_crash_function(self.backtraces)