summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-12-08 09:56:23 -0500
committerGitHub <noreply@github.com>2016-12-08 09:56:23 -0500
commitc5843bbdba5166d833c4cc2bf18ee95b470a8aa1 (patch)
tree5dc79571c8f9098474afe6b57c78f0a075491337
parent17f752d3be0b2f89b405976364653f081f522fb3 (diff)
parent1ca6f3bf272d8ba2c0d4161cc56a74c63c8afb82 (diff)
downloadpython-setuptools-git-c5843bbdba5166d833c4cc2bf18ee95b470a8aa1.tar.gz
Merge pull request #872 from scop/spelling
Spelling fixes
-rw-r--r--setuptools/command/build_py.py2
-rw-r--r--setuptools/tests/environment.py2
-rw-r--r--setuptools/tests/test_egg_info.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py
index 289e6fb8..b0314fd4 100644
--- a/setuptools/command/build_py.py
+++ b/setuptools/command/build_py.py
@@ -219,7 +219,7 @@ class build_py(orig.build_py, Mixin2to3):
@staticmethod
def _get_platform_patterns(spec, package, src_dir):
"""
- yield platfrom-specific path patterns (suitable for glob
+ yield platform-specific path patterns (suitable for glob
or fn_match) from a glob-based spec (such as
self.package_data or self.exclude_package_data)
matching package in src_dir.
diff --git a/setuptools/tests/environment.py b/setuptools/tests/environment.py
index b0e3bd36..c67898ca 100644
--- a/setuptools/tests/environment.py
+++ b/setuptools/tests/environment.py
@@ -56,5 +56,5 @@ def run_setup_py(cmd, pypath=None, path=None,
data = data.decode()
data = unicodedata.normalize('NFC', data)
- # communciate calls wait()
+ # communicate calls wait()
return proc.returncode, data
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py
index dc41bc1f..75ae18df 100644
--- a/setuptools/tests/test_egg_info.py
+++ b/setuptools/tests/test_egg_info.py
@@ -237,7 +237,7 @@ class TestEggInfo(object):
pkginfo = os.path.join(egg_info_dir, 'PKG-INFO')
assert 'Requires-Python: >=1.2.3' in open(pkginfo).read().split('\n')
- def test_manifest_maker_warning_suppresion(self):
+ def test_manifest_maker_warning_suppression(self):
fixtures = [
"standard file not found: should have one of foo.py, bar.py",
"standard file 'setup.py' not found"