Re: Optional Static Typing - Haskell?

2004-12-24 Thread Neal D. Becker
I've just started learning about Haskell. I suggest looking at this for an example. A good intro: http://www.haskell.org/tutorial -- http://mail.python.org/mailman/listinfo/python-list

float point properties access

2004-12-03 Thread Neal D. Becker
Is there a way in python to access properties of floats? I need something equiv to C DBL_EPSILON defined in . -- http://mail.python.org/mailman/listinfo/python-list

access to generator state

2004-12-02 Thread Neal D. Becker
I am converting optimization code from legacy C to python. Generators are a HUGE convenience, because the original code structures have the optimizer as the main code calling your function, while I want to invert these roles. I want to call the optimizer to perform just one step at a time. So, t