1. 15 Dec, 1998 3 commits
  2. 14 Dec, 1998 2 commits
  3. 11 Dec, 1998 4 commits
  4. 10 Dec, 1998 13 commits
  5. 09 Dec, 1998 4 commits
  6. 08 Dec, 1998 8 commits
  7. 07 Dec, 1998 6 commits
    • Guido van Rossum's avatar
      Sjoerd writes: · f484a336
      Guido van Rossum authored
      When literal mode is entered it should exit automatically when the
      matching close tag of the last unclosed open tag is encountered.  This
      patch fixes this.
      f484a336
    • Guido van Rossum's avatar
      926f7b66
    • Fred Drake's avatar
      "singed" --> "signed" (3 places) · d83675f3
      Fred Drake authored
      Noticed by Andrew MacIntyre <andymac@bullseye.apana.org.au>.
      d83675f3
    • Guido van Rossum's avatar
      Py_Main() must be DL_EXPORT too. · 9c1201fe
      Guido van Rossum authored
      9c1201fe
    • Guido van Rossum's avatar
      Patch by Jeff Rush: · 5c3b384a
      Guido van Rossum authored
      In SimpleHTTPServer.py, the server specified in test() should
      be BaseHTTPServer.HTTPServer, in case the request handler should
      want to reference the two attributes added by
      BaseHTTPServer.server_bind:
      
              self.server_name = hostname
              self.server_port = port
      
      There was some Bobo CGI code that wanted access to those attributes.
      5c3b384a
    • Guido van Rossum's avatar
      Patch by Jeff Rush: · 9228cbd0
      Guido van Rossum authored
      In CGIHTTPServer.py, the list of acceptable formats is -split-
      on spaces but -joined- on commas, resulting in double commas
      in the joined text.  It appears harmless to my browser but
      ought to be fixed anyway.
      
          'A, B, C' -> 'A,', 'B,', 'C,' -> 'A,,B,,C'
      9228cbd0