MCPcopy
hub / github.com/redis/redis-py / update

Method update

redis/client.py:138–140  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

136 super().__setitem__(k.upper(), v)
137
138 def update(self, data):
139 data = CaseInsensitiveDict(data)
140 super().update(data)
141
142
143class AbstractRedis:

Calls 1

CaseInsensitiveDictClass · 0.85