__init__.py (6500:ee7587e7c71d) __init__.py (6502:6c7d9e9b3c83)
1# Copyright (c) 2008 The Hewlett-Packard Development Company
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

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

22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Nathan Binkert
28
29from attrdict import attrdict, optiondict
1# Copyright (c) 2008 The Hewlett-Packard Development Company
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

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

22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Nathan Binkert
28
29from attrdict import attrdict, optiondict
30from code_formatter import code_formatter
30from misc import *
31from multidict import multidict
32from orderdict import orderdict
33import jobfile
34
35def print_list(items, indent=4):
36 line = ' ' * indent
37 for i,item in enumerate(items):
38 if len(line) + len(item) > 76:
39 print line
40 line = ' ' * indent
41
42 if i < len(items) - 1:
43 line += '%s, ' % item
44 else:
45 line += item
46 print line
31from misc import *
32from multidict import multidict
33from orderdict import orderdict
34import jobfile
35
36def print_list(items, indent=4):
37 line = ' ' * indent
38 for i,item in enumerate(items):
39 if len(line) + len(item) > 76:
40 print line
41 line = ' ' * indent
42
43 if i < len(items) - 1:
44 line += '%s, ' % item
45 else:
46 line += item
47 print line