-
-
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: some tiny fixes in numerical folder #27342
Comments
New commits:
|
Branch: u/chapoton/27342 |
Commit: |
Reviewer: Travis Scrimshaw |
comment:2
I don't have the Python3 version to test, but I do not think this change is necessary from looking at the code: - sage: p.add_col(range(5), range(5))
+ sage: p.add_col(list(range(5)), list(range(5))) Even if it does fail, I think it would be better to have the original input work. |
comment:3
Thanks for the review. The type "list" is hardcoded (in the cdef line) for both entries of this function. This could be enhanced, but not now. |
comment:4
Ah, I see. I missed that. Sorry for the noise. |
Changed branch from u/chapoton/27342 to |
Component: python3
Author: Frédéric Chapoton
Branch/Commit:
ba61c9e
Reviewer: Travis Scrimshaw
Issue created by migration from https://trac.sagemath.org/ticket/27342
The text was updated successfully, but these errors were encountered: