Message205209
| 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:05 | christian.heimes | set | recipients:
+ christian.heimes, brett.cannon |
| 2013-12-04 09:34:05 | christian.heimes | set | messageid: <1386149645.66.0.0361978088367.issue19883@psf.upfronthosting.co.za> |
| 2013-12-04 09:34:05 | christian.heimes | link | issue19883 messages |
| 2013-12-04 09:34:05 | christian.heimes | create | |
|