1. 03 Sep, 2010 1 commit
  2. 01 Sep, 2010 2 commits
  3. 29 Aug, 2010 1 commit
  4. 03 Aug, 2010 1 commit
  5. 25 Jun, 2010 1 commit
  6. 24 Jun, 2010 1 commit
  7. 21 May, 2010 1 commit
  8. 16 May, 2010 5 commits
  9. 12 May, 2010 1 commit
  10. 05 May, 2010 1 commit
  11. 27 Apr, 2010 1 commit
  12. 24 Apr, 2010 1 commit
    • Antoine Pitrou's avatar
      Merged revisions 80451-80452 via svnmerge from · d3f8ab8b
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r80451 | antoine.pitrou | 2010-04-24 21:57:01 +0200 (sam., 24 avril 2010) | 4 lines
      
        The do_handshake() method of SSL objects now adjusts the blocking mode of
        the SSL structure if necessary (as other methods already do).
      ........
        r80452 | antoine.pitrou | 2010-04-24 22:04:58 +0200 (sam., 24 avril 2010) | 4 lines
      
        Issue #5103: SSL handshake would ignore the socket timeout and block
        indefinitely if the other end didn't respond.
      ........
      d3f8ab8b
  13. 23 Apr, 2010 1 commit
    • Antoine Pitrou's avatar
      Merged revisions 80392 via svnmerge from · 2c4f98b3
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r80392 | antoine.pitrou | 2010-04-23 01:33:02 +0200 (ven., 23 avril 2010) | 9 lines
      
        Issue #8108: Fix the unwrap() method of SSL objects when the socket has
        a non-infinite timeout.  Also make that method friendlier with applications
        wanting to continue using the socket in clear-text mode, by disabling
        OpenSSL's internal readahead.  Thanks to Darryl Miles for guidance.
      
        Issue #8108: test_ftplib's non-blocking SSL server now has proper handling
        of SSL shutdowns.
      ........
      2c4f98b3
  14. 21 Apr, 2010 1 commit
    • Antoine Pitrou's avatar
      Merged revisions 80314-80315 via svnmerge from · fec12fff
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r80314 | antoine.pitrou | 2010-04-21 21:28:03 +0200 (mer., 21 avril 2010) | 5 lines
      
        Issue #8484: Load all ciphers and digest algorithms when initializing
        the _ssl extension, such that verification of some SSL certificates
        doesn't fail because of an "unknown algorithm".
      ........
        r80315 | antoine.pitrou | 2010-04-21 21:36:23 +0200 (mer., 21 avril 2010) | 3 lines
      
        Forgot to add the sample certificate (followup to r80314)
      ........
      fec12fff
  15. 17 Apr, 2010 1 commit
  16. 09 Apr, 2010 1 commit
  17. 05 Apr, 2010 1 commit
  18. 26 Mar, 2010 1 commit
  19. 02 Mar, 2010 1 commit
  20. 25 Nov, 2009 1 commit
  21. 28 Jun, 2009 1 commit
    • Benjamin Peterson's avatar
      Merged revisions... · 0289b158
      Benjamin Peterson authored
      Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines
      
        Fix nearly all compilation warnings under Apple gcc-4.0.  Tested with OPT="-g
        -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
        There's still a batch of non-prototype warnings in Xlib.h that I don't know how
        to fix.
      ........
        r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line
      
        don't mask encoding errors when decoding a string #6289
      ........
        r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line
      
        Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
      ........
        r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines
      
        #4490 Fix sample code run by "python -m xml.sax.xmlreader"
      ........
        r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines
      
        Fix issue 5230 by having pydoc's safeimport check to see if the import
        error was thrown from itself in order to decide if the module can't be
        found.  Thanks to Lucas Prado Melo for collaborating on the fix and tests.
      ........
        r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines
      
        #2016 Fix a crash in function call when the **kwargs dictionary is mutated
        during the function call setup.
      
        This even gives a slight speedup, probably because tuple allocation
        is faster than PyMem_NEW.
      ........
        r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line
      
        document is_declared_global()
      ........
        r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line
      
        link to extensive generator docs in the reference manual
      ........
        r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line
      
        stmt and setup can contain multiple statements, see #5896
      ........
        r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line
      
        Fixed a wrong apostrophe
      ........
        r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line
      
        Remove stray pychecker directive.
      ........
      0289b158
  22. 05 May, 2009 1 commit
  23. 28 Feb, 2009 1 commit
  24. 02 Feb, 2009 1 commit
  25. 26 Jan, 2009 1 commit
  26. 12 Aug, 2008 1 commit
  27. 07 Aug, 2008 1 commit
  28. 02 Jul, 2008 1 commit
  29. 11 Jun, 2008 1 commit
  30. 26 May, 2008 2 commits
  31. 28 Mar, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 61964-61979 via svnmerge from · ba4af493
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61964 | benjamin.peterson | 2008-03-27 01:25:33 +0100 (Thu, 27 Mar 2008) | 2 lines
      
        add commas for introductory clauses
      ........
        r61965 | christian.heimes | 2008-03-27 02:36:21 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Hopefully added _fileio module to the Windows build system
      ........
        r61966 | christian.heimes | 2008-03-27 02:38:47 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Revert commit accident
      ........
        r61967 | neal.norwitz | 2008-03-27 04:49:54 +0100 (Thu, 27 Mar 2008) | 3 lines
      
        Fix bytes so it works on 64-bit platforms.
        (Also remove some #if 0 code that is already handled in _getbytevalue.)
      ........
        r61968 | neal.norwitz | 2008-03-27 05:40:07 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Fix memory leaks
      ........
        r61969 | neal.norwitz | 2008-03-27 05:40:50 +0100 (Thu, 27 Mar 2008) | 3 lines
      
        Fix warnings about using char as an array subscript.  This is not portable
        since char is signed on some platforms and unsigned on others.
      ........
        r61970 | neal.norwitz | 2008-03-27 06:02:57 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Fix test_compiler after adding unicode_literals
      ........
        r61971 | neal.norwitz | 2008-03-27 06:03:11 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Fix compiler warnings
      ........
        r61972 | neal.norwitz | 2008-03-27 07:52:01 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Pluralss only need one s, not 2 (intss -> ints)
      ........
        r61973 | christian.heimes | 2008-03-27 10:02:33 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo files on the build bots
      ........
        r61974 | eric.smith | 2008-03-27 10:42:35 +0100 (Thu, 27 Mar 2008) | 3 lines
      
        Added test cases for single quoted strings, both forms of triple quotes,
         and some string concatenations.
        Removed unneeded __future__ print_function import.
      ........
        r61975 | christian.heimes | 2008-03-27 11:35:52 +0100 (Thu, 27 Mar 2008) | 1 line
      
        Build bots are working again - removing the hack
      ........
        r61976 | christian.heimes | 2008-03-27 12:46:37 +0100 (Thu, 27 Mar 2008) | 2 lines
      
        Fixed tokenize tests
        The tokenize module doesn't understand __future__.unicode_literals yet
      ........
        r61977 | georg.brandl | 2008-03-27 14:27:31 +0100 (Thu, 27 Mar 2008) | 2 lines
      
        #2248: return result of QUIT from quit().
      ........
        r61978 | georg.brandl | 2008-03-27 14:34:59 +0100 (Thu, 27 Mar 2008) | 2 lines
      
        The bug for which there was a test in outstanding_bugs.py was agreed not to be a bug.
      ........
        r61979 | amaury.forgeotdarc | 2008-03-28 00:23:54 +0100 (Fri, 28 Mar 2008) | 5 lines
      
        Issue2495: tokenize.untokenize did not insert space between two consecutive string literals:
        "" "" => """", which is invalid code.
      
        Will backport
      ........
      ba4af493
  32. 27 Jan, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 60350-60363 via svnmerge from · 412dc9c8
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60355 | neal.norwitz | 2008-01-27 18:10:14 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Whitespace cleanup
      ........
        r60356 | neal.norwitz | 2008-01-27 18:10:29 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Add assertion that we do not blow out newl
      ........
        r60357 | neal.norwitz | 2008-01-27 18:10:35 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Initialize variable to prevent warning on some platform/config.
      ........
        r60358 | neal.norwitz | 2008-01-27 18:10:43 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Update to newer version of ffi.  Fixes crashes and test failures of longdouble
      ........
        r60359 | neal.norwitz | 2008-01-27 18:10:50 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Add a tiny sleep and additional flush to force the file to really be synced.
      ........
        r60360 | neal.norwitz | 2008-01-27 18:10:58 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Retry connection in case it fails to reduce flakiness
      ........
        r60361 | neal.norwitz | 2008-01-27 18:11:11 +0100 (Sun, 27 Jan 2008) | 4 lines
      
        Catch socket errors that are often the cause of transient failures.
        Many of these exceptions are due to resource unavailable, so the
        existing code should be able to handle many more spurious errors.
      ........
        r60362 | neal.norwitz | 2008-01-27 18:12:15 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Reduce buffer size since we do not need 1k
      ........
        r60363 | neal.norwitz | 2008-01-27 18:13:07 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Print periodic "still working" messages since this suite is slow.
      ........
      412dc9c8
  33. 19 Dec, 2007 1 commit
  34. 15 Dec, 2007 1 commit
    • Christian Heimes's avatar
      Merged revisions 59488-59511 via svnmerge from · 0449f63f
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59489 | christian.heimes | 2007-12-14 03:33:57 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Silence a warning about an unsed variable in debug builds
      ........
        r59490 | christian.heimes | 2007-12-14 03:35:23 +0100 (Fri, 14 Dec 2007) | 2 lines
      
        Fixed bug #1620: New @spam.getter property syntax modifies the property in place.
        I added also the feature that a @prop.getter decorator does not overwrite the doc string of the property if it was given as an argument to property().
      ........
        r59491 | raymond.hettinger | 2007-12-14 03:49:47 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Cleaner method naming convention
      ........
        r59492 | christian.heimes | 2007-12-14 04:02:34 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Fixed a warning in _codecs_iso2022.c and some non C89 conform // comments.
      ........
        r59493 | christian.heimes | 2007-12-14 05:38:13 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Fixed warning in ssl module
      ........
        r59500 | raymond.hettinger | 2007-12-14 19:08:20 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Add line spacing for readability
      ........
        r59501 | raymond.hettinger | 2007-12-14 19:12:21 +0100 (Fri, 14 Dec 2007) | 3 lines
      
        Update method names for named tuples.
      ........
        r59503 | georg.brandl | 2007-12-14 20:03:36 +0100 (Fri, 14 Dec 2007) | 3 lines
      
        Add a section about nested listcomps to the tutorial.
        Thanks to Ian Bruntlett and Robert Lehmann.
      ........
        r59504 | raymond.hettinger | 2007-12-14 20:19:59 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Faster and simpler _replace() method
      ........
        r59505 | raymond.hettinger | 2007-12-14 22:51:50 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Add usage note
      ........
        r59507 | andrew.kuchling | 2007-12-14 23:41:18 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Remove warning about URL
      ........
        r59510 | andrew.kuchling | 2007-12-14 23:52:36 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Bump the version number, and make a few small edits
      ........
        r59511 | christian.heimes | 2007-12-15 00:42:36 +0100 (Sat, 15 Dec 2007) | 2 lines
      
        Fixed bug #1628
        The detection now works on Unix with Makefile, Makefile with VPATH and on Windows.
      ........
      0449f63f