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
1cc98af8
Kaydet (Commit)
1cc98af8
authored
Ock 19, 2008
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
backport r60116 - fix zipfile to work with archives having file
headers beyond the signed 2**31 byte boundary.
üst
c223c6cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
zipfile.py
Lib/zipfile.py
+2
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/zipfile.py
Dosyayı görüntüle @
1cc98af8
...
...
@@ -32,9 +32,9 @@ ZIP_DEFLATED = 8
# Other ZIP compression methods not supported
# Here are some struct module formats for reading headers
structEndArchive
=
"<4s4H2
l
H"
# 9 items, end of archive, 22 bytes
structEndArchive
=
"<4s4H2
L
H"
# 9 items, end of archive, 22 bytes
stringEndArchive
=
"PK
\005\006
"
# magic number for end of archive record
structCentralDir
=
"<4s4B4HlLL5HL
l
"
# 19 items, central directory, 46 bytes
structCentralDir
=
"<4s4B4HlLL5HL
L
"
# 19 items, central directory, 46 bytes
stringCentralDir
=
"PK
\001\002
"
# magic number for central directory
structFileHeader
=
"<4s2B4HlLL2H"
# 12 items, file header record, 30 bytes
stringFileHeader
=
"PK
\003\004
"
# magic number for file header
...
...
Misc/NEWS
Dosyayı görüntüle @
1cc98af8
...
...
@@ -53,6 +53,9 @@ Core and builtins
Library
-------
- #1189216: Fix the zipfile module to work on archives with headers
past the 2**31 byte boundary.
- Issue #1336: fix a race condition in subprocess.Popen if the garbage
collector kicked in at the wrong time that would cause the process
to hang when the child wrote to stderr.
...
...
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