Deprecating reload() ???

Skip Montanaro skip at pobox.com
Sat Mar 13 11:30:04 EST 2004


    Dave> How about if we could just show the reference counts on all of the
    Dave> reloaded objects?  

That wouldn't work for immutable objects which can be shared.  Ints come to
mind, but short strings are interned, some tuples are shared, maybe some
floats, and of course None, True and False are.  You will have to define a
subset of object types to display.

Skip





More information about the Python-list mailing list