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

Method spilldescriptors

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

Source from the content-addressed store, hash-verified

1447 return attrs
1448
1449 def spilldescriptors(msg, attrs, predicate):
1450 ok, attrs = _split_list(attrs, predicate)
1451 if ok:
1452 hr.maybe()
1453 push(msg)
1454 for name, kind, homecls, value in ok:
1455 push(self.docdata(value, name, mod))
1456 return attrs
1457
1458 def spilldata(msg, attrs, predicate):
1459 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