Get resources information. Return information (from system_info.get_info) for all of the names in the argument list in a single dictionary.
(self,*names)
| 2116 | self.py_modules.append((self.name, name, generate_config_py)) |
| 2117 | |
| 2118 | def get_info(self,*names): |
| 2119 | """Get resources information. |
| 2120 | |
| 2121 | Return information (from system_info.get_info) for all of the names in |
| 2122 | the argument list in a single dictionary. |
| 2123 | """ |
| 2124 | from .system_info import get_info, dict_append |
| 2125 | info_dict = {} |
| 2126 | for a in names: |
| 2127 | dict_append(info_dict,**get_info(a)) |
| 2128 | return info_dict |
| 2129 | |
| 2130 | |
| 2131 | def get_cmd(cmdname, _cache={}): |
nothing calls this directly
no test coverage detected