upip: Update utarfile from upstream.

pull/107/merge
Paul Sokolovsky 2016-10-09 12:27:22 +03:00
rodzic 1401fa385a
commit e25148e860
1 zmienionych plików z 0 dodań i 6 usunięć

Wyświetl plik

@ -12,12 +12,6 @@ REGTYPE = "file"
def roundup(val, align):
return (val + align - 1) & ~(align - 1)
def skip(f, size):
assert size % 512 == 0
buf = bytearray(512)
while size:
size -= f.readinto(buf)
class FileSection:
def __init__(self, f, content_len, aligned_len):