Changes between Version 6 and Version 10 of Ticket #24255
- Timestamp:
- 11/23/17 16:14:06 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24255 – Description
v6 v10 20 20 1*x + Order(x^2) == x 21 21 }}} 22 The problem seems that constants/series are subclasses of `Expression` and are not coerced immediately into `Expression`.23 {{{24 sage: type(e)25 <type 'sage.symbolic.constants_c.E'>26 sage: e+1-127 e28 sage: type(_)29 <type 'sage.symbolic.expression.Expression'>30 }}}