__init__.py (5873:67a6ea624776) __init__.py (6500:ee7587e7c71d)
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

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

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 misc import *
31from multidict import multidict
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

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

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 misc import *
31from multidict import multidict
32from orderdict import orderdict
32import jobfile
33
34def print_list(items, indent=4):
35 line = ' ' * indent
36 for i,item in enumerate(items):
37 if len(line) + len(item) > 76:
38 print line
39 line = ' ' * indent
40
41 if i < len(items) - 1:
42 line += '%s, ' % item
43 else:
44 line += item
45 print line
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