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
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to