-
-
Notifications
You must be signed in to change notification settings - Fork 552
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #27126: py3: Fix plot module for python3
The root cause for matplotlib's {{{AttributeError: Unknown property which}}} was testing {{{hasattr(x, '__iter__')}}} to filter {{{str}}}. {{{str}}} hasn't an {{{__iter__}}} method in py2 but has one in py3. URL: https://trac.sagemath.org/27126 Reported by: vklein Ticket author(s): Vincent Klein Reviewer(s): Travis Scrimshaw
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters