Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ENH: Stricter validation of line style rcParams (and extended accepted types for grid.linestyle) #8040

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 15 commits into from
Feb 18, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix the deprecation decorators
  • Loading branch information
afvincent committed Feb 17, 2017
commit 70e87c81945ec1fbb1d5871af13d30fe498b48ec
4 changes: 2 additions & 2 deletions lib/matplotlib/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,14 +535,14 @@ def validate_ps_distiller(s):
ignorecase=True)


@deprecated('3.0.0?', pending=True,
@deprecated('2.1',
addendum=(" See 'validate_negative_linestyle_legacy' " +
"deprecation warning for more information."))
def validate_negative_linestyle(s):
return _validate_negative_linestyle(s)


@deprecated('3.0.0?', pending=True,
@deprecated('2.1',
addendum=(" The 'contour.negative_linestyle' rcParam now " +
"follows the same validation as the other rcParams " +
"that are related to line style."))
Expand Down