This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Stephan Hoyer
Recipients Eric.Wieser, Stephan Hoyer, josh.r, mark.dickinson, rhettinger
Date 2017-04-25.20:55:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493153708.71.0.071202388948.issue30140@psf.upfronthosting.co.za>
In-reply-to
Content
> The design pattern that has problems here is a bit unorthodox to start with.

I agree. This was meant strictly as a simple example for illustrative purposes. Steven D'Aprano's example from python-ideas may be a better one:
https://mail.python.org/pipermail/python-ideas/2017-April/045455.html

class A:
    def __add__(self, other):
        self.log()
        ...
    __radd__ = __add__

class B(A):
    def log(self):
        ...

Our actual use case for NumPy involved writing a mixin that look more like this, that expects a specified method to implement arithmetic, i.e.,

class NDArrayOperatorsMixin:
    def __add__(self, other):
        return self._calculate(np.add, self, other)
    def __radd__(self, other):
        return self._calculate(np.add, other, self)
    ...  # repeat for all special methods

class A(NDArrayOperatorsMixin):
    def _calculate(self, op, *args):
        if not all(isinstance(arg, A) for arg in args):
            return NotImplemented
        ...  # implement calculation

class B(A):
    def _calculate(self, op, *args):
        ...  # something different

In A() + B(), B never gets the chance to override A's implementation of __add__ via _calculate, because it overrode a different method (_calculate) which happens to contain the *implementation* for __radd__, but not __radd__ itself.

Anyways, if you have serious concerns about changing this, it is probably best respond to Guido on python-ideas:
https://mail.python.org/pipermail/python-ideas/2017-April/045468.html
History
Date User Action Args
2017-04-25 20:55:08Stephan Hoyersetrecipients: + Stephan Hoyer, rhettinger, mark.dickinson, Eric.Wieser, josh.r
2017-04-25 20:55:08Stephan Hoyersetmessageid: <1493153708.71.0.071202388948.issue30140@psf.upfronthosting.co.za>
2017-04-25 20:55:08Stephan Hoyerlinkissue30140 messages
2017-04-25 20:55:08Stephan Hoyercreate