I am trying to overload the __invert__ operator (~) such that 
it can take a second argument, other than 
self, so that I can express:

x ~ y

by using:

def __invert__(self, other): <do something>

for example. Is this possible?

Thanks in advance,


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

Reply via email to