Address of an immutable object

C

candide

Suppose a Python program defines an integer object with value 42. The
object has an "address" we can capture with the built-in function id() :

Now I was wondering if any integer object with value 42 will be refered
at the same adress with the above id.

Some experiments tend to show that it may be the case, for instance :
152263540
>>> d={"foo":42, "bar":"foo"}
>>> id(d["foo"]) 152263540
>>> L=["foo",(51,([14,42],5)),"bar"]
>>> id(L[1][1][0][1]) 152263540
>>> del a
>>> id(L[1][1][0][1])

152263540
>>> zzz=range(1000)
>>> id(zzz[42]) 152263540
>>>

Even you can't make a deep copy :


So is the following true :

Two non mutable objects with the same value shall be allocated at a
constant and unique address ?
 
A

Alf P. Steinbach

* candide, on 30.05.2010 19:38:
Suppose a Python program defines an integer object with value 42. The
object has an "address" we can capture with the built-in function id() :

Now I was wondering if any integer object with value 42 will be refered
at the same adress with the above id.

Some experiments tend to show that it may be the case, for instance :
a=42
id(a) 152263540
id(42) 152263540
b=2*21
id(b) 152263540
c=0b101010
id(c) 152263540
d={"foo":42, "bar":"foo"}
id(d["foo"]) 152263540
L=["foo",(51,([14,42],5)),"bar"]
id(L[1][1][0][1]) 152263540
del a
id(L[1][1][0][1]) 152263540
zzz=range(1000)
id(zzz[42]) 152263540

Even you can't make a deep copy :


So is the following true :

Two non mutable objects with the same value shall be allocated at a
constant and unique address ?

No.

First, id() doesn't generally provide an address. It does that in CPython, but
more generally it just provides a unique integer identifying the reference. You
can think of it as the "reference value" if you want; it's what's copied by an
assignment to a variable.

Second, the reason that you get the same id for various 42 objects is that
CPython uses a cache of "small integer" objects. As I recall the cache ranges
from -5 to some 127 or so (or perhaps it was double that). Any value outside
that cached range you'll see different id's for the same value.


Cheers & hth.,

- Alf
 
S

Simon Brunning

Two non mutable objects with the same value shall be allocated at a constant and unique address ?
Nope.
False

Your statement will be the case for small integers, but this in an
implementation detail. Indeed, this used to be the case for integers
up to 100 (IIRC) or thereabouts, but it's now the case up to 256:
False

Some identifier-like strings are also interned like this:
False

But again, it's an implementation detail, and shouldn't be relied upon.

This same issue also comes up with people noticing that they can
compare small integers with the 'is' operator, and getting a surprise
when bigger numbers come along:
False
 
C

candide

Alf P. Steinbach a écrit :
* candide, on 30.05.2010 19:38:
First, id() doesn't generally provide an address.

I talked about a quote unquote "address" ;)
but according to "The Python Language Reference" it's not very far from
the truth :

--------------------
3.1 Objects, values and types
(...)
An object’s identity never changes
once it has been created; you may think of it as the object’s _address_
in memory. The ‘is‘ operator compares the
identity of two objects; the id() function returns an integer
representing its identity (currently implemented as
its _address_).
 
D

Dennis Lee Bieber

I talked about a quote unquote "address" ;)
but according to "The Python Language Reference" it's not very far from
the truth :

--------------------
3.1 Objects, values and types
(...)
An object’s identity never changes
once it has been created; you may think of it as the object’s _address_
in memory. The ‘is‘ operator compares the
identity of two objects; the id() function returns an integer
representing its identity (currently implemented as
its _address_).
--------------------

Two key terms: "may THINK of it as" and "currently implemented
as"...

Neither guarantees that it is. The latter, as mentioned, is a detail
of the common C-language implementation.

The ID could be an index into a managed list of addresses pointing
to other items (this is sort of how the old Macintosh "handles" worked:
when you allocated a heap object, you got back a reference (a "handle")
into a fixed table of references; this permitted the garbage collector
to move the actual data objects around in memory [collecting free space
-- defragmenting memory] by updating the handle's reference to point to
the new location of the object -- the user code doesn't have to track
relocations since the location of the handle itself did not change).
 
S

Steven D'Aprano

Alf P. Steinbach a écrit :


I talked about a quote unquote "address" ;) but according to "The Python
Language Reference" it's not very far from the truth :

--------------------
3.1 Objects, values and types
(...)
An object’s identity never changes
once it has been created; you may think of it as the object’s _address_
in memory. The ‘is‘ operator compares the identity of two objects; the
id() function returns an integer representing its identity (currently
implemented as its _address_).


Which is a weakness of the documentation, since in Jython object ids are
1, 2, 3, 4, ... rather than addresses in memory. Of course, if you want
to think of 1, 2, 3, 4, ... as addresses, who's going to stop you? :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top