Is there a Python module for handling Python object addresses?
- by cool-RR
(When I say "object address", I mean the string that you type in Python to access an object. For example 'life.State.step'. Most of the time, all the objects before the last dot will be packages/modules, but in some cases they can be classes or other objects.)
In my Python project I often have the need to play around with object addresses. Some…