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 mark.dickinson
Recipients mark.dickinson, serhiy.storchaka
Date 2012-09-20.21:02:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348174922.56.0.595049097612.issue15989@psf.upfronthosting.co.za>
In-reply-to
Content
In the Objects subdirectory (which is all I've looked at so far), I see issues in:

- fileobject.c (PyObject_AsFileDescriptor)

- structseq.c (PyLong_AsLong return value used as a Py_ssize_t;  probably safe, but it would be better to use PyLong_AsSsize_t).

- unicodeobject.c (one place where result assigned to something of type ssize_t, one where result assigned to something of type int).
History
Date User Action Args
2012-09-20 21:02:02mark.dickinsonsetrecipients: + mark.dickinson, serhiy.storchaka
2012-09-20 21:02:02mark.dickinsonsetmessageid: <1348174922.56.0.595049097612.issue15989@psf.upfronthosting.co.za>
2012-09-20 21:02:02mark.dickinsonlinkissue15989 messages
2012-09-20 21:02:01mark.dickinsoncreate