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 casevh, mark.dickinson
Date 2009-12-20.10:20:08
SpamBayes Score 3.2325406e-05
Marked as misclassified No
Message-id <1261304410.57.0.703693049728.issue7528@psf.upfronthosting.co.za>
In-reply-to
Content
The longobject.diff patch looks fine, modulo some whitespace nits.  (Older 
C source files use width-8 tabs for indentation.)

Are you interested in adding documentation and tests (the latter in the 
test_capi module)?

One thing about the patch struck me as odd:  the use of nb_int means that 
PyLong_AsLongAndOverflow will happily accept floats, Decimal instances, 
etc.  Ideally, this would be nb_index instead, but I guess it has to stay 
nb_int for now, for consistency with PyLong_AsLong.  py3k also uses nb_int 
here and in various other PyLong_As*** functions;  I think these should be 
changed, but that's another issue.
History
Date User Action Args
2009-12-20 10:20:10mark.dickinsonsetrecipients: + mark.dickinson, casevh
2009-12-20 10:20:10mark.dickinsonsetmessageid: <1261304410.57.0.703693049728.issue7528@psf.upfronthosting.co.za>
2009-12-20 10:20:09mark.dickinsonlinkissue7528 messages
2009-12-20 10:20:08mark.dickinsoncreate