1. 19 Feb, 2006 4 commits
  2. 18 Feb, 2006 15 commits
  3. 17 Feb, 2006 18 commits
  4. 16 Feb, 2006 3 commits
    • Tim Peters's avatar
      Removed pointless parens around `return` expressions; · 7c9f83ff
      Tim Peters authored
      deleted some curlies around one-line blocks.
      7c9f83ff
    • Tim Peters's avatar
      Trimmed trailing whitespace. · b5f52c35
      Tim Peters authored
      b5f52c35
    • Tim Peters's avatar
      new_mmap_object(), Windows flavor. · fd385e70
      Tim Peters authored
      On a box where sizeof(size_t) == 4, C doesn't define
      what happens when a size_t value is shifted right by
      32 bits, and this caused test_mmap to fail on Windows
      in a debug build.  So use different code to break
      the size apart depending on how large size_t actually
      is.
      
      This looks like an illusion, since lots of code in this
      module still appears to assume sizes can't be more
      than 32 bits (e.g., the internal _GetMapSize() still
      returns an int), but at least test_mmap passes again.
      fd385e70