MCPcopy
hub / github.com/urllib3/urllib3 / put

Method put

src/urllib3/response.py:395–397  ·  view source on GitHub ↗
(self, data: bytes)

Source from the content-addressed store, hash-verified

393 return self._size
394
395 def put(self, data: bytes) -> None:
396 self.buffer.append(data)
397 self._size += len(data)
398
399 def get(self, n: int) -> bytes:
400 if n == 0:

Calls

no outgoing calls