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

Method __ror__

Lib/test/test_augassign.py:192–193  ·  view source on GitHub ↗
(self, val)

Source from the content-addressed store, hash-verified

190 def __or__(self, val):
191 output.append("__or__ called")
192 def __ror__(self, val):
193 output.append("__ror__ called")
194 def __ior__(self, val):
195 output.append("__ior__ called")
196 return self

Callers 2

test_mixed_orMethod · 0.45
test_ror_operatorMethod · 0.45

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected