[EMAIL PROTECTED] wrote: > > Tuples (which are immutable) also appear to be reused > > >>>>foo = () >>>>bar = () >>>>foo is bar > > True
Not always:
foo = (1,)
bar = (1,)
foo is bar
=> False
--
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in '[EMAIL PROTECTED]'.split('@')])"
--
http://mail.python.org/mailman/listinfo/python-list
