-
-
Notifications
You must be signed in to change notification settings - Fork 586
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
Fixed issue in list_plot where it assumed data had been enumerated when it might not have been #39481
Fixed issue in list_plot where it assumed data had been enumerated when it might not have been #39481
Conversation
…en it might not have been
Thanks for the fix. The code already passed CI testing, except that Standard coding style in python is for variables to be all-lowercase (unless a word, such as someone's name, needs to be capitalized), with an underscore between words. (Mixed case is used for class names.) So you should change In line 3111, you need to change I think the #-comments could be clarified. (These are tests, not examples, and I think it may not be clear what "Non enumerated" means, unless the reader has a good understanding of the code.) I suggest "Test the codepath where ``list_enumerated`` is ``False``." and "Test the codepath where ``list_enumerated`` is ``True``." Sagemath does not normally use #-commented lines in doctests. Instead, ReST syntax should be used to show that it is a comment. (Reduce the indentation, add two colons at the end, and add a blank line after it.)
|
Documentation preview for this PR (built with commit 61f5728; changes) is ready! 🎉 |
CI is happy with this, and so am I. Will set to positive review on Thursday if there are no other comments. |
sagemathgh-39481: Fixed issue in list_plot where it assumed data had been enumerated when it might not have been <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> Fixes sagemath#29960. Fixes issue where data was assumed to be enumerated but there are cases where it may not be. If the data was a list of complex numbers it was previously assumed that the data at the very end was guaranteed to be enumerated as it would enumerate the data in a previous catch block. However if the first element of the list is not a real number the list is not enumerated as the catch block fails before it enumerates anything. This was allowing weird errors as seen in the original bug fix request. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [X] The title is concise and informative. - [X] The description explains in detail what this PR is about. - [X] I have linked a relevant issue or discussion. - [X] I have created tests covering the changes. - [X] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies URL: sagemath#39481 Reported by: Noel-Roemmele Reviewer(s):
Fixes #29960. Fixes issue where data was assumed to be enumerated but there are cases where it may not be. If the data was a list of complex numbers it was previously assumed that the data at the very end was guaranteed to be enumerated as it would enumerate the data in a previous catch block. However if the first element of the list is not a real number the list is not enumerated as the catch block fails before it enumerates anything. This was allowing weird errors as seen in the original bug fix request.
📝 Checklist
⌛ Dependencies