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
74b6abf6
Kaydet (Commit)
74b6abf6
authored
Agu 13, 2011
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.2.
üst
3672c4e2
3abb372c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
tarfile.py
Lib/tarfile.py
+4
-2
test_tarfile.py
Lib/test/test_tarfile.py
+8
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tarfile.py
Dosyayı görüntüle @
74b6abf6
...
...
@@ -1802,11 +1802,13 @@ class TarFile(object):
fileobj
=
gzip
.
GzipFile
(
name
,
mode
+
"b"
,
compresslevel
,
fileobj
)
t
=
cls
.
taropen
(
name
,
mode
,
fileobj
,
**
kwargs
)
except
IOError
:
if
not
extfileobj
:
if
not
extfileobj
and
fileobj
is
not
None
:
fileobj
.
close
()
if
fileobj
is
None
:
raise
raise
ReadError
(
"not a gzip file"
)
except
:
if
not
extfileobj
:
if
not
extfileobj
and
fileobj
is
not
None
:
fileobj
.
close
()
raise
t
.
_extfileobj
=
extfileobj
...
...
Lib/test/test_tarfile.py
Dosyayı görüntüle @
74b6abf6
...
...
@@ -1682,6 +1682,14 @@ class LinkEmulationTest(ReadTest):
class
GzipMiscReadTest
(
MiscReadTest
):
tarname
=
gzipname
mode
=
"r:gz"
def
test_non_existent_targz_file
(
self
):
# Test for issue11513: prevent non-existent gzipped tarfiles raising
# multiple exceptions.
with
self
.
assertRaisesRegex
(
IOError
,
"xxx"
)
as
ex
:
tarfile
.
open
(
"xxx"
,
self
.
mode
)
self
.
assertEqual
(
ex
.
exception
.
errno
,
errno
.
ENOENT
)
class
GzipUstarReadTest
(
UstarReadTest
):
tarname
=
gzipname
mode
=
"r:gz"
...
...
Misc/NEWS
Dosyayı görüntüle @
74b6abf6
...
...
@@ -254,6 +254,9 @@ Core and Builtins
Library
-------
- Issue #11513: Fix exception handling ``tarfile.TarFile.gzopen()`` when
the file cannot be opened.
- Issue #12687: Fix a possible buffering bug when unpickling text mode
(protocol 0, mostly) pickles.
...
...
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