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?
|
|
|||||||
|
|
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. |
|||||||||||||
|
|
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 Basically, if you're trying to do this, you probably need to do something differently. |
|||||||||||
|
|
You can use the gc module to get all the objects currently tracked by the Python garbage collector.
|
|||||||||||
|
|
eGenix mxTools library does provide such a function, although marked as "expert-only": |
|||
|
|
|
Just mentioning this module for completeness. This code by Bill Bumgarner includes a C extension to do what you want without looping throughout every object in existence. The code for the function is quite straightforward. Every Python object is represented in C by a pointer to a
If the original object no longer exists then the result is undefined. It may crash, but it could also return a reference to a new object that's taken the location of the old one in memory. |
||||
|
|
|
This can be done easily by
output:
|
|||
|
|