vote up 0 vote down star

Yesterday I asked ("A case of outwardly equal lists of sets behaving differently under Python 2.5 (I think …)") why list W constructed as follows:

r_dim_1_based = range( 1, dim + 1)
set_dim_1_based =  set( r_dim_1_based)

def listW_fill_func( val):
    if (val == 0):
        return set_dim_1_based
    else:
        return set( [val])

W = [ listW_fill_func( A[cid])  
            for cid in r_ncells ]

didn't behave as I expected. In particular, it did not behave like other lists that showed equality with it (another_list == W --> True).

Is there a utility, trick, builtin, whatever that would have shown these differing internal structures to me? Something that would have produced perhaps a C-like declaration of the objects so that I would have seen at once that I was dealing with pointers in one case (list W) and values in the others?

flag

79% accept rate
I don't quite understand the question yet. Python does everything with objects. Any list is a collection of references to objects. When you compare two lists, if they are the same length, and if each of their respective objects return equal when compared, the lists return equal. Python also has an is operator that checks for object identity; perhaps you can use is to inspect things to figure out better what is going on. – steveha Nov 3 at 4:24
@steveha: Guilty of calling a shallow copy of an object a 'value' and a reference to the orginal object a 'pointer'. The point of the question is in your fourth sentence: "if" I went and did all those things, then, yes, I could see that two objects that seemed equal (by ==) were different, but that's too much like work. I desire a debugging tool so that in a second or so I can have the differences shown to me. Graph, something like the specs for a C struct, e.g. --- – behindthefall Nov 3 at 16:35

1 Answer

vote up 1 vote down check

You're dealing with references in each case (more similar to pointers than to values). You can surely introspect your objects' references to your heart's contents -- for example, if you have a list and want to check if any items are identical references,

if len(thelist) != len(set(id(x) for x in thelist)): ...

DO note that we're talking about references here -- so, two identical references to None, or two identical references to the int value 17, would also trigger the same alarm. Of course you can keep introspecting to remove that case, eliminating immutables from the list in a first pass, for example, if you think that multiple references to the same immutable are fine -- e.g.:

immutyps = int, long, float, tuple, frozenset, str, unicode
mutables = [x for x in thelist if not isinstance(x, immutyps)]
if len(mutables) != len(set(id(x) for x in mutables)):
  cryhavocandletloosethedogsofwar()

but I would question the return-on-investment of such a deep introspection strategy!

link|flag
Hi again, Alex. I was wondering if there was some easy way to feed an object to a little engine and get back a graph or something C-declaration-like that showed what the architecture of the object. Referring to yesterday's example, if I'd fed lists W1, W2, and W3 to the 'engine', I would have seen that in W3, all the "unknown" items were references (pointers) to the same variable, whereas in lists W1 and W2, those items were really the independent sets that I imagined them to be. – behindthefall Nov 3 at 4:31
Ack. How do I edit a comment? Stick a verb at the end of that first sentence. – behindthefall Nov 3 at 4:32
But I have to say that your first statement is a keeper, and I will try to remember id(). – behindthefall Nov 3 at 4:36
@behindthefall, the only way I know to "edit a comment" in SO is: copy it, delete it, make a new comment, paste what you copied it, edit, click "add comment". Anyway, sure, you can make graphs out of your objects' internal structures, though I'm not sure what you mean with "C-declaration-like" -- what C declaration would you like for, e.g., [[], []]*2 vs [[], [], [], []]? If you're asking for existing modules that would turn these into graphs (much less C-like declarations, whatever that means), I don't know of any, sorry. – Alex Martelli Nov 3 at 4:52
Don't you ever wish you had an easy way to see what was going on beneath the hood, beyond what _repr_() and == tell you? – behindthefall Nov 3 at 4:54
show 2 more comments

Your Answer

Get an OpenID
or

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