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

Skip to content

Also deprecate ignorecase ValidateInStrings. #16531

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
Feb 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 4 additions & 3 deletions doc/api/next_api_changes/deprecations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ The following validators, defined in `.rcsetup`, are deprecated:
``validate_svg_fontset``, ``validate_pgf_texsystem``,
``validate_movie_frame_fmt``, ``validate_axis_locator``,
``validate_movie_html_fmt``, ``validate_grid_axis``,
``validate_axes_titlelocation``. To test whether an rcParam value would
be acceptable, one can test e.g. ``rc = RcParams(); rc[k] = v`` raises an
exception.
``validate_axes_titlelocation``, ``validate_toolbar``,
``validate_ps_papersize``, ``validate_legend_log``. To test whether an rcParam
value would be acceptable, one can test e.g. ``rc = RcParams(); rc[k] = v``
raises an exception.
43 changes: 31 additions & 12 deletions lib/matplotlib/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ def validate_backend(s):


validate_toolbar = ValidateInStrings(
'toolbar', ['None', 'toolbar2', 'toolmanager'], ignorecase=True)
'toolbar', ['None', 'toolbar2', 'toolmanager'], ignorecase=True,
_deprecated_since="3.3")


def _make_nseq_validator(cls, n=None, allow_none=False):
Expand Down Expand Up @@ -478,7 +479,7 @@ def _update_savefig_format(value):
['auto', 'letter', 'legal', 'ledger',
'a0', 'a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9', 'a10',
'b0', 'b1', 'b2', 'b3', 'b4', 'b5', 'b6', 'b7', 'b8', 'b9', 'b10',
], ignorecase=True)
], ignorecase=True, _deprecated_since="3.3")


def validate_ps_distiller(s):
Expand Down Expand Up @@ -639,7 +640,7 @@ def validate_markevery(s):
'center right',
'lower center',
'upper center',
'center'], ignorecase=True)
'center'], ignorecase=True, _deprecated_since="3.3")

validate_svg_fonttype = ValidateInStrings(
'svg.fonttype', ['none', 'path'], _deprecated_since="3.3")
Expand Down Expand Up @@ -985,17 +986,29 @@ def validate_webagg_address(s):
'axes.titlelocation', ['left', 'center', 'right'], _deprecated_since="3.3")


class _ignorecase(list):
"""A marker class indicating that a list-of-str is case-insensitive."""


def _convert_validator_spec(key, conv):
if isinstance(conv, list):
ignorecase = isinstance(conv, _ignorecase)
return ValidateInStrings(key, conv, ignorecase=ignorecase)
else:
return conv


# A map of key -> [value, converter].
# Converters given as lists are converted to ValidateInStrings immediately
# below.
# Converters given as lists or _ignorecase are converted to ValidateInStrings
# immediately below.
defaultParams = {
'backend': [_auto_backend_sentinel, validate_backend],
'backend_fallback': [True, validate_bool],
'webagg.port': [8988, validate_int],
'webagg.address': ['127.0.0.1', validate_webagg_address],
'webagg.open_in_browser': [True, validate_bool],
'webagg.port_retries': [50, validate_int],
'toolbar': ['toolbar2', validate_toolbar],
'toolbar': ['toolbar2', _ignorecase(['none', 'toolbar2', 'toolmanager'])],
'datapath': [None, validate_any], # see _get_data_path_cached
'interactive': [False, validate_bool],
'timezone': ['UTC', validate_string],
Expand Down Expand Up @@ -1232,7 +1245,13 @@ def validate_webagg_address(s):

#legend properties
'legend.fancybox': [True, validate_bool],
'legend.loc': ['best', validate_legend_loc],
'legend.loc': ['best',
_ignorecase(['best',
'upper right', 'upper left',
'lower left', 'lower right', 'right',
'center left', 'center right',
'lower center', 'upper center',
'center'])],
# the number of points in the legend line
'legend.numpoints': [1, validate_int],
# the number of points in the legend line for scatter
Expand Down Expand Up @@ -1370,7 +1389,9 @@ def validate_webagg_address(s):
'tk.window_focus': [False, validate_bool],

# Set the papersize/type
'ps.papersize': ['letter', validate_ps_papersize],
'ps.papersize': ['letter',
_ignorecase(['auto', 'letter', 'legal', 'ledger',
*[f'{ab}{i}' for ab in 'ab' for i in range(11)]])],
'ps.useafm': [False, validate_bool],
# use ghostscript or xpdf to distill ps output
'ps.usedistiller': [False, validate_ps_distiller],
Expand Down Expand Up @@ -1460,7 +1481,5 @@ def validate_webagg_address(s):
# altogether. For that use `matplotlib.style.use('classic')`.
'_internal.classic_mode': [False, validate_bool]
}
defaultParams = {
k: [default,
ValidateInStrings(k, conv) if isinstance(conv, list) else conv]
for k, (default, conv) in defaultParams.items()}
defaultParams = {k: [default, _convert_validator_spec(k, conv)]
for k, (default, conv) in defaultParams.items()}