1. 29 Jun, 2002 7 commits
  2. 28 Jun, 2002 13 commits
    • Jeremy Hylton's avatar
      Track change of begin() to _begin(). · 566fe9ef
      Jeremy Hylton authored
      566fe9ef
    • Barry Warsaw's avatar
      Lots of new and updated tests to check for proper ascii header · b6a92139
      Barry Warsaw authored
      folding.  Note that some of the Japanese tests have changed, but I
      don't really know if they are correct or not. :(
      
      Someone with Japanese and RFC 2047 expertise, please take a look!
      b6a92139
    • Barry Warsaw's avatar
      _max_append(): When adding the string `s' to its own line, it should · ba2577b7
      Barry Warsaw authored
      be lstrip'd so that old continuation whitespace is replaced by that
      specified in Header's continuation_ws parameter.
      ba2577b7
    • Barry Warsaw's avatar
      Teach this class about "highest-level syntactic breaks" but only for · 76612508
      Barry Warsaw authored
      headers with no charset or 'us-ascii' charsets.  Actually this is only
      partially true: we know about semicolons (but not true parameters) and
      we know about whitespace (but not technically folding whitespace).
      Still it should be good enough for all practical purposes.
      
      Other changes include:
      
      __init__(): Add a continuation_ws argument, which defaults to a single
      space.  Set this to change the whitespace used for continuation lines
      when a header must be split.  Also, changed the way header line
      lengths are calculated, so that they take into account continuation_ws
      (when tabs-expanded) and any provided header_name parameter.  This
      should do much better on returning split headers for which the first
      and subsequent lines must fit into a specified width.
      
      guess_maxlinelen(): Removed.  I don't think we need this method as
      part of the public API.
      
      encode_chunks() -> _encode_chunks(): I don't think we need this one as
      part of the public API either.
      76612508
    • Barry Warsaw's avatar
      _split_header(): The code here was terminally broken because it didn't · 062749ac
      Barry Warsaw authored
      know anything about RFC 2047 encoded headers.  Fortunately we have a
      perfectly good header splitter in Header.encode().  So we just call
      that to give us a properly formatted and split header.
      Header.encode() didn't know about "highest-level syntactic breaks" but
      that's been fixed now too.
      062749ac
    • Jeremy Hylton's avatar
      Simplify HTTPSConnection constructor. · 7c75c99a
      Jeremy Hylton authored
      See discussion in SF bug 458463.
      7c75c99a
    • Jeremy Hylton's avatar
      Close SF patch 523944: importing modules with foreign newlines. · 13f99d70
      Jeremy Hylton authored
      Didn't use the patch, because universal newlines support made it easy.
      It might be worth fixing the actual problem in the 2.2 maintenance
      branch, in which case the patch is still needed.
      13f99d70
    • Fred Drake's avatar
      Added character data buffering to pyexpat parser objects. · 2a3d7db9
      Fred Drake authored
      Setting the buffer_text attribute to true causes the parser to collect
      character data, waiting as long as possible to report it to the Python
      callback.  This can save an enormous number of callbacks from C to
      Python, which can be a substantial performance improvement.
      
      buffer_text defaults to false.
      2a3d7db9
    • Jeremy Hylton's avatar
      Add Bob Kline of HTTP 100 fame. · 3e76d7f3
      Jeremy Hylton authored
      3e76d7f3
    • Jeremy Hylton's avatar
      Fixes for two separate HTTP/1.1 bugs: 100 responses and HTTPS connections. · be4fcf18
      Jeremy Hylton authored
      The HTTPResponse class now handles 100 continue responses, instead of
      choking on them.  It detects them internally in the _begin() method
      and ignores them.  Based on a patch by Bob Kline.
      
      This closes SF bugs 498149 and 551273.
      
      The FakeSocket class (for SSL) is now usable with HTTP/1.1
      connections.  The old version of the code could not work with
      persistent connections, because the makefile() implementation read
      until EOF before returning.  If the connection is persistent, the
      server sends a response and leaves the connection open.  A client that
      reads until EOF will block until the server gives up on the connection
      -- more than a minute in my test case.
      
      The problem was fixed by implementing a reasonable makefile().  It
      reads data only when it is needed by the layers above it.  It's
      implementation uses an internal buffer with a default size of 8192.
      
      Also, rename begin() method of HTTPResponse to _begin() because it
      should only be called by the HTTPConnection.
      be4fcf18
    • Fred Drake's avatar
      pyexpat code cleanup and minor refactorings: · 71b63ff3
      Fred Drake authored
      The handlers array on each parser now has the invariant that None will
      never be set as a handler; it will always be NULL or a Python-level
      value passed in for the specific handler.
      
      have_handler():  Return true if there is a Python handler for a
          particular event.
      
      get_handler_name():  Return a string object giving the name of a
          particular handler.  This caches the string object so it doesn't
          need to be created more than once.
      
      get_parse_result():  Helper to allow the Parse() and ParseFile()
          methods to share the same logic for determining the return value
          or exception state.
      
      PyUnknownEncodingHandler(), PyModule_AddIntConstant():
          Made these helpers static.  (The later is only defined for older
          versions of Python.)
      
      pyxml_UpdatePairedHandlers(), pyxml_SetStartElementHandler(),
      pyxml_SetEndElementHandler(), pyxml_SetStartNamespaceDeclHandler(),
      pyxml_SetEndNamespaceDeclHandler(), pyxml_SetStartCdataSection(),
      pyxml_SetEndCdataSection(), pyxml_SetStartDoctypeDeclHandler(),
      pyxml_SetEndDoctypeDeclHandler():
          Removed.  These are no longer needed with Expat 1.95.x.
      
      handler_info:
          Use the setter functions provided by Expat 1.95.x instead of the
          pyxml_Set*Handler() functions which have been removed.
      
      Minor code formatting changes for consistency.
      Trailing whitespace removed.
      71b63ff3
    • Neil Schemenauer's avatar
      Fix small bug. The count of objects in all generations younger then the · c9051640
      Neil Schemenauer authored
      collected one should be zeroed.
      c9051640
    • Mark Hammond's avatar
      0d3b2fe0
  3. 27 Jun, 2002 10 commits
  4. 26 Jun, 2002 10 commits