As a learning exercise, I'm trying to implement a class which will emulate the behavior of python's complex builtin, but with different behavior of the __str__ and __repr__ methods: I want them to print in the format
(1.0,2.0)
instead of
(1+2j)
I first tried simply subclassing from complex and redefining __str__ and __repr__, but this has the problem that when non-overridden methods are called, a standard complex is returned, printed in the standard format. I.e. I'd have
>>> a = ComplexWrapper(1.0,1.0)
>>> a
(1.0,1.0)
>>> b = ComplexWrapper(2.0,3.0)
>>> b
(2.0,3.0)
>>> a + b
(3+4j)
when the desired output is (3.0,4.0).
I was reading about metaclasses and thought they would solve my problem. Basing myself on the answer in Python Class Decorator, my current implementation is as follows:
def complex_str(z):
return '(' + str(z.real) + ',' + str(z.imag) + ')'
def complex_repr(z):
return '(' + repr(z.real) + ',' + repr(z.imag) + ')'
class CmplxMeta(type):
def __new__(cls, name, bases, attrs):
attrs['__str__'] = complex_str
attrs['__repr__'] = complex_repr
return super(CmplxMeta, cls).__new__(cls, name, bases, attrs)
class ComplexWrapper(complex):
__metaclass__ = CmplxMeta
Unfortunately, this seems to have the same behavior as the previous solution when e.g. two ComplexWrapper instances are added to each other.
I admit, I don't fully understand metaclasses, and maybe my problem can be solved in a different way?
Of course I could manually redefine the relevant methods such as __add__, __subtract__, etc., but that would be very repetitive, so I would prefer a more elegant solution.
Any help appreciated.
EDIT in response to agf's answer:
So a number of things I don't understand about your code:
where does the
__new__method of theReturnTypeWrappermetaclass get its arguments from? If they are passed automatically, I would expect in this case that name = "Complex", bases = (complex), and dict = {}, is that correct? Is this method of automatic passing of class data specific to metaclasses?why do you use
cls = type.__new__(mcs, name, bases, dct)instead ofcls = type(mcs, name, bases, dct)? Is it just to avoid confusion with the "other meaning" of thetype()function?I copied your code and added my special implementations of
__str__and__repr__in your ComplexWrapper class, but it doesn't work -- printing any object of type Complex just prints in the standard python format. I don't understand that, as the two methods should have been picked up in the for loop of the metaclass, but should have been overridden by my definitions afterward.
The relevant section of my code:
class Complex(complex):
__metaclass__ = ReturnTypeWrapper
wrapped_base = complex
def __str__(self):
return '(' + str(self.real) + ',' + str(self.imag) + ')'
def __repr__(self):
return '(' + repr(self.real) + ',' + repr(self.imag) + ')'
And its behavior:
>>> type(a)
<class 'Cmplx2.Complex'>
>>> a.__str__
<bound method Complex.wrapper of (1+1j)>
>>> a.__str__()
'(1+1j)'
>>>
Thanks again for your answer and feel free to edit/remove the above if you address them in your answer!

dctwill be something like{'__module__': '__main__', '__metaclass__': <class '__main__.ReturnTypeWrapper'>, 'wrapped_base': <type 'complex'>}, it's thedictthat will become the class'__dict__attribute, once it is created. – agf May 27 '12 at 18:04__new__directly to use a custom metaclass, or else Python does it's special magic to puttypein as the first argument -- here you wantReturnTypeWrapperas the first argument. – agf May 27 '12 at 18:05complex.realandcomplex.imagare properties / descriptors, so they were being wrapped. I special-cased it so they won't be, but now, like__coerce__,.imagreturns acomplex, not your subclass. That could also be worked around if needed. – agf May 27 '12 at 18:34__str__and__repr__methods to show you how to get the output you want, with__repr__modified to beeval-able to get back the object (asreproutput should be). – agf May 27 '12 at 18:35