Commit f4b20689 authored by Ezio Melotti's avatar Ezio Melotti

#11565: Merge with 3.1.

parents c5335c63 877161a9
...@@ -359,7 +359,7 @@ class Command: ...@@ -359,7 +359,7 @@ class Command:
not self.force, dry_run=self.dry_run) not self.force, dry_run=self.dry_run)
def move_file (self, src, dst, level=1): def move_file (self, src, dst, level=1):
"""Move a file respectin dry-run flag.""" """Move a file respecting dry-run flag."""
return file_util.move_file(src, dst, dry_run=self.dry_run) return file_util.move_file(src, dst, dry_run=self.dry_run)
def spawn(self, cmd, search_path=1, level=1): def spawn(self, cmd, search_path=1, level=1):
......
...@@ -155,7 +155,7 @@ class CygwinCCompiler(UnixCCompiler): ...@@ -155,7 +155,7 @@ class CygwinCCompiler(UnixCCompiler):
self.dll_libraries = get_msvcr() self.dll_libraries = get_msvcr()
def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
"""Compiles the source by spawing GCC and windres if needed.""" """Compiles the source by spawning GCC and windres if needed."""
if ext == '.rc' or ext == '.res': if ext == '.rc' or ext == '.res':
# gcc needs '.res' and '.rc' compiled to object files !!! # gcc needs '.res' and '.rc' compiled to object files !!!
try: try:
......
...@@ -39,7 +39,7 @@ class cleanTestCase(support.TempdirManager, ...@@ -39,7 +39,7 @@ class cleanTestCase(support.TempdirManager,
self.assertTrue(not os.path.exists(path), self.assertTrue(not os.path.exists(path),
'%s was not removed' % path) '%s was not removed' % path)
# let's run the command again (should spit warnings but suceed) # let's run the command again (should spit warnings but succeed)
cmd.all = 1 cmd.all = 1
cmd.ensure_finalized() cmd.ensure_finalized()
cmd.run() cmd.run()
......
...@@ -62,7 +62,7 @@ class InstallTestCase(support.TempdirManager, ...@@ -62,7 +62,7 @@ class InstallTestCase(support.TempdirManager,
if sys.version < '2.6': if sys.version < '2.6':
return return
# preparing the environement for the test # preparing the environment for the test
self.old_user_base = site.USER_BASE self.old_user_base = site.USER_BASE
self.old_user_site = site.USER_SITE self.old_user_site = site.USER_SITE
self.tmpdir = self.mkdtemp() self.tmpdir = self.mkdtemp()
......
...@@ -311,7 +311,7 @@ class SDistTestCase(PyPIRCCommandTestCase): ...@@ -311,7 +311,7 @@ class SDistTestCase(PyPIRCCommandTestCase):
# adding a file # adding a file
self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#')
# make sure build_py is reinitinialized, like a fresh run # make sure build_py is reinitialized, like a fresh run
build_py = dist.get_command_obj('build_py') build_py = dist.get_command_obj('build_py')
build_py.finalized = False build_py.finalized = False
build_py.ensure_finalized() build_py.ensure_finalized()
......
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