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
ac26a2e7
Kaydet (Commit)
ac26a2e7
authored
Kas 29, 2012
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16477: Close tarfile internal handlers in case of exception.
Patch by Serhiy Storchaka.
üst
43acbf1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
tarfile.py
Lib/tarfile.py
+7
-7
No files found.
Lib/tarfile.py
Dosyayı görüntüle @
ac26a2e7
...
...
@@ -1987,9 +1987,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
)
...
...
@@ -2197,10 +2196,11 @@ class TarFile(object):
"""Make a file called targetpath.
"""
source
=
self
.
extractfile
(
tarinfo
)
target
=
bltn_open
(
targetpath
,
"wb"
)
copyfileobj
(
source
,
target
)
source
.
close
()
target
.
close
()
try
:
with
bltn_open
(
targetpath
,
"wb"
)
as
target
:
copyfileobj
(
source
,
target
)
finally
:
source
.
close
()
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