File tree 2 files changed +10
-1
lines changed 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -495,3 +495,5 @@ animation.convert_path: convert # Path to ImageMagick's convert binary.
495
495
# is also the name of a system tool.
496
496
animation.convert_args:
497
497
animation.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):
1191
1191
'animation.convert_path' : ['convert' , six .text_type ],
1192
1192
# Additional arguments for mencoder movie writer (using pipes)
1193
1193
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
+ }
1195
1202
1196
1203
1197
1204
if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments