MCPcopy Index your code
hub / github.com/python/cpython / spilldescriptors

Method spilldescriptors

Lib/pydoc.py:958–965  ·  view source on GitHub ↗
(msg, attrs, predicate)

Source from the content-addressed store, hash-verified

956 return attrs
957
958 def spilldescriptors(msg, attrs, predicate):
959 ok, attrs = _split_list(attrs, predicate)
960 if ok:
961 hr.maybe()
962 push(msg)
963 for name, kind, homecls, value in ok:
964 push(self.docdata(value, name, mod))
965 return attrs
966
967 def spilldata(msg, attrs, predicate):
968 ok, attrs = _split_list(attrs, predicate)

Callers

nothing calls this directly

Calls 3

docdataMethod · 0.95
_split_listFunction · 0.85
maybeMethod · 0.45

Tested by

no test coverage detected