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
9e94972e
Kaydet (Commit)
9e94972e
authored
Kas 18, 2012
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#14313: zipfile now raises NotImplementedError when the compression type is unknown.
üst
355637be
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
0 deletions
+42
-0
test_zipfile.py
Lib/test/test_zipfile.py
+11
-0
zipfile.py
Lib/zipfile.py
+28
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_zipfile.py
Dosyayı görüntüle @
9e94972e
...
...
@@ -859,6 +859,17 @@ class OtherTests(unittest.TestCase):
caught."""
self
.
assertRaises
(
RuntimeError
,
zipfile
.
ZipFile
,
TESTFN
,
"w"
,
-
1
)
def
test_unsupported_compression
(
self
):
# data is declared as shrunk, but actually deflated
data
=
(
b
'PK
\x03\x04
.
\x00\x00\x00\x01\x00\xe4
C
\xa1
@
\x00\x00\x00
'
b
'
\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00
x
\x03\x00
PK
\x01
'
b
'
\x02
.
\x03
.
\x00\x00\x00\x01\x00\xe4
C
\xa1
@
\x00\x00\x00\x00\x02\x00\x00
'
b
'
\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
b
'
\x80\x01\x00\x00\x00\x00
xPK
\x05\x06\x00\x00\x00\x00\x01\x00\x01\x00
'
b
'/
\x00\x00\x00
!
\x00\x00\x00\x00\x00
'
)
with
zipfile
.
ZipFile
(
io
.
BytesIO
(
data
),
'r'
)
as
zipf
:
self
.
assertRaises
(
NotImplementedError
,
zipf
.
open
,
'x'
)
def
test_null_byte_in_filename
(
self
):
"""Check that a filename containing a null byte is properly
terminated."""
...
...
Lib/zipfile.py
Dosyayı görüntüle @
9e94972e
...
...
@@ -461,6 +461,28 @@ class _ZipDecrypter:
self
.
_UpdateKeys
(
c
)
return
c
compressor_names
=
{
0
:
'store'
,
1
:
'shrink'
,
2
:
'reduce'
,
3
:
'reduce'
,
4
:
'reduce'
,
5
:
'reduce'
,
6
:
'implode'
,
7
:
'tokenize'
,
8
:
'deflate'
,
9
:
'deflate64'
,
10
:
'implode'
,
12
:
'bzip2'
,
14
:
'lzma'
,
18
:
'terse'
,
19
:
'lz77'
,
97
:
'wavpack'
,
98
:
'ppmd'
,
}
class
ZipExtFile
(
io
.
BufferedIOBase
):
"""File-like object for reading an archive member.
Is returned by ZipFile.open().
...
...
@@ -487,6 +509,12 @@ class ZipExtFile(io.BufferedIOBase):
if
self
.
_compress_type
==
ZIP_DEFLATED
:
self
.
_decompressor
=
zlib
.
decompressobj
(
-
15
)
elif
self
.
_compress_type
!=
ZIP_STORED
:
descr
=
compressor_names
.
get
(
self
.
_compress_type
)
if
descr
:
raise
NotImplementedError
(
"compression type
%
d (
%
s)"
%
(
self
.
_compress_type
,
descr
))
else
:
raise
NotImplementedError
(
"compression type
%
d"
%
(
self
.
_compress_type
,))
self
.
_unconsumed
=
''
self
.
_readbuffer
=
''
...
...
Misc/NEWS
Dosyayı görüntüle @
9e94972e
...
...
@@ -148,6 +148,9 @@ Core and Builtins
Library
-------
-
Issue
#
14313
:
zipfile
now
raises
NotImplementedError
when
the
compression
type
is
unknown
.
-
Issue
#
16408
:
Fix
file
descriptors
not
being
closed
in
error
conditions
in
the
zipfile
module
.
Patch
by
Serhiy
Storchaka
.
...
...
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