[with patch; positive review] Sparse vector spaces don't cast on assignment.
Reported by: |
boothby |
Owned by: |
was |
Priority:
|
major
|
Milestone:
|
sage-3.0.1
|
Component:
|
linear algebra
|
Keywords:
|
|
Cc:
|
|
Merged in:
|
|
Authors:
|
|
Reviewers:
|
|
Report Upstream:
|
N/A
|
Work issues:
|
|
Branch:
|
|
Commit:
|
|
Dependencies:
|
|
Stopgaps:
|
|
sage: V = VectorSpace(GF(2),10, sparse=True)
sage: w = V(0)
sage: w[0] = 2
sage: print w[0]
2
sage: print type(w[0])
<type 'sage.rings.integer.Integer'>
Change History (5)
Summary: |
Sparse vector spaces don't cast on assignment. →
[with patch; needs review] Sparse vector spaces don't cast on assignment.
|
Summary: |
[with patch; needs review] Sparse vector spaces don't cast on assignment. →
[with patch; positive review] Sparse vector spaces don't cast on assignment.
|
Resolution: |
→ fixed
|
Status: |
new →
closed
|
this fixes the bug!