Santiago  Romero  <[EMAIL PROTECTED]> wrote:
> Is there a way to check the REAL size in memory of a python object?
>
> Something like
>
>> print sizeof(mylist)
> [ ... ]

Would you care to precisely define "REAL size" first? Consider:

>>> atuple = (1, 2)
>>> mylist = [(0, 0), atuple]

Should sizeof(mylist) include sizeof(atuple) ?

>>> del atuple

What about now, when mylist has the only reference to the (1, 2)
object that also used to be referred to as atuple?

-- 
\S -- [EMAIL PROTECTED] -- http://www.chaos.org.uk/~sion/
   "Frankly I have no feelings towards penguins one way or the other"
        -- Arthur C. Clarke
   her nu becomeþ se bera eadward ofdun hlæddre heafdes bæce bump bump bump
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to