Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
165163f2
Commit
165163f2
authored
Mar 27, 2004
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add usage() function, -h(elp) flag and long versions of short flags
parent
dbb40780
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
8 deletions
+18
-8
Tools/scripts/reindent.py
Tools/scripts/reindent.py
+18
-8
No files found.
Tools/scripts/reindent.py
View file @
165163f2
...
...
@@ -4,9 +4,10 @@
"""reindent [-d][-r][-v] [ path ... ]
-d Dry run. Analyze, but don't make any changes to, files.
-r Recurse. Search for all .py files in subdirectories too.
-v Verbose. Print informative msgs; else no output.
-d (--dryrun) Dry run. Analyze, but don't make any changes to, files.
-r (--recurse) Recurse. Search for all .py files in subdirectories too.
-v (--verbose) Verbose. Print informative msgs; else no output.
-h (--help) Help. Print this usage information and exit.
Change Python (.py) files to use 4-space indents and no hard tab characters.
Also trim excess spaces and tabs from ends of lines, and remove empty lines
...
...
@@ -42,6 +43,11 @@ verbose = 0
recurse
=
0
dryrun
=
0
def
usage
(
msg
=
None
):
if
msg
is
not
None
:
print
>>
sys
.
stderr
,
msg
print
>>
sys
.
stderr
,
__doc__
def
errprint
(
*
args
):
sep
=
""
for
arg
in
args
:
...
...
@@ -53,17 +59,21 @@ def main():
import
getopt
global
verbose
,
recurse
,
dryrun
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"drv"
)
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"drvh"
,
[
"dryrun"
,
"recurse"
,
"verbose"
,
"help"
])
except
getopt
.
error
,
msg
:
errprint
(
msg
)
usage
(
msg
)
return
for
o
,
a
in
opts
:
if
o
==
'-d'
:
if
o
in
(
'-d'
,
'--dryrun'
)
:
dryrun
+=
1
elif
o
==
'-r'
:
elif
o
in
(
'-r'
,
'--recurse'
)
:
recurse
+=
1
elif
o
==
'-v'
:
elif
o
in
(
'-v'
,
'--verbose'
)
:
verbose
+=
1
elif
o
in
(
'-h'
,
'--help'
):
usage
()
return
if
not
args
:
r
=
Reindenter
(
sys
.
stdin
)
r
.
run
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment