Message140863
Python 3.2.1 (default, Jul 18 2011, 10:56:33)
[GCC 4.2.1 20070719 ] on openbsd4
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes
>>> import ctypes.util
>>> libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))
>>> isinf = libc.isinf
>>> isinf.argtypes = (ctypes.c_double,)
>>> isinf(0.0)
0
>>> isinf(float('inf'))
1 |
|
Date |
User |
Action |
Args |
2011-07-22 05:23:08 | landry | set | recipients:
+ landry, mark.dickinson, vstinner, rpointel |
2011-07-22 05:23:08 | landry | set | messageid: <1311312188.43.0.866742456845.issue12589@psf.upfronthosting.co.za> |
2011-07-22 05:23:07 | landry | link | issue12589 messages |
2011-07-22 05:23:07 | landry | create | |
|