MCPcopy Index your code
hub / github.com/nodejs/node / func

Method func

tools/inspector_protocol/markupsafe/__init__.py:169–172  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

167 def make_wrapper(name):
168 orig = getattr(text_type, name)
169 def func(self, *args, **kwargs):
170 args = _escape_argspec(list(args), enumerate(args), self.escape)
171 #_escape_argspec(kwargs, kwargs.iteritems(), None)
172 return self.__class__(orig(self, *args, **kwargs))
173 func.__name__ = orig.__name__
174 func.__doc__ = orig.__doc__
175 return func

Callers 1

__call__Method · 0.45

Calls 3

_escape_argspecFunction · 0.70
listFunction · 0.50
enumerateFunction · 0.50

Tested by

no test coverage detected