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

Method __radd__

tools/inspector_protocol/markupsafe/__init__.py:83–86  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

81 return NotImplemented
82
83 def __radd__(self, other):
84 if hasattr(other, '__html__') or isinstance(other, string_types):
85 return self.escape(other).__add__(self)
86 return NotImplemented
87
88 def __mul__(self, num):
89 if isinstance(num, int_types):

Callers

nothing calls this directly

Calls 2

escapeMethod · 0.95
__add__Method · 0.45

Tested by

no test coverage detected