Misael Henriquez <misael.henriq...@merchantlink.com> added the comment:
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 */ ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9742> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com