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

Method __add__

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

Source from the content-addressed store, hash-verified

76 return self
77
78 def __add__(self, other):
79 if isinstance(other, string_types) or hasattr(other, '__html__'):
80 return self.__class__(super(Markup, self).__add__(self.escape(other)))
81 return NotImplemented
82
83 def __radd__(self, other):
84 if hasattr(other, '__html__') or isinstance(other, string_types):

Callers 1

__radd__Method · 0.45

Calls 1

escapeMethod · 0.95

Tested by

no test coverage detected