#12298: minor CallableSymbolicExpressionRing display bug.
-------------------------+--------------------------------------------------
Reporter: gbe | Owner: gbe
Type: defect | Status: new
Priority: trivial | Milestone: sage-4.8
Component: symbolics | Keywords: beginner
Work_issues: | Upstream: N/A
Reviewer: | Author:
Merged: | Dependencies:
-------------------------+--------------------------------------------------
When a CallableSymbolicExpressionRing is created with only one variable,
arguments is still plural and an extra comma is printed.
Correct, #variable > 1:
{{{
sage: CallableSymbolicExpressionRing([var('q p')])
Callable function ring with arguments (q, p)
}}}
Incorrect:
{{{
sage: CallableSymbolicExpressionRing([var('q')])
Callable function ring with arguments (q,)
}}}
The extra comma, I ''suspect'', is because the repr returns something like
"... arguments (%s)" % variable_tuple. This is what would be expected of a
singular tuple.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/12298>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.