main.py (5606:6da7a58b0bc8) main.py (5752:32ec0a0e41b2)
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

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

215 print info.RELEASE_NOTES
216 print
217
218 if options.trace_help:
219 import traceflags
220
221 done = True
222 print "Base Flags:"
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

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

215 print info.RELEASE_NOTES
216 print
217
218 if options.trace_help:
219 import traceflags
220
221 done = True
222 print "Base Flags:"
223 traceflags.baseFlags.sort()
223 print_list(traceflags.baseFlags, indent=4)
224 print
225 print "Compound Flags:"
224 print_list(traceflags.baseFlags, indent=4)
225 print
226 print "Compound Flags:"
227 traceflags.compoundFlags.sort()
226 for flag in traceflags.compoundFlags:
227 if flag == 'All':
228 continue
229 print " %s:" % flag
230 print_list(traceflags.compoundFlagMap[flag], indent=8)
231 print
232
233 if options.list_sim_objects:

--- 164 unchanged lines hidden ---
228 for flag in traceflags.compoundFlags:
229 if flag == 'All':
230 continue
231 print " %s:" % flag
232 print_list(traceflags.compoundFlagMap[flag], indent=8)
233 print
234
235 if options.list_sim_objects:

--- 164 unchanged lines hidden ---