This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients brett.cannon, christian.heimes
Date 2013-12-04.09:34:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386149645.66.0.0361978088367.issue19883@psf.upfronthosting.co.za>
In-reply-to
Content
MSVC complains about "conversion from 'Py_ssize_t' to 'long', possible loss of data" in zipimport.c. header_offset is a Py_ssize_t but fseek() only takes a long. On 64bit Windows Py_ssize_t is a 64bit data type but long is still a 32bit data type.

It's safe to assume that the header will be smaller than 2 GB for the next couple of years. :)
History
Date User Action Args
2013-12-04 09:34:05christian.heimessetrecipients: + christian.heimes, brett.cannon
2013-12-04 09:34:05christian.heimessetmessageid: <1386149645.66.0.0361978088367.issue19883@psf.upfronthosting.co.za>
2013-12-04 09:34:05christian.heimeslinkissue19883 messages
2013-12-04 09:34:05christian.heimescreate