MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _update_user_library

Function _update_user_library

lib/matplotlib/style/__init__.py:191–196  ·  view source on GitHub ↗

Update style library with user-defined rc files.

(library)

Source from the content-addressed store, hash-verified

189
190
191def _update_user_library(library):
192 """Update style library with user-defined rc files."""
193 for stylelib_path in map(os.path.expanduser, USER_LIBRARY_PATHS):
194 styles = _read_style_directory(stylelib_path)
195 _update_nested_dict(library, styles)
196 return library
197
198
199@_api.deprecated("3.11")

Callers 2

update_user_libraryFunction · 0.85
reload_libraryFunction · 0.85

Calls 2

_read_style_directoryFunction · 0.85
_update_nested_dictFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…