Re: [Python-Dev] docs - Copy

2010-06-25 Thread Steve Holden
Martin v. Löwis wrote: > Am 25.06.2010 18:57, schrieb Terry Reedy: >> On 6/24/2010 8:51 PM, Rich Healey wrote: >>> http://docs.python.org/library/copy.html >> Discussion of the wording of current docs should go to python-list. >> Py-dev is for development of future Python. > > No no no. [...] It

Re: [Python-Dev] docs - Copy

2010-06-25 Thread Martin v. Löwis
> My apologies guys, I see now. > > I will see if I can think of a less ambiguous way to word this and submit a > bug. Please don't take out or rephrase the word "shallow", though. This has a long CS tradition of meaning exactly what is meant here. Regards, Martin __

Re: [Python-Dev] docs - Copy

2010-06-25 Thread Martin v. Löwis
Am 25.06.2010 18:57, schrieb Terry Reedy: > On 6/24/2010 8:51 PM, Rich Healey wrote: >> http://docs.python.org/library/copy.html > > Discussion of the wording of current docs should go to python-list. > Py-dev is for development of future Python. No no no. Mis-worded documentation is a bug, just

Re: [Python-Dev] docs - Copy

2010-06-25 Thread Terry Reedy
On 6/24/2010 8:51 PM, Rich Healey wrote: http://docs.python.org/library/copy.html Discussion of the wording of current docs should go to python-list. Py-dev is for development of future Python. -- Terry Jan Reedy ___ Python-Dev mailing list Pytho

Re: [Python-Dev] docs - Copy

2010-06-24 Thread Senthil Kumaran
On Thu, Jun 24, 2010 at 09:05:09PM -0400, Alexander Belopolsky wrote: > On Thu, Jun 24, 2010 at 8:51 PM, Rich Healey wrote: > > http://docs.python.org/library/copy.html > > > > Just near the bottom it reads: > > > > """Shallow copies of dictionaries can be made using dict.copy(), and > > of lists

Re: [Python-Dev] docs - Copy

2010-06-24 Thread Rich Healey
On Fri, Jun 25, 2010 at 11:04 AM, Steve Holden wrote: > Rich Healey wrote: >> http://docs.python.org/library/copy.html >> >> Just near the bottom it reads: >> >> """Shallow copies of dictionaries can be made using dict.copy(), and >> of lists by assigning a slice of the entire list, for example, >

Re: [Python-Dev] docs - Copy

2010-06-24 Thread Alexander Belopolsky
On Thu, Jun 24, 2010 at 8:51 PM, Rich Healey wrote: > http://docs.python.org/library/copy.html > > Just near the bottom it reads: > > """Shallow copies of dictionaries can be made using dict.copy(), and > of lists by assigning a slice of the entire list, for example, > copied_list = original_list[

Re: [Python-Dev] docs - Copy

2010-06-24 Thread Steve Holden
Rich Healey wrote: > http://docs.python.org/library/copy.html > > Just near the bottom it reads: > > """Shallow copies of dictionaries can be made using dict.copy(), and > of lists by assigning a slice of the entire list, for example, > copied_list = original_list[:].""" > > > Surely this is a

[Python-Dev] docs - Copy

2010-06-24 Thread Rich Healey
http://docs.python.org/library/copy.html Just near the bottom it reads: """Shallow copies of dictionaries can be made using dict.copy(), and of lists by assigning a slice of the entire list, for example, copied_list = original_list[:].""" Surely this is a typo? To my understanding, copied_list