When you call the object.__repr__() method in python you get something like this back: <__main__.Test object at 0x2aba1c0cf890>, is there any way to get a hold of the memory address if you overload __repr__(), other then calling super(Class, obj).__repr__() and regexing it out?
|
|
|||
|
|
|
The Python manual has this to say about id():
So in CPython, this will be the address of the object. No such guarantee for any other Python interpreter, though. Note that if you're writing a C extension, you have full access to the internals of the Python interpreter, including access to the addresses of objects directly. |
||||
|
|
|
You could reimplement the default repr this way:
|
|||||||
|
|
Just in response to Torsten, I wasn't able to call
|
|||
|
|
|
With ctypes, you can achieve the same thing with
Documentation:
Note that in CPython, currently
Edit: added information about interpreter-independence of ctypes |
|||||
|
|
While it's true that The only time you would actually be able to use the address is from a C extension library... in which case it is trivial to get the object's address since Python objects are always passed around as C pointers. |
|||
|
|