I run this code:
[EMAIL PROTECTED] /tmp]# vi Lover.py
class lover:
def __init__(self,man='man',woman='woman'):
self.lover='When a '+man+' love a '+woman
print self.lover
def smile(self):
print self.lover+':-)'
def kiss(self):
print self.lover+':-)(-:'
On May 10, 2005, at 10:57 AM, Jim Hugunin wrote:
Bob Ippolito wrote:
(1) Don't have mutable value types, use a reference type that points
to a value type (some kind of proxy)
I don't think that this is possible to do in a consistent way and my
suspicion is that doing this half-way would be