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

Function call

Lib/operator.py:234–236  ·  view source on GitHub ↗

Same as obj(*args, **kwargs).

(obj, /, *args, **kwargs)

Source from the content-addressed store, hash-verified

232# Other Operations ************************************************************#
233
234def call(obj, /, *args, **kwargs):
235 """Same as obj(*args, **kwargs)."""
236 return obj(*args, **kwargs)
237
238# Generalized Lookup Objects **************************************************#
239

Callers

nothing calls this directly

Calls 1

objClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…