(s)
| 316 | |
| 317 | |
| 318 | def _validate_toolbar(s): |
| 319 | s = ValidateInStrings( |
| 320 | 'toolbar', ['None', 'toolbar2', 'toolmanager'], ignorecase=True)(s) |
| 321 | if s == 'toolmanager': |
| 322 | _api.warn_external( |
| 323 | "Treat the new Tool classes introduced in v1.5 as experimental " |
| 324 | "for now; the API and rcParam may change in future versions.") |
| 325 | return s |
| 326 | |
| 327 | |
| 328 | def validate_color_or_inherit(s): |
nothing calls this directly
no test coverage detected
searching dependent graphs…