About 50 results
Open links in new tab
  1. Inconsistency producing constant for float "infinity" | Python

    Aug 11, 2006 · I'm investigating a puzzling problem involving an attempt to generate a constant containing an (IEEE 754) "infinity" value. (I understand that special float values are a "platform …

  2. Python 2.4 does not marshal infinity floating point properly under ...

    Nov 30, 2006 · Hi all, When using Python 2.4.x on a Win32 box, marshal.loads(marshal.dumps(1e66666)) returns 1.0 instead of infinity as it should and does under …

  3. pickle broken: can't handle NaN or Infinity under win32 | Python

    Jun 21, 2005 · I finally figured out why one of my apps sometimes fails under Win32 when it always works fine under Linux: Under Win32, the pickle module only works with a subset of floating point …

  4. pickle broken: can't handle NaN or Infinity under win32 | Python

    Jun 21, 2005 · Hi All-- Across platforms with a 754-conforming libm, the most portable way is via using atan2 (!): -3.1415926535897931 Never fails. Tim, you gave me...

  5. +/-infinity in Python? | Python | Coding Forums

    Nov 15, 2003 · Hi. Is there anything like +infinity and -infinity available in Python, and can it be used in comparisons together with int or float numbers? Regards Andreas

  6. Queues - Is Infinity all right? | Python | Coding Forums

    Oct 5, 2003 · The standard Python Queue module, allows to generate queues that have no size limit, by passing the size argument as

  7. Breaking infinite loop with key stroke | Python | Coding Forums

    Jul 26, 2022 · Hello, I am trying to make an infinite loop that left clicks until I press a certain key. I have tried what looked logical to me but none of the methods worked. Can someone point me in the right …

  8. Antwort: How to calculate definite integral with python | Python

    May 15, 2007 · Antwort: How to calculate definite integral with python Roland Puntaier May 15, 2007 R

  9. Exiting infinite loop with keypress in python - Coding Forums

    Jul 26, 2022 · Hello, I want my python script to perform left clicks until I tell it to stop with a key press. I have successfully created some infinite loops but I cannot get python to stop with a key press. I am …

  10. pickle and infinity | Python | Coding Forums

    Nov 29, 2006 · Hello, I´ve got this problem with pickle, it seems it doesn´t handle correctly infinite values (nor does Python return overflow/underflow error). What could I do about it? Example code: [...] …