I have a certain object obj
What I want is to get all the other objects referencing it. I know that I can get a reference count as sys.getrefcount(obj), but that's not of much use in my case - I need the actual referencing objects, although I'm not sure that's even possible in Python...
Also, getting the line of code that created the object isn't of much use to me either - I know, where the object was created - I just don't know who is referencing it at the moment.
P.S. I need this to debug a leak.