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
ffcd339a
Kaydet (Commit)
ffcd339a
authored
Nis 08, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Close #17666: Fix reading gzip files with an extra field.
üst
c137f7c0
7e69f008
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
gzip.py
Lib/gzip.py
+2
-1
test_gzip.py
Lib/test/test_gzip.py
+7
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/gzip.py
Dosyayı görüntüle @
ffcd339a
...
...
@@ -302,7 +302,8 @@ class GzipFile(io.BufferedIOBase):
if
flag
&
FEXTRA
:
# Read & discard the extra field, if present
self
.
_read_exact
(
struct
.
unpack
(
"<H"
,
self
.
_read_exact
(
2
)))
extra_len
,
=
struct
.
unpack
(
"<H"
,
self
.
_read_exact
(
2
))
self
.
_read_exact
(
extra_len
)
if
flag
&
FNAME
:
# Read and discard a null-terminated string containing the filename
while
True
:
...
...
Lib/test/test_gzip.py
Dosyayı görüntüle @
ffcd339a
...
...
@@ -403,6 +403,13 @@ class TestGzip(BaseTest):
with
gzip
.
GzipFile
(
fileobj
=
io
.
BytesIO
(
truncated
[:
i
]))
as
f
:
self
.
assertRaises
(
EOFError
,
f
.
read
,
1
)
def
test_read_with_extra
(
self
):
# Gzip data with an extra field
gzdata
=
(
b
'
\x1f\x8b\x08\x04\xb2\x17
cQ
\x02\xff
'
b
'
\x05\x00
Extra'
b
'
\x0b
I-.
\x01\x00
2
\xd1
Mx
\x04\x00\x00\x00
'
)
with
gzip
.
GzipFile
(
fileobj
=
io
.
BytesIO
(
gzdata
))
as
f
:
self
.
assertEqual
(
f
.
read
(),
b
'Test'
)
class
TestOpen
(
BaseTest
):
def
test_binary_modes
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
ffcd339a
...
...
@@ -30,6 +30,8 @@ Core and Builtins
Library
-------
-
Issue
#
17666
:
Fix
reading
gzip
files
with
an
extra
field
.
-
Issue
#
16475
:
Support
object
instancing
,
recursion
and
interned
strings
in
marshal
...
...
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