1. 19 Sep, 2000 16 commits
  2. 18 Sep, 2000 17 commits
  3. 17 Sep, 2000 6 commits
  4. 16 Sep, 2000 1 commit
    • Tim Peters's avatar
      arraymodule: Fix SF bug 113960. · 077a11dd
      Tim Peters authored
          reverse() didn't work at all due to bad arg check.
          Fixed that.
          Added Brad Chapman to ACKS file, as the proud new owner of two
              implicitly copyrighted lines of Python source code <wink>.
          Repaired buffer_info's total lack of arg-checking.
          Replaced memmove by memcpy in reverse() guts, as memmove is
              often slower and the memory areas are guaranteed disjoint.
          Replaced poke-and-hope unchecked decl of tmp buffer size by
              assert-checked larger tmp buffer.
          Got rid of inconsistent spaces before open paren in docstrings.
          Added reverse() sanity tests to test_array.py.
      077a11dd