Skip to content

Commit

Permalink
Whitespace normalization.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.python.org/projects/python/trunk@52378 6015fed2-1504-0410-9fe1-9d1591cc4771
  • Loading branch information
tim.peters committed Oct 18, 2006
1 parent 9271a29 commit 6f3ccbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Lib/distutils/unixccompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _darwin_compiler_fixup(compiler_so, cc_args):
except ValueError:
pass

# Check if the SDK that is used during compilation actually exists,
# Check if the SDK that is used during compilation actually exists,
# the universal build requires the usage of a universal SDK and not all
# users have that installed by default.
sysroot = None
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def remove_files(name):


class ImportTest(unittest.TestCase):

def testCaseSensitivity(self):
# Brief digression to test that import is case-sensitive: if we got this
# far, we know for sure that "random" exists.
Expand Down Expand Up @@ -56,7 +56,7 @@ def test_with_extension(ext):
mod = __import__(TESTFN)
except ImportError, err:
self.fail("import from %s failed: %s" % (ext, err))

self.assertEquals(mod.a, a,
"module loaded (%s) but contents invalid" % mod)
self.assertEquals(mod.b, b,
Expand Down
2 changes: 1 addition & 1 deletion Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def buildPython():
for dn in dirnames:
os.chmod(os.path.join(dirpath, dn), 0775)
os.chown(os.path.join(dirpath, dn), -1, gid)


for fn in filenames:
if os.path.islink(fn):
Expand Down

0 comments on commit 6f3ccbc

Please sign in to comment.