Whitespace normalization.

This commit is contained in:
Tim Peters 2006-05-23 21:54:23 +00:00
parent 1bddfb84ee
commit 211219af4f
4 changed files with 1019 additions and 1020 deletions

View File

@ -97,7 +97,7 @@ def get_platform ():
r'<string>(.*?)</string>', f.read()) r'<string>(.*?)</string>', f.read())
f.close() f.close()
if m is not None: if m is not None:
macver = '.'.join(m.group(1).split('.')[:2]) macver = '.'.join(m.group(1).split('.')[:2])
# else: fall back to the default behaviour # else: fall back to the default behaviour
if macver: if macver:

View File

@ -73,4 +73,3 @@ def unpack(fmt, s):
except KeyError: except KeyError:
o = _compile(fmt) o = _compile(fmt)
return o.unpack(s) return o.unpack(s)