You need to sign in or sign up before continuing.
  1. 19 May, 2012 1 commit
  2. 29 Apr, 2012 1 commit
  3. 23 Apr, 2012 1 commit
  4. 18 Oct, 2011 1 commit
  5. 05 Oct, 2011 1 commit
  6. 03 Aug, 2011 1 commit
  7. 02 Aug, 2011 1 commit
  8. 15 Mar, 2011 1 commit
  9. 25 Feb, 2011 1 commit
    • Georg Brandl's avatar
      Merged revisions... · 2774310c
      Georg Brandl authored
      Merged revisions 87627,87638,87739,87760,87771,87787,87984,87986,88108,88115,88144,88165,88329,88364-88365,88369-88370,88423-88424 via svnmerge from
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r87627 | georg.brandl | 2011-01-02 15:23:43 +0100 (So, 02 Jan 2011) | 1 line
      
        #1665333: add more docs for optparse.OptionGroup.
      ........
        r87638 | georg.brandl | 2011-01-02 20:07:51 +0100 (So, 02 Jan 2011) | 1 line
      
        Fix code indentation.
      ........
        r87739 | georg.brandl | 2011-01-04 18:27:13 +0100 (Di, 04 Jan 2011) | 1 line
      
        Fix exception catching.
      ........
        r87760 | georg.brandl | 2011-01-05 11:59:48 +0100 (Mi, 05 Jan 2011) | 1 line
      
        Fix duplicate end tag.
      ........
        r87771 | georg.brandl | 2011-01-05 22:47:47 +0100 (Mi, 05 Jan 2011) | 1 line
      
        On Py3k, -tt and -3 are no-op and unsupported respectively.
      ........
        r87787 | georg.brandl | 2011-01-06 10:15:45 +0100 (Do, 06 Jan 2011) | 1 line
      
        Remove doc for nonexisting parameter.
      ........
        r87984 | georg.brandl | 2011-01-13 08:24:40 +0100 (Do, 13 Jan 2011) | 1 line
      
        Add semicolon for consistency.
      ........
        r87986 | georg.brandl | 2011-01-13 08:31:18 +0100 (Do, 13 Jan 2011) | 1 line
      
        Fix the example output of count().
      ........
        r88108 | georg.brandl | 2011-01-19 09:42:03 +0100 (Mi, 19 Jan 2011) | 1 line
      
        Suppress trailing spaces in table paragraphs.
      ........
        r88115 | georg.brandl | 2011-01-19 21:05:49 +0100 (Mi, 19 Jan 2011) | 1 line
      
        #10944: add c_bool to types table.
      ........
        r88144 | georg.brandl | 2011-01-22 23:06:24 +0100 (Sa, 22 Jan 2011) | 1 line
      
        #10983: fix several bugs in the _tunnel implementation that seem to have missed while porting between branches.  A unittest is needed!
      ........
        r88165 | georg.brandl | 2011-01-24 20:53:18 +0100 (Mo, 24 Jan 2011) | 1 line
      
        Typo fix.
      ........
        r88329 | georg.brandl | 2011-02-03 08:08:25 +0100 (Do, 03 Feb 2011) | 1 line
      
        Punctuation typos.
      ........
        r88364 | georg.brandl | 2011-02-07 13:10:46 +0100 (Mo, 07 Feb 2011) | 1 line
      
        #11138: fix order of fill and align specifiers.
      ........
        r88365 | georg.brandl | 2011-02-07 13:13:58 +0100 (Mo, 07 Feb 2011) | 1 line
      
        #8691: document that right alignment is default for numbers.
      ........
        r88369 | georg.brandl | 2011-02-07 16:30:45 +0100 (Mo, 07 Feb 2011) | 1 line
      
        Consistent heading spacing, and fix two typos.
      ........
        r88370 | georg.brandl | 2011-02-07 16:44:27 +0100 (Mo, 07 Feb 2011) | 1 line
      
        Spelling fixes.
      ........
        r88423 | georg.brandl | 2011-02-15 13:41:17 +0100 (Di, 15 Feb 2011) | 1 line
      
        Apply logging SocketHandler doc update by Vinay.
      ........
        r88424 | georg.brandl | 2011-02-15 13:44:43 +0100 (Di, 15 Feb 2011) | 1 line
      
        Remove editing slip.
      ........
      2774310c
  10. 22 Jan, 2011 2 commits
  11. 24 Dec, 2010 1 commit
  12. 19 Dec, 2010 1 commit
  13. 18 Dec, 2010 2 commits
  14. 17 Dec, 2010 1 commit
  15. 14 Nov, 2010 1 commit
  16. 13 Nov, 2010 1 commit
  17. 22 Oct, 2010 1 commit
  18. 13 Oct, 2010 2 commits
  19. 06 Oct, 2010 1 commit
  20. 03 Oct, 2010 2 commits
  21. 02 Oct, 2010 2 commits
  22. 02 Aug, 2010 2 commits
  23. 24 Jul, 2010 1 commit
    • Victor Stinner's avatar
      #9032: XML-RPC client: Transport.request() retries on EPIPE error · 756f547b
      Victor Stinner authored
      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.
      756f547b
  24. 04 Jun, 2010 2 commits
  25. 28 Apr, 2010 2 commits
  26. 21 Mar, 2010 1 commit
  27. 03 Jan, 2010 1 commit
    • Gregory P. Smith's avatar
      Merged revisions 77263-77264 via svnmerge from · b4066374
      Gregory P. Smith authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77263 | gregory.p.smith | 2010-01-02 17:29:44 -0800 (Sat, 02 Jan 2010) | 4 lines
      
        Adds an optional source_address parameter to socket.create_connection().
      
        For use by issue3972.
      ........
        r77264 | gregory.p.smith | 2010-01-02 18:06:07 -0800 (Sat, 02 Jan 2010) | 5 lines
      
        issue3972: HTTPConnection and HTTPSConnection now support a
        source_address parameter.
      
        Also cleans up an annotation in the socket documentation.
      ........
      b4066374
  28. 20 Dec, 2009 2 commits
  29. 29 Sep, 2009 2 commits
  30. 04 Sep, 2009 1 commit