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
7b4e7c24
Kaydet (Commit)
7b4e7c24
authored
Şub 18, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1373643: The chunk module can now read chunks larger than
two gigabytes.
üst
2d65b554
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
chunk.py
Lib/chunk.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/chunk.py
Dosyayı görüntüle @
7b4e7c24
...
...
@@ -62,7 +62,7 @@ class Chunk:
if
len
(
self
.
chunkname
)
<
4
:
raise
EOFError
try
:
self
.
chunksize
=
struct
.
unpack
(
strflag
+
'
l
'
,
file
.
read
(
4
))[
0
]
self
.
chunksize
=
struct
.
unpack
(
strflag
+
'
L
'
,
file
.
read
(
4
))[
0
]
except
struct
.
error
:
raise
EOFError
if
inclheader
:
...
...
Misc/NEWS
Dosyayı görüntüle @
7b4e7c24
...
...
@@ -363,6 +363,9 @@ Extension Modules
Library
-------
- Patch #1373643: The chunk module can now read chunks larger than
two gigabytes.
- Patch #1417555: SimpleHTTPServer now returns Last-Modified headers.
- Bug #1430298: It is now possible to send a mail with an empty
...
...
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