summaryrefslogtreecommitdiff
path: root/Lib/distutils
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-17 16:13:22 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-17 16:13:22 +0300
commit8ae554e02011fa61fe225bea4ab78dfac77c28ab (patch)
tree184e72cba7114234d55bfef00f96aceb44b53268 /Lib/distutils
parentd1f44be1d8b6e155555e318165b59709e21a0938 (diff)
parentdffd84e2ad12d684d6600fdfe33a8083ac25bdc5 (diff)
downloadcpython-8ae554e02011fa61fe225bea4ab78dfac77c28ab.tar.gz
#18741: merge with 3.3.
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/install.py2
-rw-r--r--Lib/distutils/command/sdist.py2
-rw-r--r--Lib/distutils/tests/test_build_clib.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index cfc5d5e472..456511cdfb 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -530,7 +530,7 @@ class install(Command):
self.extra_dirs = extra_dirs
def change_roots(self, *names):
- """Change the install direcories pointed by name using root."""
+ """Change the install directories pointed by name using root."""
for name in names:
attr = "install_" + name
setattr(self, attr, change_root(self.root, getattr(self, attr)))
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index a9429a4296..116f67ef9b 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -175,7 +175,7 @@ class sdist(Command):
depends on the user's options.
"""
# new behavior when using a template:
- # the file list is recalculated everytime because
+ # the file list is recalculated every time because
# even if MANIFEST.in or setup.py are not changed
# the user might have added some files in the tree that
# need to be included.
diff --git a/Lib/distutils/tests/test_build_clib.py b/Lib/distutils/tests/test_build_clib.py
index 69bd2bf624..ee1c04162b 100644
--- a/Lib/distutils/tests/test_build_clib.py
+++ b/Lib/distutils/tests/test_build_clib.py
@@ -77,7 +77,7 @@ class BuildCLibTestCase(support.TempdirManager,
cmd.compiler = FakeCompiler()
- # build_libraries is also doing a bit of typoe checking
+ # build_libraries is also doing a bit of typo checking
lib = [('name', {'sources': 'notvalid'})]
self.assertRaises(DistutilsSetupError, cmd.build_libraries, lib)