1. 24 Jul, 2010 3 commits
    • Victor Stinner's avatar
      Backport of 83120 (#9032) · 8b0d84e3
      Victor Stinner authored
      XML-RPC client: Transport.request() retries on EPIPE error
      
      The EPIPE error occurs when the server closes the socket and the client sends a
      "big" XML-RPC request (I don't know exactly the size threshold).
      
      request() just have to ignore the error because single_request() closes the
      socket on error, and so the next call to single_request() will open a new
      socket.
      
      Remove also a comment in the HTTP client because it's now wrong: see r70643 and
      issue #5542.
      8b0d84e3
    • Victor Stinner's avatar
      Forward port r70643 (#5542) + part of r83120 (just remove the comment) · 2c6aee90
      Victor Stinner authored
      Remove special logic that closes HTTPConnection socket on EPIPE.
      
      If the socket is closed, the client has no chance to read the response
      from the server.  EPIPE means that it isn't possible to write more
      data from the socket, but not that it is impossible to read.
      2c6aee90
    • Victor Stinner's avatar
      Merged revisions 83116 via svnmerge from · 4c16d122
      Victor Stinner authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r83116 | victor.stinner | 2010-07-24 02:49:20 +0200 (sam., 24 juil. 2010) | 4 lines
      
        Issue #4629: getopt raises an error if an argument ends with = whereas getopt
        doesn't except a value (eg. --help= is rejected if getopt uses ['help='] long
        options).
      ........
      4c16d122
  2. 23 Jul, 2010 9 commits
  3. 22 Jul, 2010 1 commit
  4. 21 Jul, 2010 5 commits
  5. 20 Jul, 2010 1 commit
    • Alexander Belopolsky's avatar
      Blocked revisions 82997 via svnmerge · dcd60ca1
      Alexander Belopolsky authored
      ........
        r82997 | alexander.belopolsky | 2010-07-20 15:55:18 -0400 (Tue, 20 Jul 2010) | 3 lines
      
        Issue #9282: Fixed --listfuncs option of trace.py.  Thanks Eli
        Bendersky for the patch.
      ........
      dcd60ca1
  6. 19 Jul, 2010 5 commits
  7. 18 Jul, 2010 3 commits
  8. 17 Jul, 2010 5 commits
  9. 16 Jul, 2010 1 commit
  10. 14 Jul, 2010 7 commits