Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[SPRINT] Add warning for mixing AnchoredText with bad kwarg#2166

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
mdboom merged 1 commit intomatplotlib:v1.3.xfromdmcdougall:warn_anchortext
Jul 1, 2013

Conversation

dmcdougall
Copy link
Member

Mixing 'ha' or 'va' with AnchoredText produces bad output, so add a warning in
this case.

Addresses#1742.

propkeys = prop.keys()
badkwargs = ('ha', 'horizontalalignment', 'va', 'verticalalignment')
for badkwarg in badkwargs:
if badkwarg in propkeys:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

could be done with a set comparison. something likeif set(propkeys) & set(badkwargs): to avoid the loop.

Copy link
MemberAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Thanks, that's a much better idea.

Mixing 'ha' or 'va' with AnchoredText produces bad output, so add a warning inthis case.
mdboom added a commit that referenced this pull requestJul 1, 2013
[SPRINT] Add warning for mixing AnchoredText with bad kwarg
@mdboommdboom merged commit6397fe9 intomatplotlib:v1.3.xJul 1, 2013
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@dmcdougall@pelson@mdboom

[8]ページ先頭

©2009-2025 Movatter.jp