summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2003-04-20 00:59:24 +0000
committerBarry Warsaw <barry@python.org>2003-04-20 00:59:24 +0000
commit3008d59f43c8ef6f866ba6e664cae34a06de8274 (patch)
treebc222dc472b4a89314ff8ed62e5cec3c75f9c186 /Tools
parentab3ba4c310da37d5861257e444ee5bcc233d3331 (diff)
downloadcpython-3008d59f43c8ef6f866ba6e664cae34a06de8274.tar.gz
Finally added a -h option to print the module docstring and exit. ;)
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/logmerge.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Tools/scripts/logmerge.py b/Tools/scripts/logmerge.py
index f6766d20e6..977324d4bf 100755
--- a/Tools/scripts/logmerge.py
+++ b/Tools/scripts/logmerge.py
@@ -28,9 +28,10 @@ output to checkin messages belonging to the CVS head (trunk). (It
produces some output if tag is a non-branch tag, but this output is
not very useful.)
+-h prints this message and exits.
+
XXX This code was created by reverse engineering CVS 1.9 and RCS 5.7
from their output.
-
"""
import os, sys, getopt, re
@@ -43,7 +44,7 @@ def main():
truncate_last = 0
reverse = 0
branch = None
- opts, args = getopt.getopt(sys.argv[1:], "trb:")
+ opts, args = getopt.getopt(sys.argv[1:], "trb:h")
for o, a in opts:
if o == '-t':
truncate_last = 1
@@ -51,6 +52,9 @@ def main():
reverse = 1
elif o == '-b':
branch = a
+ elif o == '-h':
+ print __doc__
+ sys.exit(0)
database = []
while 1:
chunk = read_chunk(sys.stdin)