- 18 Ock, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
exceptions when compared using <, <=, > or >=. NOTE: This is a tentative change: this means that cmp() involving complex numbers will raise an exception when the numbers differ, and that in turn means that e.g. dictionaries and certain other compounds (e.g. UserLists) containing complex numbers can't be compared either. So we'll have to decide whether this is acceptable. The alpha test cycle is a good time to keep an eye on this!
-
- 26 Eyl, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Add definitions of INT_MAX and LONG_MAX to pyport.h. Remove includes of limits.h and conditional definitions of INT_MAX and LONG_MAX elsewhere. This closes SourceForge patch #101659 and bug #115323.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
- 15 Agu, 2000 1 kayıt (commit)
-
-
http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470Tim Peters yazdı
This was a misleading bug -- the true "bug" was that hash(x) gave an error return when x is an infinity. Fixed that. Added new Py_IS_INFINITY macro to pyport.h. Rearranged code to reduce growing duplication in hashing of float and complex numbers, pushing Trent's earlier stab at that to a logical conclusion. Fixed exceedingly rare bug where hashing of floats could return -1 even if there wasn't an error (didn't waste time trying to construct a test case, it was simply obvious from the code that it *could* happen). Improved complex hash so that hash(complex(x, y)) doesn't systematically equal hash(complex(y, x)) anymore.
-
- 31 Tem, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
marked my*.h as obsolete
-
- 09 Tem, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 30 Haz, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 29 Haz, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
errors in some of the hash algorithms. For exmaple, in float_hash and complex_hash a certain part of the value is not included in the hash calculation. See Tim's, Guido's, and my discussion of this on python-dev in May under the title "fix float_hash and complex_hash for 64-bit *nix" (2) The hash algorithms that use pointers (e.g. func_hash, code_hash) are universally not correct on Win64 (they assume that sizeof(long) == sizeof(void*)) As well, this patch significantly cleans up the hash code. It adds the two function _Py_HashDouble and _PyHash_VoidPtr that the various hashing routine are changed to use. These help maintain the hash function invariant: (a==b) => (hash(a)==hash(b))) I have added Lib/test/test_hash.py and Lib/test/output/test_hash to test this for some cases.
-
- 03 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
For more comments, read the patches@python.org archives. For documentation read the comments in mymalloc.h and objimpl.h. (This is not exactly what Vladimir posted to the patches list; I've made a few changes, and Vladimir sent me a fix in private email for a problem that only occurs in debug mode. I'm also holding back on his change to main.c, which seems unnecessary to me.)
-
- 29 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PyArg_ParseTuple() format string arguments as possible.
-
- 20 Ock, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
compilation on NT Alpha. Mostly added casts etc.
-
- 25 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
non-zero things like 5j and complex(1,0) are considered to be zero/false. Tim Peters.
-
- 07 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 May, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Assume that errno usage is thread-safe -- most vendors do this by making in a macro that refers to a per-thread storage area.
-
- 02 May, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 09 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 01 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Add __members__ attribute.
-
- 14 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Surround various f.p. operations with PyFPE_{START,END}_PROTECT macros.
-
- 11 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 05 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 12 Eyl, 1996 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 11 Eyl, 1996 2 kayıt (commit)
-
-
Guido van Rossum yazdı
long, float. Raise exception instead of dumping core for remainder and divmod.
-
Guido van Rossum yazdı
-
- 19 Agu, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 21 Tem, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 May, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 25 Ock, 1996 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Jack Jansen yazdı
-
- 12 Ock, 1996 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-