diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-03-26 01:11:54 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-03-26 01:11:54 +0100 |
commit | 765531d2d083c7a4e9478fcd960eebe04ac6b192 (patch) | |
tree | 5bbaa431016613dcbe05081e2ab29aed2f36fd6a /Tools/scripts/reindent.py | |
parent | 1f8898a5916b942c86ee8716c37d2db388e7bf2f (diff) | |
download | cpython-git-765531d2d083c7a4e9478fcd960eebe04ac6b192.tar.gz |
Issue #17516: use comment syntax for comments, instead of multiline string
Diffstat (limited to 'Tools/scripts/reindent.py')
-rwxr-xr-x | Tools/scripts/reindent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/reindent.py b/Tools/scripts/reindent.py index 4a916ea149..18424dea14 100755 --- a/Tools/scripts/reindent.py +++ b/Tools/scripts/reindent.py @@ -52,8 +52,8 @@ verbose = False recurse = False dryrun = False makebackup = True +# A specified newline to be used in the output (set by --newline option) spec_newline = None -"""A specified newline to be used in the output (set by --newline option)""" def usage(msg=None): |