1. 05 Eki, 2005 1 kayıt (commit)
  2. 27 Eyl, 2004 2 kayıt (commit)
  3. 29 Ock, 2004 1 kayıt (commit)
  4. 05 Ock, 2004 1 kayıt (commit)
  5. 01 May, 2003 1 kayıt (commit)
  6. 27 Nis, 2003 1 kayıt (commit)
  7. 19 Şub, 2003 1 kayıt (commit)
  8. 16 Ock, 2003 4 kayıt (commit)
  9. 30 Tem, 2002 1 kayıt (commit)
    • Barry Warsaw's avatar
      Complete the absolute import patch for the test suite. All relative · 408b6d34
      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.
      408b6d34
  10. 29 Ara, 2000 1 kayıt (commit)
    • Tim Peters's avatar
      Fred, THIS NEEDS DOCS! The function docstrings tell the tale. · 36cdad12
      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.
      36cdad12