Return a configuration dictionary for usage in configuration() function defined in file setup_ .py.
(name = None, parent_name = None, local_path=None)
| 2280 | ######################### |
| 2281 | |
| 2282 | def default_config_dict(name = None, parent_name = None, local_path=None): |
| 2283 | """Return a configuration dictionary for usage in |
| 2284 | configuration() function defined in file setup_<name>.py. |
| 2285 | """ |
| 2286 | import warnings |
| 2287 | warnings.warn('Use Configuration(%r,%r,top_path=%r) instead of '\ |
| 2288 | 'deprecated default_config_dict(%r,%r,%r)' |
| 2289 | % (name, parent_name, local_path, |
| 2290 | name, parent_name, local_path, |
| 2291 | ), stacklevel=2) |
| 2292 | c = Configuration(name, parent_name, local_path) |
| 2293 | return c.todict() |
| 2294 | |
| 2295 | |
| 2296 | def dict_append(d, **kws): |
nothing calls this directly
no test coverage detected