Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sage/symbolic/expression.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -13531,7 +13531,7 @@ cpdef _repr_Expression(x):
sage: SR._repr_element_(x+2)
'x + 2'
"""
return ccrepr((<Expression>x)._gobj)
return ccrepr((<Expression?>x)._gobj)


cpdef _latex_Expression(x):
Expand All @@ -13545,7 +13545,7 @@ cpdef _latex_Expression(x):
sage: latex(var('theta') + 2)
\theta + 2
"""
return char_to_str(GEx_to_str_latex(&(<Expression>x)._gobj))
return char_to_str(GEx_to_str_latex(&(<Expression?>x)._gobj))


def solve_diophantine(f, *args, **kwds):
Expand Down
Loading