# HG changeset patch # User Franz Glasner # Date 1457602975 -3600 # Node ID 94b5e94fae440210a43d9be4ad07c713e45fd9c2 # Parent f85dc4677c012245bb8d32c1cae76858b42782e3 Make the AttributeDict "private" (-> "_AttributeDict") diff -r f85dc4677c01 -r 94b5e94fae44 configmix/config.py --- a/configmix/config.py Thu Mar 10 09:39:35 2016 +0100 +++ b/configmix/config.py Thu Mar 10 10:42:55 2016 +0100 @@ -24,7 +24,7 @@ _MARKER = object() -class AttributeDict(ConfigurationBase): +class _AttributeDict(ConfigurationBase): def __getattr__(self, name): try: @@ -39,7 +39,7 @@ return v -class Configuration(AttributeDict): +class Configuration(_AttributeDict): def getvar(self, varname, default=_MARKER): """Get a variable of the form ``[[ns1.]ns2.]name`` - including