diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:11:40 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:11:40 (GMT) |
commit | b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0 (patch) | |
tree | fecebf5a3c00ff7f3194ff1296e4cb26468634f0 /Lib/distutils | |
parent | 9ff79f7c46fc13bb0855d33ab75acd578a950abf (diff) | |
download | cpython-b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0.zip cpython-b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0.tar.gz cpython-b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0.tar.bz2 |
#18741: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/sdist.py | 2 | ||||
-rw-r--r-- | Lib/distutils/tests/test_build_clib.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 9b1c36a..3c675d1 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -545,7 +545,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 a9429a4..116f67e 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 69bd2bf..ee1c041 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) |