File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -495,3 +495,5 @@ animation.convert_path: convert # Path to ImageMagick's convert binary.
495495 # is also the name of a system tool.
496496animation.convert_args:
497497animation.html: none
498+
499+ _internal.classic_mode: True
Original file line number Diff line number Diff line change @@ -1191,7 +1191,14 @@ def validate_cycler(s):
11911191 'animation.convert_path' : ['convert' , six .text_type ],
11921192 # Additional arguments for mencoder movie writer (using pipes)
11931193
1194- 'animation.convert_args' : [[], validate_stringlist ]}
1194+ 'animation.convert_args' : [[], validate_stringlist ],
1195+
1196+ # Classic (pre 2.0) compatibility mode
1197+ # This is used for things that are hard to make backward compatible
1198+ # with a sane rcParam alone. This does *not* turn on classic mode
1199+ # altogether. For that use `matplotlib.style.use('classic')`.
1200+ '_internal.classic_mode' : [False , validate_bool ]
1201+ }
11951202
11961203
11971204if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments