MCPcopy Index your code
hub / github.com/RustPython/RustPython / update

Method update

Lib/hmac.py:149–152  ·  view source on GitHub ↗

Feed data from msg into this hashing object.

(self, msg)

Source from the content-addressed store, hash-verified

147 return f"hmac-{self._inner.name}"
148
149 def update(self, msg):
150 """Feed data from msg into this hashing object."""
151 inst = self._hmac or self._inner
152 inst.update(msg)
153
154 def copy(self):
155 """Return a separate copy of this hashing object.

Callers 15

_init_oldMethod · 0.95
check_updateMethod · 0.95
test_equalityMethod · 0.95
update_wrapperFunction · 0.45
__init__Method · 0.45
__ior__Method · 0.45
__or__Method · 0.45
__ror__Method · 0.45
reload_environFunction · 0.45
attr_matchesMethod · 0.45
localeconvFunction · 0.45
file_digestFunction · 0.45

Calls

no outgoing calls

Tested by 5

check_updateMethod · 0.76
test_equalityMethod · 0.76
findMethod · 0.36
testfileFunction · 0.36
tearDownMethod · 0.36