Skip to content
Merged
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
17 changes: 3 additions & 14 deletions lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,24 +575,13 @@ def gen_candidates():
# rcParams deprecated and automatically mapped to another key.
# Values are tuples of (version, new_name, f_old2new, f_new2old).
_deprecated_map = {}

# rcParams deprecated; some can manually be mapped to another key.
# Values are tuples of (version, new_name_or_None).
_deprecated_ignore_map = {
'mpl_toolkits.legacy_colorbar': ('3.4', None),
}

_deprecated_ignore_map = {}
# rcParams deprecated; can use None to suppress warnings; remain actually
# listed in the rcParams (not included in _all_deprecated).
# listed in the rcParams.
# Values are tuples of (version,)
_deprecated_remain_as_none = {
'animation.avconv_path': ('3.3',),
'animation.avconv_args': ('3.3',),
'animation.html_args': ('3.3',),
}


_all_deprecated = {*_deprecated_map, *_deprecated_ignore_map}
_deprecated_remain_as_none = {}


@docstring.Substitution(
Expand Down