1. 19 Nov, 2000 2 commits
  2. 18 Nov, 2000 2 commits
  3. 17 Nov, 2000 5 commits
  4. 16 Nov, 2000 1 commit
  5. 14 Nov, 2000 5 commits
  6. 13 Nov, 2000 8 commits
  7. 11 Nov, 2000 1 commit
  8. 10 Nov, 2000 2 commits
  9. 09 Nov, 2000 2 commits
  10. 08 Nov, 2000 6 commits
  11. 07 Nov, 2000 4 commits
  12. 06 Nov, 2000 2 commits
    • Fred Drake's avatar
      Document the proper exception to be raised by I/O operations on closed · a776cea7
      Fred Drake authored
      files; error reported by Ng Pheng Siong <ngps@post1.com>.
      
      Make sure that various special object attributes are properly indexed.
      a776cea7
    • Barry Warsaw's avatar
      This fixes several bug reports concering memory bloating during large · 7fed2175
      Barry Warsaw authored
      file uploads.
      
      In response to SF bugs 110674 and 119806, and discussions on
      python-dev, we are removing the self.lines attribute from the
      FieldStorage class.  Specifically touched where methods __init__(),
      read_lines_to_eof(), and skip_lines().
      
      No one can remember why self.lines was added.  Technically, it's part
      of the public interface for the class, but it was never documented.
      It's possible clever or nosy code will break because of this, but it
      was decided to remove it and see who complains.
      
      This resolution also closes the second half of the cgi.py entry in PEP
      42.  The first half of that PEP concerns specifically binary file
      uploads, where there may be no end-of-line marker for a very long
      time.  This patch does not address that issue.
      7fed2175