[issue1443] Magic class member variable initialization with lists

2007-11-14 Thread Guido van Rossum
Guido van Rossum added the comment: Go ask on c.l.py why this is not a bug. -- nosy: +gvanrossum resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ __

[issue1443] Magic class member variable initialization with lists

2007-11-14 Thread neoone
New submission from neoone: Initialization of member variables with lists leads to strange behavior. The list object is common to each instance of that class. File attached results in: [] [] <__main__.Proof instance at 0x00BA7120> ['STICKYARRAY'] [] <__main__.Proof instance at 0x00BA7148> So