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 mhenriq
Recipients mark.dickinson, mhenriq
Date 2010-09-02.19:55:56
SpamBayes Score 0.00010518376
Marked as misclassified No
Message-id <1283457357.7.0.295520703276.issue9742@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for your attention to this issue.  It sounds like you're onto something regarding the stand-in function not getting exported.  I'm not sure what to check next, though.

From pyconfig.h:

/* Define to 1 if you have the `round' function. */
/* #undef HAVE_ROUND */

From Python/pymath.c:

#ifndef HAVE_ROUND
double
round(double x)
{
    double absx, y;
    absx = fabs(x);
    y = floor(absx);
    if (absx - y >= 0.5)
    y += 1.0;
    return copysign(y, x);
}
#endif /* HAVE_ROUND */
History
Date User Action Args
2010-09-02 19:55:58mhenriqsetrecipients: + mhenriq, mark.dickinson
2010-09-02 19:55:57mhenriqsetmessageid: <1283457357.7.0.295520703276.issue9742@psf.upfronthosting.co.za>
2010-09-02 19:55:56mhenriqlinkissue9742 messages
2010-09-02 19:55:56mhenriqcreate