Opened 8 years ago
Closed 8 years ago
#13897 closed defect (fixed)
Fix ArithmeticError: 0^0 in rings/finite_rings/element_givaro.pyx
Reported by: | mjo | Owned by: | AlexGhitza |
---|---|---|---|
Priority: | major | Milestone: | sage-5.8 |
Component: | algebra | Keywords: | |
Cc: | Merged in: | sage-5.8.beta2 | |
Authors: | Michael Orlitzky | Reviewers: | Travis Scrimshaw |
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
The few remaining instances of this error are tracked at #13786. In this case,
sage: K.<a> = GF(3^3, 'a') sage: K(0)^0 ... ArithmeticError: 0^0 is undefined.
Attachments (1)
Change History (4)
comment:1 Changed 8 years ago by
- Status changed from new to needs_review
Changed 8 years ago by
comment:2 Changed 8 years ago by
- Reviewers set to Travis Scrimshaw
- Status changed from needs_review to positive_review
comment:3 Changed 8 years ago by
- Merged in set to sage-5.8.beta2
- Resolution set to fixed
- Status changed from positive_review to closed
Note: See
TracTickets for help on using
tickets.
Looks good to me. Thanks,
Travis