This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Sworddragon, ned.deily
Date 2014-02-26.03:49:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393386596.22.0.834695138274.issue20764@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, I did indeed mean "dir_list", not "root_dir".  Sorry for the confusion.  One point: there is no "copied list".  "del dir_list" merely deletes the binding between the name "dir_list" and the list object returned by "os.walk"; the list object itself is unaltered but can no longer be referenced by the name dir_list.  "del dir_list[:]" mutates the list object pointed to by dir_list by deleting the references to all of its member elements, turning it into an empty list; the binding of the list object to the name dir_list remains.
History
Date User Action Args
2014-02-26 03:49:56ned.deilysetrecipients: + ned.deily, Sworddragon
2014-02-26 03:49:56ned.deilysetmessageid: <1393386596.22.0.834695138274.issue20764@psf.upfronthosting.co.za>
2014-02-26 03:49:56ned.deilylinkissue20764 messages
2014-02-26 03:49:55ned.deilycreate