- 15 Haz, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Make sure the start argument is not negative.
-
- 14 Haz, 2004 5 kayıt (commit)
-
-
Fred Drake yazdı
-
Raymond Hettinger yazdı
(Contributed by Andrew Gaul.)
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
-
Tim Peters yazdı
a long time ago for VC6.
-
- 13 Haz, 2004 11 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Beardsley. If the seconds are different, we still need to calculate the differences between milliseconds. Also, on a Gentoo Linux (2.6.5) dual Athlon MP box with glibc 2.3, time can go backwards. This probably happens when the process switches the CPU it's running on. Time can also go backwards when running NTP. If we detect a negative time delta (ie, time went backwards), return a delta of 0. This prevents an illegal array access elsewhere. I think it's safest to *not* update prev_timeofday in this case, so we return without updating. Backport candidate.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 12 Haz, 2004 6 kayıt (commit)
-
-
Raymond Hettinger yazdı
Maxheap version of heapq.smallest() is forthcoming.
-
Michael W. Hudson yazdı
-
Raymond Hettinger yazdı
an alternate algorithm when the number of selected items is small relative to the full iterable.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Change a XDECREF to DECREF (adding an assertion just to be sure).
-
- 11 Haz, 2004 7 kayıt (commit)
-
-
Fred Drake yazdı
This is basically the support for package data from Phillip Eby's setuptools package. I've changed it only to fit it into the core implementation rather than to live in subclasses, and added documentation.
-
Michael W. Hudson yazdı
[ 971323 ] make test_signal less annoying after some comments on IRC from a highly opinionated australian who wishes to remain anonymous.
-
Anthony Baxter yazdı
Ignore it, rather than breaking. Will backport. (and r1.1000 for Misc/NEWS!)
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
have a __module__. Test for this case. Bugfix candidate, will backport.
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
- 10 Haz, 2004 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
tests which nicely highly highlight weaknesses). * Initial value is now a large prime. * Pre-multiply by the set length to add one more basis of differentiation. * Work a bit harder inside the loop to scatter bits from sources that may have closely spaced hash values. All of this is necessary to make up for keep the hash function commutative. Fortunately, the hash value is cached so the call to frozenset_hash() will only occur once per set.
-
Raymond Hettinger yazdı
* Non-zero initial value so that hash(frozenset()) != hash(0). * Final permutation to differentiate nested sets. * Add logic to make sure that -1 is not a possible hash value.
-
Raymond Hettinger yazdı
Prevents a collision pattern that occurs with nested tuples. (Yitz Gale provided code that repeatably demonstrated the weakness.)
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 09 Haz, 2004 4 kayıt (commit)
-
-
Thomas Heller yazdı
-
Thomas Heller yazdı
-
Fred Drake yazdı
docs
-
Neal Norwitz yazdı
(reported by Thomas Heller). If have_unicode_filename is set, path looks like it will not be used, so there's no need to free it.
-
- 08 Haz, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-