Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ __ior__
Method
__ior__
Lib/weakref.py:257–259 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
255
return
list(self.data.copy().values())
256
257
def
__ior__(self, other):
258
self.update(other)
259
return
self
260
261
def
__or__(self, other):
262
if
isinstance(other, _collections_abc.Mapping):
Callers
nothing calls this directly
Calls
1
update
Method · 0.95
Tested by
no test coverage detected