Deleted Added
sdiff udiff text old ( 6500:ee7587e7c71d ) new ( 6502:6c7d9e9b3c83 )
full compact
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 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