![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: Question about idioms for clearing a list
From: Diez B. Roggisch <deets@nospam.web.de>
Date: Tue Jan 31 2006 - 19:16:14 CET
Steven Watanabe wrote:
> I know that the standard idioms for clearing a list are:
No. Consider this simple example:
class Foo(object):
things = [1,2,3,4,5]
f = Foo(things)
things = [] # I've been robbed
print f.all_my_thingies # or not?
The reason is that l = [] just rebinds a new object (a list, but it could be
Diez
|