Whitespace normalization.

This commit is contained in:
Tim Peters 2001-01-17 08:48:39 +00:00
parent a888540593
commit 70c4378dbc
57 changed files with 2434 additions and 2440 deletions

View file

@ -1,4 +1,3 @@
class Delegator:
# The cache is only used to be able to change delegates!

View file

@ -110,4 +110,3 @@ def load(dir):
os.path.join(homedir, ".idle")))
idleconf = IdleConfParser()

View file

@ -86,4 +86,3 @@ class History:
self.text.mark_set("insert", "end-1c")
self.text.insert("insert", s)
self.text.see("insert")

View file

@ -189,4 +189,3 @@ class LastOpenBracketFinder:
icis=self.editwin.is_char_in_string):
return icis(startindex + "%dc" % offset)
return inner

View file

@ -340,4 +340,3 @@ if __name__ == "__main__":
else:
file = args[1]
riExec(id, file)

View file

@ -62,4 +62,3 @@ if __name__ == '__main__':
text = infile.read()
defs = parse(text)
writefile(outfile,defs)

View file

@ -52,7 +52,7 @@ spprog = re.compile('[\n@{}&<>]') # Special characters in
miprog = re.compile('^\* ([^:]*):(:|[ \t]*([^\t,\n.]+)([^ \t\n]*))[ \t\n]*')
class HTMLNode:
"""Some of the parser's functionality is separated into this class.