Ticket #10292 (closed defect: fixed)
padics, precision, list() and printing
| Reported by: | roed | Owned by: | roed |
|---|---|---|---|
| Priority: | minor | Milestone: | sage-4.8 |
| Component: | padics | Keywords: | |
| Cc: | Work issues: | ||
| Report Upstream: | N/A | Reviewers: | Johan Bosman |
| Authors: | David Roe | Merged in: | sage-4.8.alpha4 |
| Dependencies: | Stopgaps: |
Description (last modified by johanbosman) (diff)
sage: E = EllipticCurve('37a')
sage: R = E.padic_regulator(7)
sage: len(R.list())
37
sage: s = str(R)
sage: len(R.list())
19
Similarly:
sage: E = EllipticCurve('37a')
sage: R = E.padic_regulator(7)
sage: len(R.list())
37
sage: R.precision_absolute()
20
sage: len(R.list())
37
sage: R.precision_relative()
19
sage: len(R.list())
19
This is likely due to _normalize not getting called when necessary at object creation.
Apply:
to the sage repository.
Attachments
Change History
comment:2 Changed 18 months ago by johanbosman
- Reviewers set to Johan Bosman
- Description modified (diff)
- Authors set to David Roe
I've uploaded a patch that fixes the docstring formatting. If you agree with this, this can be given a positive_review.
Note: See
TracTickets for help on using
tickets.

