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

Function _resolve_full_groupby

Tools/c-analyzer/cpython/_capi.py:252–259  ·  view source on GitHub ↗
(groupby)

Source from the content-addressed store, hash-verified

250
251
252def _resolve_full_groupby(groupby):
253 if isinstance(groupby, str):
254 groupby = [groupby]
255 groupings = []
256 for grouping in groupby + list(GROUPINGS):
257 if grouping not in groupings:
258 groupings.append(grouping)
259 return groupings
260
261
262def summarize(items, *, groupby='kind', includeempty=True, minimize=None):

Callers 2

summarizeFunction · 0.85
render_tableFunction · 0.85

Calls 2

listClass · 0.85
appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…