On Thu, Jun 18, 2009 at 3:11 PM, Dag Sverre Seljebotn < [email protected]> wrote:
> Dag Sverre Seljebotn wrote: > > Stefan Behnel wrote: > >> Dag Sverre Seljebotn wrote: > > > I stand corrected: > > In [13]: a = [1,2,3] > > In [14]: b = a > > In [15]: a += [1,2,3] > > In [16]: b > Out[16]: [1, 2, 3, 1, 2, 3] > > OK, so this seems like a non-issue. interestingly : >>> a=(1,2,3) >>> b=a >>> b+=(4,) >>> a (1, 2, 3) Roland > > > > -- > Dag Sverre > _______________________________________________ > Cython-dev mailing list > [email protected] > http://codespeak.net/mailman/listinfo/cython-dev > -- ORNL/UT Center for Molecular Biophysics cmb.ornl.gov 865-241-1537, ORNL PO BOX 2008 MS6309
_______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
