1. 15 May, 1998 8 kayıt (commit)
  2. 14 May, 1998 18 kayıt (commit)
  3. 13 May, 1998 5 kayıt (commit)
    • Guido van Rossum's avatar
      4180cf16
    • Jeremy Hylton's avatar
      Fix bug reported by Harri Pasanen: gzip + cPickle doesn't work. The · ee918cb4
      Jeremy Hylton yazdı
      problem was a couple of bugs in the readline implementation.
      
      1. Include the '\n' in the string returned by readline
      2. Bug calculating new buffer size in _unread
      
      Also remove unncessary import of StringIO
      ee918cb4
    • Guido van Rossum's avatar
      Tim's quicksort on May 13. · ed7adcff
      Guido van Rossum yazdı
      ed7adcff
    • Guido van Rossum's avatar
      Tim's quicksort on May 10. · b7057640
      Guido van Rossum yazdı
      b7057640
    • Guido van Rossum's avatar
      From: conrad@cgl.ucsf.edu (Conrad Huang %CGL) · 01fc65d9
      Guido van Rossum yazdı
      To: python-list@cwi.nl
      Date: 13 May 98 18:33:11 GMT
      
      I think I found a bug in CGIHTTPServer.py.  (Does anyone care? :-)
      I was trying to use it as the web server for uploading files.
      Python CGI scripts (using the CGI module) that worked for other
      servers (e.g., Netscape Enterprise server) hang when run from
      CGIHTTPServer.  The problem is that the content type parameters,
      in particular the boundary parameter, were not passed through to
      the CGI scripts, thus making the MIME parsing code choke.
      
      My simple-minded fix is:
      
      	% diff CGIHTTPServer.py /usr/local/lib/python1.5/CGIHTTPServer.py
      	137,140c136
      	<           if self.headers.typeheader is None:
      	<               env['CONTENT_TYPE'] = self.headers.type
      	<           else:
      	<               env['CONTENT_TYPE'] = self.headers.typeheader
      	---
      	>           env['CONTENT_TYPE'] = self.headers.type
      
      Conrad
      01fc65d9
  4. 12 May, 1998 9 kayıt (commit)