Skip to content

Commit

Permalink
update a docstring and add a str import for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicexplorer committed Oct 19, 2018
1 parent f8e13d1 commit 4fc332c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@


class NativeBuildStepSettingsBase(Subsystem, MirroredTargetOptionMixin):
"""Holds options which are understood by all parts of the compile and link pipeline.
NB: This is separate from NativeBuildSettings, which is used to store options controlling pants
behavior. Rather, this subsystem stores options which are typically interpreted into command-line
arguments or environment variables for a compiler or linker invocation.
"""

mirrored_option_to_kwarg_map = {
'fatal_warnings': 'fatal_warnings',
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/option/global_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import multiprocessing
import os
import sys
from builtins import str

from pants.base.build_environment import (get_buildroot, get_default_pants_config_file,
get_pants_cachedir, get_pants_configdir, pants_version)
Expand Down

0 comments on commit 4fc332c

Please sign in to comment.