Skip to content

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