1. 17 Nov, 2001 6 commits
  2. 16 Nov, 2001 9 commits
  3. 15 Nov, 2001 14 commits
  4. 14 Nov, 2001 8 commits
  5. 13 Nov, 2001 3 commits
    • Tim Peters's avatar
      Removed print that executes only on Unix boxes; that made it impossible · 00cafa0f
      Tim Peters authored
      to have single "expected output" file.
      00cafa0f
    • Tim Peters's avatar
      CVS patch #477161: New "access" keyword for mmap, from Jay T Miller. · 5ebfd36a
      Tim Peters authored
      This gives mmap() on Windows the ability to create read-only, write-
      through and copy-on-write mmaps.  A new keyword argument is introduced
      because the mmap() signatures diverged between Windows and Unix, so
      while they (now) both support this functionality, there wasn't a way to
      spell it in a common way without introducing a new spelling gimmick.
      The old spellings are still accepted, so there isn't a backward-
      compatibility issue here.
      5ebfd36a
    • Barry Warsaw's avatar
      PyOS_getsig(), PyOS_setsig(): The minimal amount of work to avoid the · afeb2a4d
      Barry Warsaw authored
      uninitialized memory reads reported in bug #478001.
      
      Note that this doesn't address the following larger issues:
      
      - Error conditions are not documented for PyOS_*sig() in the C API.
      
      - Nothing that actually calls PyOS_*sig() in the core interpreter and
        extension modules actually /checks/ the return value of the call.
      
      Fixing those is left as an exercise for a later day.
      afeb2a4d