1. 13 Dec, 2009 11 commits
    • Benjamin Peterson's avatar
      Blocked revisions 76794 via svnmerge · 7fde7e42
      Benjamin Peterson authored
      ........
        r76794 | benjamin.peterson | 2009-12-13 10:36:53 -0600 (Sun, 13 Dec 2009) | 2 lines
      
        fix the ignoring of __cmp__ method on metaclasses #7491
      ........
      7fde7e42
    • Antoine Pitrou's avatar
      Blocked revisions 76791 via svnmerge · 036eba65
      Antoine Pitrou authored
      ........
        r76791 | antoine.pitrou | 2009-12-13 17:18:14 +0100 (dim., 13 déc. 2009) | 5 lines
      
        Add NEWS entry as per RDM's suggestion (the bug was actually present
        in 2.7 alpha 1)
      ........
      036eba65
    • Benjamin Peterson's avatar
      update 3.x versions · ad224bda
      Benjamin Peterson authored
      ad224bda
    • Benjamin Peterson's avatar
      fix markup · 13087d92
      Benjamin Peterson authored
      13087d92
    • Benjamin Peterson's avatar
      Merged revisions 76785 via svnmerge from · d94dfe84
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76785 | benjamin.peterson | 2009-12-13 08:18:08 -0600 (Sun, 13 Dec 2009) | 1 line
      
        add 2.6.x point releases
      ........
      d94dfe84
    • Lars Gustäbel's avatar
      Merged revisions 76780 via svnmerge from · 365aff3a
      Lars Gustäbel authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76780 | lars.gustaebel | 2009-12-13 12:32:27 +0100 (Sun, 13 Dec 2009) | 21 lines
      
        Issue #7357: No longer suppress fatal extraction errors by
        default.
      
        TarFile's errorlevel argument controls how errors are
        handled that occur during extraction. There are three
        possible levels 0, 1 and 2. If errorlevel is set to 1 or 2
        fatal errors (e.g. a full filesystem) are raised as
        exceptions. If it is set to 0, which is the default value,
        extraction errors are suppressed, and error messages are
        written to the debug log instead. But, if the debug log is
        not activated, which is the default as well, all these
        errors go unnoticed.
      
        The original intention was to imitate GNU tar which tries
        to extract as many members as possible instead of stopping
        on the first error. It turns out that this is no good
        default behaviour for a tar library. This patch simply
        changes the default value for the errorlevel argument from
        0 to 1, so that fatal extraction errors are raised as
        EnvironmentError exceptions.
      ........
      365aff3a
    • Benjamin Peterson's avatar
      Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from · 8f326b23
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76052 | gregory.p.smith | 2009-11-01 20:02:38 -0600 (Sun, 01 Nov 2009) | 5 lines
      
        see issue1006238, this merges in the following patch to ease cross
        compiling the printf %zd check.
      
         http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.5-cross-printf.patch?rev=1.1&view=markup
      ........
        r76522 | barry.warsaw | 2009-11-25 12:38:32 -0600 (Wed, 25 Nov 2009) | 2 lines
      
        Add mktime_tz to __all__.  It's documented as being available in email.utils.
      ........
        r76591 | benjamin.peterson | 2009-11-29 16:26:26 -0600 (Sun, 29 Nov 2009) | 4 lines
      
        now that deepcopy can handle instance methods, this hack can be removed #7409
      
        Thanks Robert Collins
      ........
        r76689 | benjamin.peterson | 2009-12-06 11:37:48 -0600 (Sun, 06 Dec 2009) | 1 line
      
        rewrite translate_newlines for clarity
      ........
        r76697 | benjamin.peterson | 2009-12-06 15:24:30 -0600 (Sun, 06 Dec 2009) | 2 lines
      
        fix test_parser from tokenizer tweak
      ........
        r76733 | benjamin.peterson | 2009-12-09 21:37:59 -0600 (Wed, 09 Dec 2009) | 1 line
      
        substitute PyDict_Check() for PyObject_IsInstance
      ........
      8f326b23
    • Benjamin Peterson's avatar
      regenerate Python-ast.c · 0496c9ee
      Benjamin Peterson authored
      0496c9ee
    • Benjamin Peterson's avatar
      Merged revisions 76534,76538,76628,76701,76774 via svnmerge from · 97dd987a
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76534 | martin.v.loewis | 2009-11-26 02:42:05 -0600 (Thu, 26 Nov 2009) | 2 lines
      
        Fix typo.
      ........
        r76538 | georg.brandl | 2009-11-26 14:48:25 -0600 (Thu, 26 Nov 2009) | 1 line
      
        #7400: typo.
      ........
        r76628 | andrew.kuchling | 2009-12-02 08:27:11 -0600 (Wed, 02 Dec 2009) | 1 line
      
        Markup fixes
      ........
        r76701 | andrew.kuchling | 2009-12-07 20:37:05 -0600 (Mon, 07 Dec 2009) | 1 line
      
        Typo fix; grammar fix
      ........
        r76774 | benjamin.peterson | 2009-12-12 18:54:15 -0600 (Sat, 12 Dec 2009) | 1 line
      
        account for PyObject_IsInstance's new ability to fail
      ........
      97dd987a
    • Benjamin Peterson's avatar
      Blocked revisions 76602,76690-76691,76736-76737,76754 via svnmerge · ddf4b81e
      Benjamin Peterson authored
      ........
        r76602 | raymond.hettinger | 2009-11-30 15:13:52 -0600 (Mon, 30 Nov 2009) | 1 line
      
        Handle step values other than one.
      ........
        r76690 | vinay.sajip | 2009-12-06 11:57:11 -0600 (Sun, 06 Dec 2009) | 1 line
      
        logging: Added optional 'secure' parameter to SMTPHandler.
      ........
        r76691 | vinay.sajip | 2009-12-06 12:05:04 -0600 (Sun, 06 Dec 2009) | 1 line
      
        logging: Improved support for SMTP over TLS.
      ........
        r76736 | raymond.hettinger | 2009-12-10 00:00:33 -0600 (Thu, 10 Dec 2009) | 1 line
      
        Fix variants of deque.extend:  d.extend(d)   d+=d  d.extendleft(d)
      ........
        r76737 | raymond.hettinger | 2009-12-10 00:42:54 -0600 (Thu, 10 Dec 2009) | 1 line
      
        Add a reverse() method to collections.deque().
      ........
        r76754 | vinay.sajip | 2009-12-11 03:16:01 -0600 (Fri, 11 Dec 2009) | 1 line
      
        Issue #7470: logging: fix bug in Unicode encoding fallback.
      ........
      ddf4b81e
    • Benjamin Peterson's avatar
      death to exec statement · 45abfbcc
      Benjamin Peterson authored
      45abfbcc
  2. 12 Dec, 2009 2 commits
  3. 11 Dec, 2009 3 commits
  4. 10 Dec, 2009 8 commits
  5. 09 Dec, 2009 2 commits
  6. 08 Dec, 2009 6 commits
  7. 07 Dec, 2009 1 commit
  8. 06 Dec, 2009 5 commits
  9. 05 Dec, 2009 2 commits