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 facundobatista, gvanrossum, jyasskin, mark.dickinson, ncoghlan, rhettinger
Date 2008-06-27.10:21:03
SpamBayes Score 0.011391548
Marked as misclassified No
Message-id <1214562064.53.0.488799725782.issue1682@psf.upfronthosting.co.za>
In-reply-to
Content
Trailing 'L's removed in r64557.

A couple more minor issues:

(1) fractions.gcd is exported but not documented.  I'll add some 
documentation for it, unless anyone feels that it shouldn't have been
exported in the first place.  If so, please speak up!

(2) The Fraction constructor is a little more lenient than it ought to 
be.  For example:

>>> Fraction('1.23', 1)
Fraction(123, 100)

I think this should really be a TypeError:  a second argument to the 
constructor should only be permitted when the first argument is an 
integer.  However, it seems fairly harmless, so I'm inclined to just 
leave this as it is and not mess with it.
History
Date User Action Args
2008-06-27 10:21:04mark.dickinsonsetspambayes_score: 0.0113915 -> 0.011391548
recipients: + mark.dickinson, gvanrossum, rhettinger, facundobatista, ncoghlan, jyasskin
2008-06-27 10:21:04mark.dickinsonsetspambayes_score: 0.0113915 -> 0.0113915
messageid: <1214562064.53.0.488799725782.issue1682@psf.upfronthosting.co.za>
2008-06-27 10:21:03mark.dickinsonlinkissue1682 messages
2008-06-27 10:21:03mark.dickinsoncreate