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, nirinA, rhettinger, stutzbach, terry.reedy
Date 2009-09-21.13:04:31
SpamBayes Score 0.00064005697
Marked as misclassified No
Message-id <1253538272.97.0.0466009187994.issue3366@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks!  The patch is against the trunk.  (It doesn't quite apply cleanly 
to py3k, but the changes needed to make it do so should be minimal.)

Hmm. Rereading my previous comment, I seem to have a blindness for 
negative signs:

    gamma(x) = -pi/sinpi(x)/x/gamma(x)

should have been

    gamma(-x) = -pi/sinpi(x)/x/gamma(x)

and

    (-256.0, 1/256.0] + [1/256.0, 256.0)

should have been

    (-256.0, -1/256.0] + [1/256.0, 256.0)
History
Date User Action Args
2009-09-21 13:04:33mark.dickinsonsetrecipients: + mark.dickinson, rhettinger, terry.reedy, stutzbach, nirinA
2009-09-21 13:04:32mark.dickinsonsetmessageid: <1253538272.97.0.0466009187994.issue3366@psf.upfronthosting.co.za>
2009-09-21 13:04:31mark.dickinsonlinkissue3366 messages
2009-09-21 13:04:31mark.dickinsoncreate