MCPcopy Create free account
hub / github.com/numpy/numpy / get_info

Method get_info

numpy/distutils/misc_util.py:2118–2128  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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
2131def get_cmd(cmdname, _cache={}):

Callers

nothing calls this directly

Calls 2

dict_appendFunction · 0.70
get_infoFunction · 0.70

Tested by

no test coverage detected