[Haskell-cafe] Bugs in Hugs

wren ng thornton wren at freegeek.org
Wed Jan 28 16:45:29 EST 2009


In testing some of my packages against Hugs, I've uncovered bugs[1]. 
Unfortunately the bug tracker at:

     http://hackage.haskell.org/trac/hugs/newticket?type=defect

doesn't seem to allow normal users to submit tickets. Does anyone know 
how to submit bug reports to Hugs these days?


[1] Namely, the Prelude.isNaN and Prelude.isInfinite functions don't work:

Hugs> (0/0::Float)
nan
Hugs> isNaN (0/0::Float)
False

Hugs> (0/0::Double)
nan
Hugs> isNaN (0/0::Double)
False

Hugs> (1/0::Float)
inf
Hugs> isInfinite (1/0::Float)
False

Hugs> (1/0::Double)
inf
Hugs> isInfinite (1/0::Double)
False

-- 
Live well,
~wren


More information about the Haskell-Cafe mailing list