On Wed, 17 Aug 2005, Steve Holden wrote:
> Tom Anderson wrote:
>
>> On Tue, 16 Aug 2005, Ron Adam wrote:
>>
>>> Simon Brunning wrote:
>>>
On 8/14/05, Martijn Brouwer <[EMAIL PROTECTED]> wrote:
> I can imagine that *a lot* of libs/scripts use the copy library,
I think th
Tom Anderson wrote:
> On Tue, 16 Aug 2005, Ron Adam wrote:
>
>
>>Simon Brunning wrote:
>>
>>
>>>On 8/14/05, Martijn Brouwer <[EMAIL PROTECTED]> wrote:
>>>
>>>
I can imagine that *a lot* of libs/scripts use the copy library,
>>>
>>>I think that copy is very rarely used. I don't think I've ever
Tom Anderson wrote:
>
> When you say [:], do you mean that you copy lists like this:
>
> l = someList()
> m = []
> m[:] = l
>
> ?
Why not
m = L[:]
instead of
m = []; m[:] = L
???
>
> That's what i've been doing. The other day, i realised that i could just
> do:
>
> l = someList()
> m = list
On Tue, 16 Aug 2005, Ron Adam wrote:
> Simon Brunning wrote:
>
>> On 8/14/05, Martijn Brouwer <[EMAIL PROTECTED]> wrote:
>>
>>> I can imagine that *a lot* of libs/scripts use the copy library,
>>
>> I think that copy is very rarely used. I don't think I've ever imported it.
>
> I use copy.deepco