vote up 1 vote down star

Let's say I have an id of a Python object, which I retrieved by doing id(thing). How do I find thing again by the id number I was given?

flag

66% accept rate
I'm curious: why do you want to do this? What is your objective? – Craig McQueen Sep 9 at 12:35
@Craig McQueen: stackoverflow.com/questions/1400295/… – cool-RR Sep 10 at 18:06

5 Answers

vote up 3 vote down check

You'll probably want to consider implementing it another way. Are you aware of the weakref module?

(Edited) The Python weakref module lets you keep references, dictionary references, and proxies to objects without having those references count in the reference counter. They're like symbolic links.

link|flag
Nailed it. Can you please edit the answer to quote a few lines about the weakref module, just for StackOverflow posterity? – cool-RR Sep 9 at 15:09
No problem. Done. :) – Ken Nov 9 at 1:54
vote up 10 vote down

Short answer, you can't.

Long answer, you can maintain a dict for mapping IDs to objects, or look the ID up by exhaustive search of gc.get_objects(), but this will create one of two problems: either the dict's reference will keep the object alive and prevent GC, or (if it's a WeakValue dict or you use gc.get_objects()) the ID may be deallocated and reused for a completely different object.

Basically, if you're trying to do this, you probably need to do something differently.

link|flag
I've been intending to throw away the id reference in the object's __del__, do you think that this will make sure things will not break? – cool-RR Sep 8 at 22:44
3  
+1: Agree: Don't do this. Simply create a proper dictionary of objects with proper keys -- you'll be a lot happier. – S.Lott Sep 8 at 23:51
1  
@cool-RR: Yeah, you should be safe with that. – chaos Sep 9 at 12:57
vote up 5 vote down

You can use the gc module to get all the objects currently tracked by the Python garbage collector.

import gc

def objects_by_id(id_):
    for obj in gc.get_objects():
        if id(obj) == id_:
            return obj
    raise Exception("No found")
link|flag
1  
This has an aliasing issue: an ID obtained at an arbitrary point in the past may now refer to a different object. – chaos Sep 8 at 22:37
1  
As long as you've maintained a reference to the object, that won't happen. Just the same, this is generally a bad idea. – Glenn Maynard Sep 8 at 23:16
I agree with many of the other commenters: don't do this. Make your own dictionary of objects. – Ned Batchelder Sep 9 at 11:26
vote up 1 vote down

eGenix mxTools library does provide such a function, although marked as "expert-only": mx.Tools.makeref(id)

link|flag
vote up 0 vote down

Just mentioning this module for completeness. This does what you want without looping throughout every object in existence. It will obviously crash if the object isn't there anymore.

http://www.friday.com/bbum/2007/08/24/python-di/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.