Whitespace normalization, via reindent.py.

This commit is contained in:
Tim Peters 2004-07-18 06:25:50 +00:00
parent 182b5aca27
commit 3d7d372ce3
13 changed files with 49 additions and 53 deletions

View file

@ -6,4 +6,3 @@
Extension("noddy3", ["noddy3.c"]),
Extension("noddy4", ["noddy4.c"]),
])

View file

@ -211,4 +211,3 @@
if __name__ == "__main__":
import doctest, __main__
doctest.testmod(__main__)

View file

@ -58,5 +58,3 @@ def _match_long_opt (self, opt):
(options, args) = parser.parse_args(["-F", "bar"])
assert options.file == "bar", options.file
print "ok: case insensitive short options work"

View file

@ -35,7 +35,7 @@ def handleSlideshow(slideshow):
def handleSlides(slides):
for slide in slides:
handleSlide(slide)
handleSlide(slide)
def handleSlide(slide):
handleSlideTitle(slide.getElementsByTagName("title")[0])

View file

@ -3,11 +3,11 @@
class OptionParser (optparse.OptionParser):
def check_required (self, opt):
option = self.get_option(opt)
option = self.get_option(opt)
# Assumes the option's 'default' is set to None!
if getattr(self.values, option.dest) is None:
self.error("%s option not supplied" % option)
# Assumes the option's 'default' is set to None!
if getattr(self.values, option.dest) is None:
self.error("%s option not supplied" % option)
parser = OptionParser()

View file

@ -11,13 +11,13 @@ def main():
nwords = len(words)
nrows = (nwords + ncols - 1) / ncols
for irow in range(nrows):
for icol in range(ncols):
i = irow + icol * nrows
if 0 <= i < nwords:
word = words[i]
else:
word = ""
print "%-*s" % (colwidth, word),
print
for icol in range(ncols):
i = irow + icol * nrows
if 0 <= i < nwords:
word = words[i]
else:
word = ""
print "%-*s" % (colwidth, word),
print
main()

View file

@ -4,16 +4,16 @@
l = []
try:
while 1:
l = l + raw_input().split()
while 1:
l = l + raw_input().split()
except EOFError:
pass
pass
l.sort()
for x in l[:]:
while l.count(x) > 1: l.remove(x)
while l.count(x) > 1: l.remove(x)
ncols = 5
nrows = (len(l)+ncols-1)/ncols
for i in range(nrows):
for j in range(i, len(l), nrows):
print l[j].ljust(10),
print
for j in range(i, len(l), nrows):
print l[j].ljust(10),
print

View file

@ -438,8 +438,8 @@ def openfile(file):
return p
def usage():
print usage_mode
sys.exit(0)
print usage_mode
sys.exit(0)
def do_it(args = None):
if not args:

View file

@ -5,28 +5,28 @@
# change this module too.
try:
import string
import string
except:
print """Could not import the standard "string" module.
Please check your PYTHONPATH environment variable."""
sys.exit(1)
print """Could not import the standard "string" module.
Please check your PYTHONPATH environment variable."""
sys.exit(1)
try:
import regex_syntax
import regex_syntax
except:
print """Could not import the standard "regex_syntax" module. If this is
a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
sys.exit(1)
print """Could not import the standard "regex_syntax" module. If this is
a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
sys.exit(1)
import os
for dir in sys.path:
file = os.path.join(dir, "string.py")
if os.path.isfile(file):
test = os.path.join(dir, "test")
if os.path.isdir(test):
# Add the "test" directory to PYTHONPATH.
sys.path = sys.path + [test]
file = os.path.join(dir, "string.py")
if os.path.isfile(file):
test = os.path.join(dir, "test")
if os.path.isdir(test):
# Add the "test" directory to PYTHONPATH.
sys.path = sys.path + [test]
import regrtest # Standard Python tester.
import regrtest # Standard Python tester.
regrtest.main()