We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8d9e9 commit 2767f50Copy full SHA for 2767f50
src/sage/symbolic/expression.pyx
@@ -13531,7 +13531,7 @@ cpdef _repr_Expression(x):
13531
sage: SR._repr_element_(x+2)
13532
'x + 2'
13533
"""
13534
- return ccrepr((<Expression>x)._gobj)
+ return ccrepr((<Expression?>x)._gobj)
13535
13536
13537
cpdef _latex_Expression(x):
@@ -13545,7 +13545,7 @@ cpdef _latex_Expression(x):
13545
sage: latex(var('theta') + 2)
13546
\theta + 2
13547
13548
- return char_to_str(GEx_to_str_latex(&(<Expression>x)._gobj))
+ return char_to_str(GEx_to_str_latex(&(<Expression?>x)._gobj))
13549
13550
13551
def solve_diophantine(f, *args, **kwds):
0 commit comments