Feat(Typing): Write all str related typing functions

This commit is contained in:
2018-11-14 10:04:27 +01:00
parent a79ffb0cf9
commit c176bb7bc4
2 changed files with 203 additions and 7 deletions

View File

@@ -709,7 +709,7 @@ def mopolynomial_mopolynomial(left, right):
"""
common_degree = set(left.monomials.keys()).intersection(right.monomials.keys())
if not common_degree:
raise NotImplementedError("Polynomial with no constant, no calculus to do")
raise NotImplementedError("No degree in common, no calculus to do")
merge_monomials = {**left.monomials, **right.monomials}
for deg in common_degree: