Patch #1373643: The chunk module can now read chunks larger than

two gigabytes.
This commit is contained in:
Georg Brandl 2006-02-18 21:10:56 +00:00
parent 2d65b5542b
commit 7b4e7c24df
2 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class Chunk:
if len(self.chunkname) < 4: if len(self.chunkname) < 4:
raise EOFError raise EOFError
try: try:
self.chunksize = struct.unpack(strflag+'l', file.read(4))[0] self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
except struct.error: except struct.error:
raise EOFError raise EOFError
if inclheader: if inclheader:

View File

@ -363,6 +363,9 @@ Extension Modules
Library Library
------- -------
- Patch #1373643: The chunk module can now read chunks larger than
two gigabytes.
- Patch #1417555: SimpleHTTPServer now returns Last-Modified headers. - Patch #1417555: SimpleHTTPServer now returns Last-Modified headers.
- Bug #1430298: It is now possible to send a mail with an empty - Bug #1430298: It is now possible to send a mail with an empty