<div id="comment:0"></div> ``` sage: (x+1).series(x,2) 1 + 1*x sage: (x+1).series(x,2).operator() is None True sage: (x+1).series(x,2).operands() [1, x] ``` Related (maybe a consequence) is ``` sage: (x+1).series(x,2) - 1 (1 + 1*x) - 1 sage: ((x+1).series(x,2) - 1).simplify() ... ValueError: The name "1" is not a valid Python identifier. ``` Component: **symbolics** _Issue created by migration from https://trac.sagemath.org/ticket/19998_