MCPcopy Index your code
hub / github.com/pyload/pyload / __init__

Method __init__

module/network/HTTPChunk.py:38–42  ·  view source on GitHub ↗
(self, name)

Source from the content-addressed store, hash-verified

36
37class ChunkInfo():
38 def __init__(self, name):
39 self.name = decode(name)
40 self.size = 0
41 self.resume = False
42 self.chunks = []
43
44 def __repr__(self):
45 ret = "ChunkInfo: %s, %s\n" % (self.name, self.size)

Callers

nothing calls this directly

Calls 1

decodeFunction · 0.90

Tested by

no test coverage detected