Add `operator.call` by jopemachine · Pull Request #4153 · RustPython/RustPython
__all__ = ['abs', 'add', 'and_', 'attrgetter', 'concat', 'contains', 'countOf', __all__ = ['abs', 'add', 'and_', 'attrgetter', 'call', 'concat', 'contains', 'countOf', 'delitem', 'eq', 'floordiv', 'ge', 'getitem', 'gt', 'iadd', 'iand', 'iconcat', 'ifloordiv', 'ilshift', 'imatmul', 'imod', 'imul', 'index', 'indexOf', 'inv', 'invert', 'ior', 'ipow', 'irshift',
# Other Operations ************************************************************#
def call(obj, /, *args, **kwargs): """Same as obj(*args, **kwargs).""" return obj(*args, **kwargs)
# Generalized Lookup Objects **************************************************#
class attrgetter: