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 landry
Recipients landry, mark.dickinson, rpointel, vstinner
Date 2011-07-22.15:01:56
SpamBayes Score 0.00018900677
Marked as misclassified No
Message-id <1311346917.65.0.145678127976.issue12589@psf.upfronthosting.co.za>
In-reply-to
Content
$grep -r '#define Py_IS_INF' .
PC/pyconfig.h:#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))


>>> isinf(float('inf'))

Breakpoint 2, __isinf (d=1.0604798301039825e-314) at /usr/src/lib/libc/gen/isinf.c:30
30      in /usr/src/lib/libc/gen/isinf.c
(gdb) bt
#0  __isinf (d=1.0604798301039825e-314) at /usr/src/lib/libc/gen/isinf.c:30
#1  0x8fe528d8 in ffi_call_SYSV () from /usr/local/lib/libffi.so.0.0
History
Date User Action Args
2011-07-22 15:01:57landrysetrecipients: + landry, mark.dickinson, vstinner, rpointel
2011-07-22 15:01:57landrysetmessageid: <1311346917.65.0.145678127976.issue12589@psf.upfronthosting.co.za>
2011-07-22 15:01:57landrylinkissue12589 messages
2011-07-22 15:01:56landrycreate