diff --git a/src/sage/structure/element.pyx b/src/sage/structure/element.pyx index 516c9608224..31ba8342bdd 100644 --- a/src/sage/structure/element.pyx +++ b/src/sage/structure/element.pyx @@ -1602,15 +1602,15 @@ cdef class Element(SageObject): sage: matmul(e, e) Traceback (most recent call last): ... - TypeError: unsupported operand parent(s) for @: '' and '' + TypeError: unsupported operand parent(s) for @: '' and '' sage: matmul(1, e) Traceback (most recent call last): ... - TypeError: unsupported operand parent(s) for @: 'Integer Ring' and '' + TypeError: unsupported operand parent(s) for @: 'Integer Ring' and '' sage: matmul(e, 1) Traceback (most recent call last): ... - TypeError: unsupported operand parent(s) for @: '' and 'Integer Ring' + TypeError: unsupported operand parent(s) for @: '' and 'Integer Ring' sage: matmul(int(1), e) Traceback (most recent call last): ...