Python initialization and circular reference counts
        Posted  
        
            by eric
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by eric
        
        
        
        Published on 2010-04-05T18:29:13Z
        Indexed on 
            2010/04/05
            18:33 UTC
        
        
        Read the original article
        Hit count: 242
        
python
Can we initialize python objects with statement like this:
a = b = c = None
it seems to me when I did a = b = c = list() will cause circular reference count issue.
Please give your expert advice.
© Stack Overflow or respective owner