Running the program through itself reveals that one end tag was

mislabeled.

(Using -c and then -e rearranges some comments, so I won't check that
in -- but it's a good test anyway.

Note that pindent is not perfect -- e.g. it doesn't know about
triple-quoted strings!)
This commit is contained in:
Guido van Rossum 2000-06-28 22:55:20 +00:00
parent 59811b189d
commit a04ff0fb53
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ def reformat_filter(input = sys.stdin, output = sys.stdout,
stepsize = STEPSIZE, tabsize = TABSIZE):
pi = PythonIndenter(input, output, stepsize, tabsize)
pi.reformat()
# end def reformat
# end def reformat_filter
class StringReader:
def __init__(self, buf):