#8406: problem with duck typing in c_graph
----------------------------+-----------------------------------------------
Reporter: ylchapuy | Owner: rlm
Type: defect | Status: new
Priority: major | Milestone:
Component: graph theory | Keywords:
Author: | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
----------------------------+-----------------------------------------------
two examples:
{{{
sage: G=Graph()
sage: R.<a>=GF(3^3)
sage: G.add_vertex(a^2)
sage: G.vertices()
[9]
}}}
This should be `[a]`, but `int(a)=9`
{{{
sage: R.<x>=GF(3^3,'a')[]
sage: G.add_vertex(x)
ValueError
}}}
This should work as `x` is hashable.
`int(x)` return a `ValueError`, but the code only tests for `TypeError`.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/8406>
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.