main.py (5470:ad060d1f1037) main.py (5471:576aa675d4e5)
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

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

28
29import code
30import datetime
31import os
32import socket
33import sys
34
35from util import attrdict
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

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

28
29import code
30import datetime
31import os
32import socket
33import sys
34
35from util import attrdict
36import config
36import defines
37from options import OptionParser
38import traceflags
39
40__all__ = [ 'options', 'arguments', 'main' ]
41
42def print_list(items, indent=4):
43 line = ' ' * indent

--- 253 unchanged lines hidden ---
37import defines
38from options import OptionParser
39import traceflags
40
41__all__ = [ 'options', 'arguments', 'main' ]
42
43def print_list(items, indent=4):
44 line = ' ' * indent

--- 253 unchanged lines hidden ---