a6681df3ff34de8e2b049ee2baf6ab78540e2581,reframe/core/meta.py,RegressionTestMeta,__init__,#Any#Any#Any#Any#,14

Before Change



        // Filter the methods that are defined in this class but are not final
        for v in namespace.values():
            if callable(v) and not hasattr(v, "_final"):
                cls._final_methods.discard(v.__name__)

        if hasattr(cls, "_extended_test") and cls._extended_test:
            return

        for v in namespace.values():

After Change


                              if hasattr(v, "_rfm_final")}

        // Add the final functions from its parents
        cls._final_methods.update(*(b._final_methods for b in bases
                                    if hasattr(b, "_final_methods")))

        if hasattr(cls, "_rfm_special_test") and cls._rfm_special_test:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: eth-cscs/reframe
Commit Name: a6681df3ff34de8e2b049ee2baf6ab78540e2581
Time: 2020-04-13
Author: eirini.koutsaniti@cscs.ch
File Name: reframe/core/meta.py
Class Name: RegressionTestMeta
Method Name: __init__


Project Name: HazyResearch/fonduer
Commit Name: 506a594e8e5fd755bc02ea2c5fe6437b8b682057
Time: 2018-08-14
Author: lwhsiao@stanford.edu
File Name: fonduer/utils/udf.py
Class Name: UDFRunner
Method Name: apply_st


Project Name: matplotlib/matplotlib
Commit Name: 34b8eb46e5de6b760bc131e461755042716e259d
Time: 2018-02-07
Author: story645@gmail.com
File Name: lib/matplotlib/category.py
Class Name: StrCategoryConverter
Method Name: convert