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
f15cde37
Kaydet (Commit)
f15cde37
authored
Mar 19, 2008
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve the error message when the CRCs don't match.
üst
e7abf20c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
gzip.py
Lib/gzip.py
+2
-1
No files found.
Lib/gzip.py
Dosyayı görüntüle @
f15cde37
...
...
@@ -316,7 +316,8 @@ class GzipFile:
crc32
=
read32
(
self
.
fileobj
)
isize
=
U32
(
read32
(
self
.
fileobj
))
# may exceed 2GB
if
U32
(
crc32
)
!=
U32
(
self
.
crc
):
raise
IOError
,
"CRC check failed"
raise
IOError
(
"CRC check failed
%
s !=
%
s"
%
(
hex
(
U32
(
crc32
)),
hex
(
U32
(
self
.
crc
))))
elif
isize
!=
LOWU32
(
self
.
size
):
raise
IOError
,
"Incorrect length of data produced"
...
...
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