Opened 2 years ago
Closed 2 years ago
#27126 closed enhancement (fixed)
py3: Fix plot module for python3
Reported by: | vklein | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | sage-8.7 |
Component: | python3 | Keywords: | |
Cc: | Merged in: | ||
Authors: | Vincent Klein | Reviewers: | Travis Scrimshaw |
Report Upstream: | N/A | Work issues: | |
Branch: | 2131766 (Commits, GitHub, GitLab) | Commit: | 213176628ad9a78f70dc856c5ab09f8db7ed779d |
Dependencies: | Stopgaps: |
Description
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.
Change History (4)
comment:1 Changed 2 years ago by
- Branch set to u/vklein/27126
comment:2 Changed 2 years ago by
- Commit set to 213176628ad9a78f70dc856c5ab09f8db7ed779d
- Status changed from new to needs_review
comment:3 Changed 2 years ago by
- Reviewers set to Travis Scrimshaw
- Status changed from needs_review to positive_review
LGTM.
comment:4 Changed 2 years ago by
- Branch changed from u/vklein/27126 to 213176628ad9a78f70dc856c5ab09f8db7ed779d
- Resolution set to fixed
- Status changed from positive_review to closed
Note: See
TracTickets for help on using
tickets.
New commits:
Trac #27126: Fix plot module for python3