Message113986
| Author |
pitrou |
| Recipients |
alexandre.vassalotti, pitrou |
| Date |
2010年08月15日.18:13:01 |
| SpamBayes Score |
3.967281e-06 |
| Marked as misclassified |
No |
| Message-id |
<1281895982.89.0.760453311109.issue9614@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
A number of legitimate warnings get emitted under a 64-bit Windows build (in many places, _pickle uses ints or longs instead of "Py_ssize_t" variable to store various lengths and sizes):
1>..\Modules\_pickle.c(284) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
1>..\Modules\_pickle.c(301) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
1>..\Modules\_pickle.c(461) : warning C4244: '+=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
1>..\Modules\_pickle.c(628) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'long', possible loss of data
1>..\Modules\_pickle.c(647) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data
1>..\Modules\_pickle.c(1320) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
1>..\Modules\_pickle.c(1558) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
1>..\Modules\_pickle.c(1806) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2010年08月15日 18:13:02 | pitrou | set | recipients:
+ pitrou, alexandre.vassalotti |
| 2010年08月15日 18:13:02 | pitrou | set | messageid: <1281895982.89.0.760453311109.issue9614@psf.upfronthosting.co.za> |
| 2010年08月15日 18:13:01 | pitrou | link | issue9614 messages |
| 2010年08月15日 18:13:01 | pitrou | create |
|