[4/6] let's remove multiple inheritance (RelMeths,ArithMeths -> Basic)
commit928fb26728a5f43d90fce2e8c432476aaf2e8dc9
authorKirill Smelkov <kirr@landau.phys.spbu.ru>
Fri, 8 Aug 2008 15:52:52 +0000 (8 19:52 +0400)
committerKirill Smelkov <kirr@landau.phys.spbu.ru>
Fri, 8 Aug 2008 15:52:52 +0000 (8 19:52 +0400)
tree4656fc0c0ca287d3d94c46557d57b4c0340ce06b
parent0ec41c9e039c555da188e47eb819c811228fea19
[4/6] let's remove multiple inheritance     (RelMeths,ArithMeths -> Basic)

Move RelMeths & ArithMeths directly to Basic.

This way we'll remove this separate bases from all over SymPy in the next patch.

to see it last time this is how it used to be:

class Symbol(Atom, RelMeths, ArithMeths):
    ...

and this is how it will look soon:

class Symbol(Atom):
    ...

Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru>
Signed-off-by: Ondrej Certik <ondrej@certik.cz>
sympy/core/add.py
sympy/core/basic.py
sympy/core/methods.py [deleted file]
sympy/core/mul.py
sympy/core/power.py
sympy/core/relational.py
sympy/functions/elementary/complexes.py