You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With SageMath version 9.8.beta1, Release Date: 2022-09-29, this works:
sage: arrow((0,0), (0,0))
Launched png viewer for Graphics object consisting of 1 graphics primitive
but this is broken:
sage: arrow((0,0), (0,0), linestyle='dashed')
/home/slabbe/GitBox/sage/src/sage/repl/rich_output/display_manager.py:610: RichReprWarning: Exception in _rich_repr_ while displaying object: list index out of range
warnings.warn(
Graphics object consisting of 1 graphics primitive
The text was updated successfully, but these errors were encountered:
@seblabbe One way to work around this issue is to use the linetypes option instead of linestyle to specify the type of line used for the arrow. sage: arrow((0,0), (0,0), linetypes=['dashed'])
### 📚 Description
We return False if there is no n-th path
Closes#35031
### 📝 Checklist
<!-- Put an `x` in all the boxes that apply. -->
<!-- If your change requires a documentation PR, please link it
appropriately -->
<!-- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->
- [X] I have made sure that the title is self-explanatory and the
description concisely explains the PR.
- [X] I have linked an issue or discussion.
- [ ] I have created tests covering the changes.
- [ ] I have updated the documentation accordingly.
URL: #35156
Reported by: Andrew
Reviewer(s): Sébastien Labbé
With SageMath version 9.8.beta1, Release Date: 2022-09-29, this works:
but this is broken:
The text was updated successfully, but these errors were encountered: