1. 09 Dec, 2010 1 commit
    • Hirokazu Yamamoto's avatar
      Merged revisions 85071-85072,85894,87132 via svnmerge from · ba466cd2
      Hirokazu Yamamoto authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r85071 | hirokazu.yamamoto | 2010-09-29 03:29:57 +0900 (水, 29 9 2010) | 1 line
      
        Now perl path with spaces can be used.
      ........
        r85072 | hirokazu.yamamoto | 2010-09-29 03:36:04 +0900 (水, 29 9 2010) | 1 line
      
        Updated PC/VC6 openssl build script. (for openssl-1.0.0a)
      ........
        r85894 | hirokazu.yamamoto | 2010-10-29 02:57:25 +0900 (金, 29 10 2010) | 1 line
      
        Updated readme.txt about OpenSSL.
      ........
        r87132 | hirokazu.yamamoto | 2010-12-08 23:47:07 +0900 (水, 08 12 2010) | 3 lines
      
        Mention NASM which is needed to build openssl-1.0.0a original source.
        (PC/VC6/readme.txt)
      ........
      ba466cd2
  2. 07 Dec, 2010 1 commit
  3. 06 Dec, 2010 3 commits
  4. 04 Dec, 2010 7 commits
  5. 03 Dec, 2010 3 commits
    • Éric Araujo's avatar
      Blocked revisions 86985 via svnmerge · 36a508fe
      Éric Araujo authored
      ........
        r86985 | eric.araujo | 2010-12-03 20:19:17 +0100 (ven., 03 déc. 2010) | 5 lines
      
        Fix incorrect use of gettext in argparse (#10497).
      
        Steven, the maintainer of argparse, agreed to have this committed
        without tests for now, since the fix is obvious.  See the bug log.
      ........
      36a508fe
    • Antoine Pitrou's avatar
      Merged revisions 86981,86984 via svnmerge from · 976157f9
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86981 | antoine.pitrou | 2010-12-03 19:41:39 +0100 (ven., 03 déc. 2010) | 5 lines
      
        Issue #10478: Reentrant calls inside buffered IO objects (for example by
        way of a signal handler) now raise a RuntimeError instead of freezing the
        current process.
      ........
        r86984 | antoine.pitrou | 2010-12-03 20:14:17 +0100 (ven., 03 déc. 2010) | 3 lines
      
        Add an "advanced topics" section to the io doc.
      ........
      976157f9
    • R. David Murray's avatar
      Blocked revisions 86952-86953 via svnmerge · a8183940
      R. David Murray authored
      ........
        r86952 | r.david.murray | 2010-12-02 23:06:39 -0500 (Thu, 02 Dec 2010) | 12 lines
      
        #1486713: Add a tolerant mode to HTMLParser.
      
        The motivation for adding this option is that the the functionality it
        provides used to be provided by sgmllib in Python2, and was used by,
        for example, BeautifulSoup.  Without this option, the Python3 version
        of BeautifulSoup and the many programs that use it are crippled.
      
        The original patch was by 'kxroberto'.  I modified it heavily but kept his
        heuristics and test.  I also added additional heuristics to fix #975556,
        #1046092, and part of #6191.  This patch should be completely backward
        compatible:  the behavior with the default strict=True is unchanged.
      ........
        r86953 | r.david.murray | 2010-12-02 23:26:18 -0500 (Thu, 02 Dec 2010) | 2 lines
      
        Add missing versionchanged, correct 'throw' wording to 'raise'.
      ........
      a8183940
  6. 02 Dec, 2010 3 commits
  7. 30 Nov, 2010 5 commits
  8. 29 Nov, 2010 3 commits
    • Senthil Kumaran's avatar
      Blocked revisions 86864 via svnmerge · 34cc2025
      Senthil Kumaran authored
      ........
        r86864 | senthil.kumaran | 2010-11-29 20:42:29 +0800 (Mon, 29 Nov 2010) | 3 lines
      
        Remove the comment used while testing.
      ........
      34cc2025
    • Senthil Kumaran's avatar
      Merged revisions 86861 via svnmerge from · 5170c816
      Senthil Kumaran authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86861 | senthil.kumaran | 2010-11-29 19:54:17 +0800 (Mon, 29 Nov 2010) | 5 lines
      
        Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.
        Handle multiple breakpoints at same line. Update docs/test.
        Patch by Xavier de Gaye.
      ........
      5170c816
    • Ezio Melotti's avatar
      Blocked revisions 86845,86855-86856 via svnmerge · a88d2776
      Ezio Melotti authored
      ........
        r86845 | ezio.melotti | 2010-11-28 06:18:54 +0200 (Sun, 28 Nov 2010) | 1 line
      
        Add callable() to the built-in functions table.
      ........
        r86855 | raymond.hettinger | 2010-11-29 03:38:25 +0200 (Mon, 29 Nov 2010) | 1 line
      
        Do not add an obsolete unittest name to Py3.2.
      ........
        r86856 | ezio.melotti | 2010-11-29 04:02:10 +0200 (Mon, 29 Nov 2010) | 1 line
      
        Use assertCountEqual instead of assertItemsEqual
      ........
      a88d2776
  9. 28 Nov, 2010 1 commit
  10. 27 Nov, 2010 5 commits
  11. 26 Nov, 2010 8 commits
    • Hirokazu Yamamoto's avatar
      Blocked revisions 86168,86211,86300 via svnmerge · d160a2ff
      Hirokazu Yamamoto authored
      ........
        r86168 | hirokazu.yamamoto | 2010-11-05 00:21:59 +0900 (金, 05 11 2010) | 1 line
      
        Updated PC/VS8.0. (mainly to follow r86137: use temporary dir in make_buildinfo.c)
      ........
        r86211 | hirokazu.yamamoto | 2010-11-06 02:24:13 +0900 (土, 06 11 2010) | 1 line
      
        Fixed socket_gethostname() on windows.
      ........
        r86300 | hirokazu.yamamoto | 2010-11-07 23:29:26 +0900 (日, 07 11 2010) | 1 line
      
        Issue #6317: Now winsound.PlaySound only accepts unicode with MvL's approval.
      ........
      d160a2ff
    • Georg Brandl's avatar
      Blocked revisions 86794,86797,86800 via svnmerge · 90d206ba
      Georg Brandl authored
      ........
        r86794 | georg.brandl | 2010-11-26 12:50:13 +0100 (Fr, 26 Nov 2010) | 1 line
      
        #10526: fix typo.
      ........
        r86797 | georg.brandl | 2010-11-26 13:05:27 +0100 (Fr, 26 Nov 2010) | 1 line
      
        Modernize code in effective().
      ........
        r86800 | georg.brandl | 2010-11-26 13:10:06 +0100 (Fr, 26 Nov 2010) | 1 line
      
        Typo fix.
      ........
      90d206ba
    • Georg Brandl's avatar
      Recorded merge of revisions 86795,86798-86799,86801 via svnmerge from · ae26cce9
      Georg Brandl authored
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r86795 | georg.brandl | 2010-11-26 12:55:48 +0100 (Fr, 26 Nov 2010) | 1 line
      
        Use PyLong_FromLong where appropriate.
      ........
        r86798 | georg.brandl | 2010-11-26 13:05:48 +0100 (Fr, 26 Nov 2010) | 1 line
      
        #10420: fix docs of bdb.effective().
      ........
        r86799 | georg.brandl | 2010-11-26 13:08:19 +0100 (Fr, 26 Nov 2010) | 1 line
      
        Remove parenthetical remark that is confusing now that the module is not named "__builtin__" anymore.
      ........
        r86801 | georg.brandl | 2010-11-26 13:12:14 +0100 (Fr, 26 Nov 2010) | 1 line
      
        Better example for os.system(): do not change the system time.
      ........
      ae26cce9
    • Stefan Krah's avatar
      Merged revisions 86808 via svnmerge from · 67733311
      Stefan Krah authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86808 | stefan.krah | 2010-11-26 17:16:47 +0100 (Fri, 26 Nov 2010) | 1 line
      
        Further indentation cleanup.
      ........
      67733311
    • Stefan Krah's avatar
      Merged revisions 86804 via svnmerge from · 40b61237
      Stefan Krah authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86804 | stefan.krah | 2010-11-26 13:58:05 +0100 (Fri, 26 Nov 2010) | 1 line
      
        Issue #10383: Fix two leaks.
      ........
      40b61237
    • Matthias Klose's avatar
      Merged revisions 85645 via svnmerge from · 55aa2f39
      Matthias Klose authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r85645 | matthias.klose | 2010-10-17 15:22:33 +0200 (Sun, 17 Oct 2010) | 2 lines
      
        - Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension.
      ........
      55aa2f39
    • Stefan Krah's avatar
      Merged revisions 86791 via svnmerge from · 5d744a88
      Stefan Krah authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86791 | stefan.krah | 2010-11-26 11:54:09 +0100 (Fri, 26 Nov 2010) | 1 line
      
        Indentation cleanup.
      ........
      5d744a88
    • Georg Brandl's avatar
      Merged revisions... · f65e25b6
      Georg Brandl authored
      Merged revisions 86134,86315-86316,86390,86424-86425,86428,86550,86561-86562,86564-86565,86705,86708,86713 via svnmerge from
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r86134 | georg.brandl | 2010-11-03 08:41:00 +0100 (Mi, 03 Nov 2010) | 1 line
      
        A newline in lineno output breaks pyframe output.
      ........
        r86315 | georg.brandl | 2010-11-08 12:05:18 +0100 (Mo, 08 Nov 2010) | 1 line
      
        Fix latex conversion glitch in property/feature descriptions.
      ........
        r86316 | georg.brandl | 2010-11-08 12:08:35 +0100 (Mo, 08 Nov 2010) | 1 line
      
        Fix typo.
      ........
        r86390 | georg.brandl | 2010-11-10 08:57:10 +0100 (Mi, 10 Nov 2010) | 1 line
      
        Fix typo.
      ........
        r86424 | georg.brandl | 2010-11-12 07:19:48 +0100 (Fr, 12 Nov 2010) | 1 line
      
        Build a PDF of the FAQs too.
      ........
        r86425 | georg.brandl | 2010-11-12 07:20:12 +0100 (Fr, 12 Nov 2010) | 1 line
      
        #10008: Fix duplicate index entry.
      ........
        r86428 | georg.brandl | 2010-11-12 09:09:26 +0100 (Fr, 12 Nov 2010) | 1 line
      
        Fix weird line block in table.
      ........
        r86550 | georg.brandl | 2010-11-20 11:24:34 +0100 (Sa, 20 Nov 2010) | 1 line
      
        Fix rst markup errors.
      ........
        r86561 | georg.brandl | 2010-11-20 12:47:10 +0100 (Sa, 20 Nov 2010) | 1 line
      
        #10460: Update indent.pro to match PEP 7 better.
      ........
        r86562 | georg.brandl | 2010-11-20 14:44:41 +0100 (Sa, 20 Nov 2010) | 1 line
      
        #10439: document PyCodec C APIs.
      ........
        r86564 | georg.brandl | 2010-11-20 15:08:53 +0100 (Sa, 20 Nov 2010) | 1 line
      
        #10460: an even better indent.pro.
      ........
        r86565 | georg.brandl | 2010-11-20 15:16:17 +0100 (Sa, 20 Nov 2010) | 1 line
      
        socket.gethostbyname(socket.gethostname()) can fail when host name resolution is not set up correctly; do not fail test_socket if this is the case.
      ........
        r86705 | georg.brandl | 2010-11-23 08:54:19 +0100 (Di, 23 Nov 2010) | 1 line
      
        #10468: document Unicode exception creation and access functions.
      ........
        r86708 | georg.brandl | 2010-11-23 09:37:54 +0100 (Di, 23 Nov 2010) | 2 lines
      
        #10511: clarification of what heaps are; suggested by Johannes Hoff.
      ........
        r86713 | georg.brandl | 2010-11-23 19:14:57 +0100 (Di, 23 Nov 2010) | 1 line
      
        assert.h is also included. Thanks to Savio Sena.
      ........
      f65e25b6