[svn r37346] Add __ne__

--HG--
branch : trunk
This commit is contained in:
fijal 2007-01-25 18:02:32 +01:00
parent c237e8d959
commit 6a8153ae3b
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ class Code(object):
self.name = rawcode.co_name
def __eq__(self, other):
return self.raw == other.raw
return self.raw == other.raw
def __ne__(self):
return not self == other
def new(self, rec=False, **kwargs):
""" return new code object with modified attributes.