comparison mercurial/fancyopts.py @ 5148:a04694e08775

merge with crew-stable
author Thomas Arendsen Hein <thomas@intevation.de>
date Sat, 11 Aug 2007 13:35:25 +0200
parents 88803a69b24a
children
comparison
equal deleted inserted replaced
5142:d84329a11fdd 5148:a04694e08775
7 dt = {} 7 dt = {}
8 8
9 for s, l, d, c in options: 9 for s, l, d, c in options:
10 pl = l.replace('-', '_') 10 pl = l.replace('-', '_')
11 map['-'+s] = map['--'+l] = pl 11 map['-'+s] = map['--'+l] = pl
12 state[pl] = d 12 if isinstance(d, list):
13 state[pl] = d[:]
14 else:
15 state[pl] = d
13 dt[pl] = type(d) 16 dt[pl] = type(d)
14 if (d is not None and d is not True and d is not False and 17 if (d is not None and d is not True and d is not False and
15 not callable(d)): 18 not callable(d)):
16 if s: s += ':' 19 if s: s += ':'
17 if l: l += '=' 20 if l: l += '='