-
-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
py3: final fix for species #27072
Comments
Commit: |
Branch: u/chapoton/27072 |
New commits:
|
comment:2
green bot (damn bot with no pyflakes..), please review |
comment:3
Perhaps it would be better to have - if ((min is None and max is None) or
- (max is None and self.get_aorder() >= min)):
+ if (max is None and (not min or self.get_aorder() >= min)):
return self |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:5
done, thanks |
Reviewer: Travis Scrimshaw |
comment:6
Thank you. |
comment:7
Numerous doctest failures... |
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
comment:9
indeed. Let us step back to my basic but working fix. |
comment:10
Dumb thing, but this change makes it overindented:
Once fixed and green bot (either before or after), you can set back to a positive review. |
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
comment:12
right. Done. I will re-launch my bot on it. |
comment:13
ok, one green bot (the other is broken) |
Changed branch from u/chapoton/27072 to |
CC: @tscrim
Component: python3
Author: Frédéric Chapoton
Branch/Commit:
aba9cd9
Reviewer: Travis Scrimshaw
Issue created by migration from https://trac.sagemath.org/ticket/27072
The text was updated successfully, but these errors were encountered: