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 sleepycal
Recipients sleepycal
Date 2011-05-01.18:34:47
SpamBayes Score 7.065867e-06
Marked as misclassified No
Message-id <1304274889.3.0.162053692496.issue11974@psf.upfronthosting.co.za>
In-reply-to
Content
So, when you create a class like this:

class Obj:
    children = []

The 'children' object essentially becomes shared across all instances of Obj. To get around this, you have to use:

class Obj:
    children = None
    def __init__(self):
        children = []

I have attached proof of concept code which can trigger this bug. Although I have almost 8 years of experience with Python, this is the first time I have actually noticed this, however, I am sure that similar things have happened in the past, and I just didn't investigate it enough to realise what was going on.

Although this isn't a bug, it is likely that other advanced developers may also not know about, or have been caught out by this little gotcha. So, perhaps it might be worth documenting it somewhere?

Let me know your thoughts.

Cal
History
Date User Action Args
2011-05-01 18:34:49sleepycalsetrecipients: + sleepycal
2011-05-01 18:34:49sleepycalsetmessageid: <1304274889.3.0.162053692496.issue11974@psf.upfronthosting.co.za>
2011-05-01 18:34:48sleepycallinkissue11974 messages
2011-05-01 18:34:48sleepycalcreate