Esempio n. 1
0
File: problem.py Progetto: abrt/faf
    def crash_function(self):
        """
        Return the most common crash function among all backtraces of this
        report
        """

        return most_common_crash_function(self.backtraces)
Esempio n. 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)
Esempio n. 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)