methods) so env.{Ap,Pre}pend() work under Python 2.6 when appending
strings to $*FLAGS variables.
git-svn-id: http://scons.tigris.org/svn/scons/trunk@3672
fdb21ef1-2011-0410-befe-
b5e4ea1792b1
- Fix label placement by the "scons-time.py func" subcommand
when a profile value was close to (or equal to) 0.0.
+ - Fix env.Append() and env.Prepend()'s ability to add a string to
+ list-like variables like $CCFLAGS under Python 2.6.
+
RELEASE 1.X - XXX
"""
def __init__(self, seq = []):
UserList.__init__(self, Split(seq))
+ def __add__(self, other):
+ return UserList.__add__(self, CLVar(other))
+ def __radd__(self, other):
+ return UserList.__radd__(self, CLVar(other))
def __coerce__(self, other):
return (self, CLVar(other))
def __str__(self):