50777202e6e30750f8e60a21329ea3223c721038,src/python/pants/backend/python/tasks/python_isort.py,IsortPythonTask,execute,#IsortPythonTask#Any#,56

Before Change



  def execute(self, test_output_file=None):

    if self.options.skip:
      return

    sources = self._calculate_isortable_python_sources(self.context.target_roots)

    if not sources:
      logging.debug(self.NOOP_MSG_HAS_TARGET_BUT_NO_SOURCE)

After Change



  def execute(self, test_output_file=None):
    sources = self._calculate_isortable_python_sources(
      self.get_targets(self.is_non_synthetic_python_target))

    if not sources:
      logging.debug(self.NOOP_MSG_HAS_TARGET_BUT_NO_SOURCE)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: pantsbuild/pants
Commit Name: 50777202e6e30750f8e60a21329ea3223c721038
Time: 2018-01-25
Author: benjyw@gmail.com
File Name: src/python/pants/backend/python/tasks/python_isort.py
Class Name: IsortPythonTask
Method Name: execute


Project Name: pantsbuild/pants
Commit Name: 50777202e6e30750f8e60a21329ea3223c721038
Time: 2018-01-25
Author: benjyw@gmail.com
File Name: contrib/python/src/python/pants/contrib/python/checks/tasks2/python_eval.py
Class Name: PythonEval
Method Name: execute


Project Name: pantsbuild/pants
Commit Name: 7a1c105fa2d0318c5533d4fac98fb6bed911ef85
Time: 2018-02-01
Author: benjyw@gmail.com
File Name: contrib/python/src/python/pants/contrib/python/checks/tasks/python_eval.py
Class Name: PythonEval
Method Name: execute