Changes between Initial Version and Version 1 of Ticket #11885
- Timestamp:
- 09/30/11 20:54:55 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11885
- Property Keywords precision added
-
Property
Status
changed from
new
toneeds_review
-
Property
Authors
changed from
to
Benjamin Jones
-
Ticket #11885 – Description
initial v1 1 In multiple places in the Sage library the function `sage.libs.mpmath.utils.call` is called and inputs are passed along with their parents. If the parent of the input doesn't have a `prec` method, an AttributeErroris raised:1 In multiple places in the Sage library the function `sage.libs.mpmath.utils.call` is called and inputs are passed along with their parents. If the parent of the input doesn't have a `prec` method, an `AttributeError` is raised: 2 2 3 3 {{{ … … 17 17 }}} 18 18 19 This can be fixed with a simple check in in the `call` code in `sage/libs/mpmath/utils.pyx`. 19 This can be fixed with a simple check in in the `call` code in `sage/libs/mpmath/utils.pyx`. 20 21 ---- 22 23 Apply [attachment:trac_11885.patch] to the Sage library.