67b16e6ef9322f030bb5840a16e2d989cad397a2,src/python/pants/option/options_bootstrapper.py,OptionsBootstrapper,get_full_options,#OptionsBootstrapper#Any#,94

Before Change


    if not self._full_options:
      // Note: Don"t inline this into the Options() call, as this populates
      // self._post_bootstrap_config, which is another argument to that call.
      bootstrap_options = self.get_bootstrap_options()
      self._full_options = Options(self._env,
                                   self._post_bootstrap_config,
                                   known_scope_infos,
                                   args=self._args,

After Change


    if key not in self._full_options:
      // Note: Don"t inline this into the Options() call, as this populates
      // self._post_bootstrap_config, which is another argument to that call.
      bootstrap_option_values = self.get_bootstrap_options().for_global_scope()
      self._full_options[key] = Options.create(self._env,
                                               self._post_bootstrap_config,
                                               known_scope_infos,
                                               args=self._args,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: pantsbuild/pants
Commit Name: 67b16e6ef9322f030bb5840a16e2d989cad397a2
Time: 2015-08-14
Author: john.sirois@gmail.com
File Name: src/python/pants/option/options_bootstrapper.py
Class Name: OptionsBootstrapper
Method Name: get_full_options


Project Name: pantsbuild/pants
Commit Name: 1148b07af07456d7e0495f4613803cb34993d689
Time: 2017-11-04
Author: kwlzn@users.noreply.github.com
File Name: src/python/pants/bin/pants_runner.py
Class Name: PantsRunner
Method Name: run


Project Name: pantsbuild/pants
Commit Name: e40de9b622e17c8685f44cb2503bf8452be07f25
Time: 2015-01-09
Author: zundel@squareup.com
File Name: src/python/pants/bin/goal_runner.py
Class Name: GoalRunner
Method Name: setup