1. 27 Oct, 2007 5 commits
  2. 26 Oct, 2007 9 commits
  3. 25 Oct, 2007 3 commits
  4. 24 Oct, 2007 7 commits
  5. 23 Oct, 2007 8 commits
  6. 22 Oct, 2007 6 commits
  7. 21 Oct, 2007 1 commit
  8. 20 Oct, 2007 1 commit
    • Brett Cannon's avatar
      Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to the · e453989f
      Brett Cannon authored
      beginning of a file through a file pointer is not reflected when reading from a
      file descriptor.  Using both fflush() and fpurge() does not solve it.  One must
      use lseek() directly on the file descriptor to get the desired effect.
      
      This might suggest that we standardize on either file pointers (FILE) or file
      descriptors (int) for all C code used.
      e453989f