Commit 82af3811 authored by Ezio Melotti's avatar Ezio Melotti

#18741: fix more typos. Patch by Févry Thibault.

parent 8e4909b4
...@@ -545,7 +545,7 @@ class install(Command): ...@@ -545,7 +545,7 @@ class install(Command):
self.extra_dirs = extra_dirs self.extra_dirs = extra_dirs
def change_roots(self, *names): 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: for name in names:
attr = "install_" + name attr = "install_" + name
setattr(self, attr, change_root(self.root, getattr(self, attr))) setattr(self, attr, change_root(self.root, getattr(self, attr)))
......
...@@ -175,7 +175,7 @@ class sdist(Command): ...@@ -175,7 +175,7 @@ class sdist(Command):
depends on the user's options. depends on the user's options.
""" """
# new behavior when using a template: # 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 # even if MANIFEST.in or setup.py are not changed
# the user might have added some files in the tree that # the user might have added some files in the tree that
# need to be included. # need to be included.
......
...@@ -77,7 +77,7 @@ class BuildCLibTestCase(support.TempdirManager, ...@@ -77,7 +77,7 @@ class BuildCLibTestCase(support.TempdirManager,
cmd.compiler = FakeCompiler() 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'})] lib = [('name', {'sources': 'notvalid'})]
self.assertRaises(DistutilsSetupError, cmd.build_libraries, lib) self.assertRaises(DistutilsSetupError, cmd.build_libraries, lib)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment