[EMAIL PROTECTED] a écrit :
> If two objects are of equal value you can compare them with ==. What I
> want to do is find out if two objects are actually just references to
> the same object, how can I do this in Python?

The most obvious way (as usual ?):

if obj1 is obj2:
   // your code here


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to