Get rid of most of the remaining uses of <>. There's still Tools/* thogh.

This commit is contained in:
Neal Norwitz 2006-08-29 04:39:12 +00:00
parent c4996ba794
commit 3bd844e695
16 changed files with 23 additions and 49 deletions

View file

@ -83,7 +83,7 @@ def main():
print 'Funny line:', line,
continue
filename, lineno = prog.group(1, 2)
if not curfile or filename <> curfile.filename:
if not curfile or filename != curfile.filename:
if curfile: curfile.finish()
curfile = FileObj(filename)
curfile.process(lineno, line[n:])