1. 13 Dec, 2009 10 commits
    • Antoine Pitrou's avatar
      Blocked revisions 76791 via svnmerge · 2d1b0dbe
      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)
      ........
      2d1b0dbe
    • Benjamin Peterson's avatar
      update 3.x versions · a16ddc03
      Benjamin Peterson authored
      a16ddc03
    • Benjamin Peterson's avatar
      fix markup · 89b92a6c
      Benjamin Peterson authored
      89b92a6c
    • Benjamin Peterson's avatar
      Merged revisions 76785 via svnmerge from · 640b4766
      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
      ........
      640b4766
    • Lars Gustäbel's avatar
      Merged revisions 76780 via svnmerge from · 17296345
      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.
      ........
      17296345
    • Benjamin Peterson's avatar
      Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from · bde3ba94
      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
      ........
      bde3ba94
    • Benjamin Peterson's avatar
      regenerate Python-ast.c · b9035d45
      Benjamin Peterson authored
      b9035d45
    • Benjamin Peterson's avatar
      Merged revisions 76534,76538,76628,76701,76774 via svnmerge from · 21a3d41d
      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
      ........
      21a3d41d
    • Benjamin Peterson's avatar
      Blocked revisions 76602,76690-76691,76736-76737,76754 via svnmerge · 174b61a8
      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.
      ........
      174b61a8
    • Benjamin Peterson's avatar
      death to exec statement · 1104c062
      Benjamin Peterson authored
      1104c062
  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 3 commits
    • Mark Dickinson's avatar
      Issue #7435: Remove duplicate int/long tests, and other · cd7d76fc
      Mark Dickinson authored
      references to long in py3k.  Patch provided by flox.
      cd7d76fc
    • Benjamin Peterson's avatar
      Blocked revisions 76679 via svnmerge · 13681eb0
      Benjamin Peterson authored
      ........
        r76679 | benjamin.peterson | 2009-12-05 12:48:13 -0600 (Sat, 05 Dec 2009) | 1 line
      
        fix date
      ........
      13681eb0
    • Benjamin Peterson's avatar
      Blocked revisions 76672-76674,76676 via svnmerge · 7ca96640
      Benjamin Peterson authored
      ........
        r76672 | benjamin.peterson | 2009-12-05 11:45:40 -0600 (Sat, 05 Dec 2009) | 1 line
      
        regenerate pydoc_topics
      ........
        r76673 | benjamin.peterson | 2009-12-05 11:46:33 -0600 (Sat, 05 Dec 2009) | 2 lines
      
        move RPM spec for 2.7
      ........
        r76674 | benjamin.peterson | 2009-12-05 11:47:56 -0600 (Sat, 05 Dec 2009) | 1 line
      
        bump version to 2.7a1
      ........
        r76676 | benjamin.peterson | 2009-12-05 12:40:02 -0600 (Sat, 05 Dec 2009) | 1 line
      
        post release version bump
      ........
      7ca96640