main.py (2903:6129559a40f2) main.py (2904:1722b7c77d91)
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 168 unchanged lines hidden (view full) ---

177 help="Print fetch sequence numbers in trace output")
178bool_option("print-cpseq", default=False,
179 help="Print correct path sequence numbers in trace output")
180
181options = attrdict()
182arguments = []
183
184def usage(exitcode=None):
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 168 unchanged lines hidden (view full) ---

177 help="Print fetch sequence numbers in trace output")
178bool_option("print-cpseq", default=False,
179 help="Print correct path sequence numbers in trace output")
180
181options = attrdict()
182arguments = []
183
184def usage(exitcode=None):
185 parser.print_help()
185 print parser.print_help()
186 if exitcode is not None:
187 sys.exit(exitcode)
188
189def parse_args():
190 _opts,args = parser.parse_args()
191 opts = attrdict(_opts.__dict__)
192
193 # setting verbose and quiet at the same time doesn't make sense

--- 128 unchanged lines hidden ---
186 if exitcode is not None:
187 sys.exit(exitcode)
188
189def parse_args():
190 _opts,args = parser.parse_args()
191 opts = attrdict(_opts.__dict__)
192
193 # setting verbose and quiet at the same time doesn't make sense

--- 128 unchanged lines hidden ---