MCPcopy Create free account
hub / github.com/cvxpy/cvxpy / _str_param_list

Method _str_param_list

doc/sphinxext/docscrape.py:344–352  ·  view source on GitHub ↗
(self, name)

Source from the content-addressed store, hash-verified

342 return []
343
344 def _str_param_list(self, name):
345 out = []
346 if self[name]:
347 out += self._str_header(name)
348 for param,param_type,desc in self[name]:
349 out += ['%s : %s' % (param, param_type)]
350 out += self._str_indent(desc)
351 out += ['']
352 return out
353
354 def _str_section(self, name):
355 out = []

Callers 1

__str__Method · 0.95

Calls 2

_str_headerMethod · 0.95
_str_indentMethod · 0.95

Tested by

no test coverage detected