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

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
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 like if set(propkeys) & set(badkwargs): to avoid the loop.

Copy link
Member Author

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 in
this case.
mdboom added a commit that referenced this pull request Jul 1, 2013
[SPRINT] Add warning for mixing AnchoredText with bad kwarg
@mdboom mdboom merged commit 6397fe9 into matplotlib:v1.3.x Jul 1, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants
Morty Proxy This is a proxified and sanitized view of the page, visit original site.