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 pitrou
Recipients pitrou, rhettinger
Date 2010-08-15.17:33:34
SpamBayes Score 1.3720405e-05
Marked as misclassified No
Message-id <1281893617.3.0.762329491862.issue9612@psf.upfronthosting.co.za>
In-reply-to
Content
None of these warnings look critical (one affects the "search finger" optimization of pop(), one affects the result from __length_hint__ on set iterators, and the other the hash value of frozensets without any obviously bad consequences), but you might want to take a look at them anyway.

(for the record, a C "long" is 32-bit under 64-bit Windows, so a Py_ssize_t won't fit in it)

1>..\Objects\setobject.c(743) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'long', possible loss of data
1>..\Objects\setobject.c(772) : warning C4244: '*=' : conversion from 'Py_ssize_t' to 'long', possible loss of data
1>..\Objects\setobject.c(819) : warning C4244: 'function' : conversion from 'Py_ssize_t' to 'long', possible loss of data
History
Date User Action Args
2010-08-15 17:33:37pitrousetrecipients: + pitrou, rhettinger
2010-08-15 17:33:37pitrousetmessageid: <1281893617.3.0.762329491862.issue9612@psf.upfronthosting.co.za>
2010-08-15 17:33:35pitroulinkissue9612 messages
2010-08-15 17:33:34pitroucreate