- 05 Eki, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 27 Eyl, 2004 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 29 Ock, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming
-
- 05 Ock, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
(Contributed by Dmitry Vasiliev.)
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 27 Nis, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 19 Şub, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 16 Ock, 2003 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
Strengthen slicing tests. Improved variable names.
-
Raymond Hettinger yazdı
Add backwards compatibility test.
-
Raymond Hettinger yazdı
Added random test from bisect to augment the finite precomputed checks.
-
Raymond Hettinger yazdı
-
- 30 Tem, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
imports of test modules now import from the test package. Other related oddities are also fixed (like DeprecationWarning filters that weren't specifying the full import part, etc.). Also did a general code cleanup to remove all "from test.test_support import *"'s. Other from...import *'s weren't changed.
-
- 29 Ara, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
Christmas present to myself: the bisect module didn't define what happened if the new element was already in the list. It so happens that it inserted the new element "to the right" of all equal elements. Since it wasn't defined, among other bad implications it was a mystery how to use bisect to determine whether an element was already in the list (I've seen code that *assumed* "to the right" without justification). Added new methods bisect_left and insort_left that insert "to the left" instead; made the old names bisect and insort aliases for the new names bisect_right and insort_right; beefed up docstrings to explain what these actually do; and added a std test for the bisect module.
-