1. 11 Apr, 2006 1 commit
    • Tim Peters's avatar
      Try to repair more new buildbot failures in "x86 OpenBSD trunk", due · 322e92c9
      Tim Peters authored
      to that id() can now return a Python long on a 32-bit box that allocates
      addresses "with the sign bit set".
      
      test_set.py test_subclass_with_custom_hash():  it's never been portably
      legal for a __hash__() method to return id(self), but on 32-bit boxes
      that never caused a problem before it became possible for id() to
      return a Python long.  Changed __hash__ here to return a Python int
      regardless of platform.
      
      test_descr.py specials():
          vereq(hash(c1), id(c1))
      has never been a correct test -- just removed it (hash() is always
      a Python int; id() may be a Python long).
      322e92c9
  2. 10 Apr, 2006 20 commits
  3. 09 Apr, 2006 8 commits
  4. 08 Apr, 2006 3 commits
  5. 07 Apr, 2006 7 commits
  6. 06 Apr, 2006 1 commit