Do you have a link for this? As far as I can see, the config files are
given in the following manner:
p = configargparse.ArgParser(default_config_files=['/etc/app/conf.d/*.conf', '~/.my_settings'])
I can obviously just read the config file with configparser, but the
idea of configargparse is that an option can be specified as an option,
in a config file, or as an environment variable,
As far as I can tell, configargparse only loads entries from the config
file into the appropriate namespace if they have also been defined as
long options (i.e. with '--'). I was hoping to access *all* the config
file entries, regardless of whether they are also options, since the
config is obviously being read.