diff options
| author | Tim Peters <tim.peters@gmail.com> | 2001-09-04 06:37:28 +0000 | 
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2001-09-04 06:37:28 +0000 | 
| commit | 83e7ccc9fdc9a5e1220fb14a173ed8f391380966 (patch) | |
| tree | 663ed709ea31c2758739e59fefabab6e107951ff /Tools/scripts/fixdiv.py | |
| parent | bc1c7a085449302edcef3e7c2faae2433a020e39 (diff) | |
| download | cpython-git-83e7ccc9fdc9a5e1220fb14a173ed8f391380966.tar.gz | |
Whitespace normalization.
Diffstat (limited to 'Tools/scripts/fixdiv.py')
| -rwxr-xr-x | Tools/scripts/fixdiv.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/scripts/fixdiv.py b/Tools/scripts/fixdiv.py index c6396d88a1..643a58a376 100755 --- a/Tools/scripts/fixdiv.py +++ b/Tools/scripts/fixdiv.py @@ -230,10 +230,10 @@ def process(file, list):                      print "*** Bad warning for line %d:" % row, bad                      print "*", line                  elif intlong and not floatcomplex: -                        print "%dc%d" % (row, row) -                        print "<", line -                        print "---" -                        print ">", line[:col] + "/" + line[col:] +                    print "%dc%d" % (row, row) +                    print "<", line +                    print "---" +                    print ">", line[:col] + "/" + line[col:]                  elif floatcomplex and not intlong:                      print "True division / operator at line %d:" % row                      print "=", line  | 
