Update OS X text

This commit is contained in:
Samuel Keeley
2015-11-13 20:57:25 -08:00
parent f1419e2ffe
commit b44ae33ca0
7 changed files with 12 additions and 12 deletions

View File

@@ -51,7 +51,7 @@ try:
except ImportError:
# munkilib is not available
def listdir(path):
"""OSX HFS+ string encoding safe listdir().
"""OS X HFS+ string encoding safe listdir().
Args:
path: path to list contents of
@@ -60,7 +60,7 @@ except ImportError:
"""
# if os.listdir() is supplied a unicode object for the path,
# it will return unicode filenames instead of their raw fs-dependent
# version, which is decomposed utf-8 on OSX.
# version, which is decomposed utf-8 on OS X.
#
# we use this to our advantage here and have Python do the decoding
# work for us, instead of decoding each item in the output list.

View File

@@ -587,7 +587,7 @@ def main():
'--installer_choices_xml', '--installer-choices-xml',
action='store_true',
help=('Generate installer choices for metapackages. '
'Note: Requires Mac OS X 10.6.6 or later.')
'Note: Requires OS X 10.6.6 or later.')
)
apple_options.add_option(
'--installer_environment', '--installer-environment', '-E',

View File

@@ -14,7 +14,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""FoundationPlist.py -- a tool to generate and parse MacOSX .plist files.
"""FoundationPlist.py -- a tool to generate and parse OS X .plist files.
This is intended as a drop-in replacement for Python's included plistlib,
with a few caveats:

View File

@@ -2536,7 +2536,7 @@ def cleanUpTmpDir():
def listdir(path):
"""OSX HFS+ string encoding safe listdir().
"""OS X HFS+ string encoding safe listdir().
Args:
path: path to list contents of
@@ -2545,7 +2545,7 @@ def listdir(path):
"""
# if os.listdir() is supplied a unicode object for the path,
# it will return unicode filenames instead of their raw fs-dependent
# version, which is decomposed utf-8 on OSX.
# version, which is decomposed utf-8 on OS X.
#
# we use this to our advantage here and have Python do the decoding
# work for us, instead of decoding each item in the output list.