diff options
author | Guido van Rossum <guido@python.org> | 2000-06-28 22:55:20 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-06-28 22:55:20 (GMT) |
commit | a04ff0fb53913b1c821dac4278331728dbdbfe51 (patch) | |
tree | 895dbe32b4473491cac033aad8c3b0e6b1de5bc6 | |
parent | 59811b189d1b2ac60bad1d2b2bd84437f13a455f (diff) | |
download | cpython-a04ff0fb53913b1c821dac4278331728dbdbfe51.zip cpython-a04ff0fb53913b1c821dac4278331728dbdbfe51.tar.gz cpython-a04ff0fb53913b1c821dac4278331728dbdbfe51.tar.bz2 |
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!)
-rwxr-xr-x | Tools/scripts/pindent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/pindent.py b/Tools/scripts/pindent.py index 3979268..1c27b13 100755 --- a/Tools/scripts/pindent.py +++ b/Tools/scripts/pindent.py @@ -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): |