Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7ecd13da
Kaydet (Commit)
7ecd13da
authored
Kas 29, 2012
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge issue #16477: Close tarfile internal handlers in case of exception.
Patch by Serhiy Storchaka.
üst
159f12e3
718df1d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
13 deletions
+11
-13
tarfile.py
Lib/tarfile.py
+11
-13
No files found.
Lib/tarfile.py
Dosyayı görüntüle @
7ecd13da
...
...
@@ -1924,9 +1924,8 @@ class TarFile(object):
# Append the tar header and data to the archive.
if
tarinfo
.
isreg
():
f
=
bltn_open
(
name
,
"rb"
)
self
.
addfile
(
tarinfo
,
f
)
f
.
close
()
with
bltn_open
(
name
,
"rb"
)
as
f
:
self
.
addfile
(
tarinfo
,
f
)
elif
tarinfo
.
isdir
():
self
.
addfile
(
tarinfo
)
...
...
@@ -2131,16 +2130,15 @@ class TarFile(object):
"""
source
=
self
.
fileobj
source
.
seek
(
tarinfo
.
offset_data
)
target
=
bltn_open
(
targetpath
,
"wb"
)
if
tarinfo
.
sparse
is
not
None
:
for
offset
,
size
in
tarinfo
.
sparse
:
target
.
seek
(
offset
)
copyfileobj
(
source
,
target
,
size
)
else
:
copyfileobj
(
source
,
target
,
tarinfo
.
size
)
target
.
seek
(
tarinfo
.
size
)
target
.
truncate
()
target
.
close
()
with
bltn_open
(
targetpath
,
"wb"
)
as
target
:
if
tarinfo
.
sparse
is
not
None
:
for
offset
,
size
in
tarinfo
.
sparse
:
target
.
seek
(
offset
)
copyfileobj
(
source
,
target
,
size
)
else
:
copyfileobj
(
source
,
target
,
tarinfo
.
size
)
target
.
seek
(
tarinfo
.
size
)
target
.
truncate
()
def
makeunknown
(
self
,
tarinfo
,
targetpath
):
"""Make a file from a TarInfo object with an unknown type
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment