1. 13 Dec, 2009 15 commits
    • Benjamin Peterson's avatar
      Merged revisions 76807 via svnmerge from · 9273c8b7
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76807 | benjamin.peterson | 2009-12-13 13:27:02 -0600 (Sun, 13 Dec 2009) | 1 line
      
        remove unused variable
      ........
      9273c8b7
    • Benjamin Peterson's avatar
      Merged revisions 76805 via svnmerge from · c7bde998
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76805 | benjamin.peterson | 2009-12-13 13:19:07 -0600 (Sun, 13 Dec 2009) | 7 lines
      
        accept None as the same as having passed no argument in file types #7349
      
        This is for consistency with imitation file objects like StringIO and BytesIO.
      
        This commit also adds a few tests, where they were lacking for concerned
        methods.
      ........
      c7bde998
    • Benjamin Peterson's avatar
      Blocked revisions 76798-76799 via svnmerge · d174bf1b
      Benjamin Peterson authored
      ........
        r76798 | benjamin.peterson | 2009-12-13 11:29:16 -0600 (Sun, 13 Dec 2009) | 1 line
      
        make StringIO like other file objects in that readline(-1) has no effect #7348
      ........
        r76799 | benjamin.peterson | 2009-12-13 11:31:31 -0600 (Sun, 13 Dec 2009) | 1 line
      
        add NEWS note
      ........
      d174bf1b
    • Benjamin Peterson's avatar
      Blocked revisions 76738 via svnmerge · 428baa54
      Benjamin Peterson authored
      ........
        r76738 | ronald.oussoren | 2009-12-10 04:27:09 -0600 (Thu, 10 Dec 2009) | 6 lines
      
        Fix an issue with the detection of a non-existing SDK
        on OSX. Without this patch it wasn't possible after all
        to compile extensions on OSX 10.6 with the binary
        installer unless the user had installed the (non-default)
        10.4u SDK.
      ........
      428baa54
    • Benjamin Peterson's avatar
      Blocked revisions 76794 via svnmerge · 108691de
      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
      ........
      108691de
    • 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 3 commits