mirror of https://github.com/python/cpython
merge heads
This commit is contained in:
commit
2d6a58b96f
|
@ -2153,10 +2153,10 @@ class TarFile(object):
|
|||
for offset, size in tarinfo.sparse:
|
||||
target.seek(offset)
|
||||
copyfileobj(source, target, size, ReadError)
|
||||
target.seek(tarinfo.size)
|
||||
target.truncate()
|
||||
else:
|
||||
copyfileobj(source, target, tarinfo.size, ReadError)
|
||||
target.seek(tarinfo.size)
|
||||
target.truncate()
|
||||
|
||||
def makeunknown(self, tarinfo, targetpath):
|
||||
"""Make a file from a TarInfo object with an unknown type
|
||||
|
|
Loading…
Reference in New Issue