I ran into this when trying to use the amazing debug() in the sage
notebook on a particularly shallow traceback. However, the problem
seems to be for interact sliders in general. This is on sage 5.0
notebook using Firefox 13.0 (the present standard with Fedora 16). It
may be browser dependent, but I don't know.
The include_endpoint suggests that this should be " num_steps <= 1 ".
I don't know how to submit patches to sagenb, so can someone please
format an appropriate patch?
In addition, we could save some work by giving "debug" immediately a
list of integers, avoiding dodgy float operations to compute num_steps
(things being integers):
> The include_endpoint suggests that this should be " num_steps <= 1 ".
> I don't know how to submit patches to sagenb, so can someone please
> format an appropriate patch?
> In addition, we could save some work by giving "debug" immediately a
> list of integers, avoiding dodgy float operations to compute num_steps
> (things being integers):
> Click on "edit in the upper right of the file listing
> Make the change in the browser editor, then click "Submit pull request"
Thanks! The amazing thing is that you describe the full process! I
didn't use github before. Sage's trac submission process is a long
string of tedium interspersed with boredom and administrative red tape
by comparison (especially for a 1 character patch).
>> Click on "edit in the upper right of the file listing
>> Make the change in the browser editor, then click "Submit pull request"
> Thanks! The amazing thing is that you describe the full process! I
> didn't use github before. Sage's trac submission process is a long
> string of tedium interspersed with boredom and administrative red tape
> by comparison (especially for a 1 character patch).
Yup, that's a really nice thing about github's online editor. It's great
for typo fixes and other trivial edits.
Of course, if your patch was a bit more complicated, or touched multiple
files, you'd have needed to do a bit more footwork - forking the
repository on github, cloning your fork to your local computer,
committing your changes, pushing them to a branch on your github fork,
and then creating a pull request from your fork's new branch to the
sagemath user's fork's master branch.
So, not that much easier than Sage's trac submission process on first
glance, though IMO once you get used to it it's really nice to not have
to deal with patch files bitrotting and such.