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 christian.heimes, gregory.p.smith, mark.dickinson, vstinner
Date 2008-11-10.13:34:06
SpamBayes Score 6.21729e-09
Marked as misclassified No
Message-id <1226324062.3.0.918720526404.issue4258@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a minor update to the patch, that does some extra cleanup:

- don't include longintrepr.h in Objects/abstract.c or 
Objects/boolobject.c --- it's not needed.

- fix several places in longobject.c where int should have been size_t 
or Py_ssize_t

- remove some unnecessary forward declarations in longobject.c.

- fix PyLong_FromLong for small negative integers

At some point I'll try to separate the pure bugfixes (missing casts, int 
vs Py_ssize_t, etc.) from the 15-bit to 30-bit conversion.
History
Date User Action Args
2008-11-10 13:34:23mark.dickinsonsetrecipients: + mark.dickinson, gregory.p.smith, vstinner, christian.heimes
2008-11-10 13:34:22mark.dickinsonsetmessageid: <1226324062.3.0.918720526404.issue4258@psf.upfronthosting.co.za>
2008-11-10 13:34:21mark.dickinsonlinkissue4258 messages
2008-11-10 13:34:21mark.dickinsoncreate