##// END OF EJS Templates
Merge pull request #4292 from Carreau/more-cpl...
Merge pull request #4292 from Carreau/more-cpl improve js-completer logic.

File last commit:

r12930:4af6b351
r12976:eb6d398a merge
Show More
config-extend.rst
15 lines | 495 B | text/x-rst | RstLexer

Extending Configurable Containers

Some configurable traits are containers (list, dict, set) Config objects now support calling extend, update, insert, etc. on traits in config files, which will ultimately result in calling those methods on the original object.

The effect being that you can now add to containers without having to copy/paste the initial value:

c = get_config()
c.InlineBackend.rc.update({ 'figure.figsize' : (6, 4) })