1. 13 Agu, 2009 37 kayıt (commit)
    • Georg Brandl's avatar
      Recorded merge of revisions 74057 via svnmerge from · a85ee5cf
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      (Only selected revisions.)
      
      ................
        r74057 | alexandre.vassalotti | 2009-07-17 12:42:05 +0200 (Fr, 17 Jul 2009) | 54 lines
      
        Merged revisions 73930-73932,73937-73939,73945,73951,73954,73962-73963,73970 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73930 | amaury.forgeotdarc | 2009-07-10 12:47:42 -0400 (Fri, 10 Jul 2009) | 2 lines
      
          #6447: typo in subprocess docstring
        ........
          r73937 | georg.brandl | 2009-07-11 06:12:36 -0400 (Sat, 11 Jul 2009) | 1 line
      
          Fix style.
        ........
          r73938 | georg.brandl | 2009-07-11 06:14:54 -0400 (Sat, 11 Jul 2009) | 1 line
      
          #6446: fix import_spam() function to use correct error and reference handling.
        ........
          r73939 | georg.brandl | 2009-07-11 06:18:10 -0400 (Sat, 11 Jul 2009) | 1 line
      
          #6448: clarify docs for find_module().
        ........
          r73945 | georg.brandl | 2009-07-11 06:51:31 -0400 (Sat, 11 Jul 2009) | 1 line
      
          #6456: clarify the meaning of constants used as arguments to nl_langinfo().
        ........
          r73951 | georg.brandl | 2009-07-11 10:23:38 -0400 (Sat, 11 Jul 2009) | 2 lines
      
          array.array is actually a class.
      ................
      a85ee5cf
    • Georg Brandl's avatar
      Merged revisions 74403 via svnmerge from · ac73c5fe
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74403 | georg.brandl | 2009-08-13 13:55:03 +0200 (Do, 13 Aug 2009) | 1 line
      
        Fix duplicate sentence.
      ........
      ac73c5fe
    • Georg Brandl's avatar
      Merged revisions 74405 via svnmerge from · d1ea9dc9
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74405 | georg.brandl | 2009-08-13 14:06:43 +0200 (Do, 13 Aug 2009) | 9 lines
      
        Merged revisions 74404 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74404 | georg.brandl | 2009-08-13 14:05:52 +0200 (Do, 13 Aug 2009) | 1 line
      
          Use locale.format_string() for more than one specifier.
        ........
      ................
      d1ea9dc9
    • Georg Brandl's avatar
      Merged revisions 74062 via svnmerge from · bcc484e6
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74062 | alexandre.vassalotti | 2009-07-17 13:43:26 +0200 (Fr, 17 Jul 2009) | 37 lines
      
        Merged revisions 73665,73693,73704-73705,73707,73712-73713,73824 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73665 | alexandre.vassalotti | 2009-06-28 21:01:51 -0400 (Sun, 28 Jun 2009) | 2 lines
      
          Update docstrings for sys.getdlopenflags() and sys.setdlopenflags().
        ........
          r73693 | jesse.noller | 2009-06-29 14:20:34 -0400 (Mon, 29 Jun 2009) | 1 line
      
          Bug 5906: add a documentation note for unix daemons vs. multiprocessing daemons
        ........
          r73704 | georg.brandl | 2009-06-30 12:15:43 -0400 (Tue, 30 Jun 2009) | 1 line
      
          #6376: fix copy-n-paste oversight.
        ........
          r73705 | georg.brandl | 2009-06-30 12:17:28 -0400 (Tue, 30 Jun 2009) | 1 line
      
          #6374: add a bit of explanation about shell=True on Windows.
        ........
          r73707 | georg.brandl | 2009-06-30 12:35:11 -0400 (Tue, 30 Jun 2009) | 1 line
      
          #6371: fix link targets.
        ........
          r73712 | ezio.melotti | 2009-06-30 18:51:06 -0400 (Tue, 30 Jun 2009) | 1 line
      
          Fixed defaultTestCase -> defaultTestResult
        ........
          r73713 | ezio.melotti | 2009-06-30 18:56:16 -0400 (Tue, 30 Jun 2009) | 1 line
      
          Fixed a backslash that was not supposed to be there
        ........
          r73824 | ezio.melotti | 2009-07-03 21:18:08 -0400 (Fri, 03 Jul 2009) | 1 line
      
          #6398 typo: versio. -> version.
        ........
      ................
      bcc484e6
    • Georg Brandl's avatar
      Blocked revisions 74132-74133,74151,74156 via svnmerge · 243d02f6
      Georg Brandl yazdı
      ................
        r74132 | alexandre.vassalotti | 2009-07-21 06:30:03 +0200 (Di, 21 Jul 2009) | 45 lines
      
        Merged revisions 72487-72488,72879 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
      
          PyCode_NewEmpty:
          Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
          are trying to build an empty code object, usually to put it in a dummy frame
          object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
          just the filename, function name, and first line number, instead of also
          requiring lots of code internals.
        ........
          r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
      
          Issue 5954, PyFrame_GetLineNumber:
          Most uses of PyCode_Addr2Line
          (http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
          the line number of a specified frame, but there's no way to do that directly.
          Forcing people to go through the code object makes them know more about the
          guts of the interpreter than they should need.
      
          The remaining uses of PyCode_Addr2Line seem to be getting the line from a
          traceback (for example,
          http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
          which is replaced by the tb_lineno field.  So we may be able to deprecate
          PyCode_Addr2Line entirely for external use.
        ........
          r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
      
          Issue #6042:
          lnotab-based tracing is very complicated and isn't documented very well.  There
          were at least 3 comment blocks purporting to document co_lnotab, and none did a
          very good job. This patch unifies them into Objects/lnotab_notes.txt which
          tries to completely capture the current state of affairs.
      
          I also discovered that we've attached 2 layers of patches to the basic tracing
          scheme. The first layer avoids jumping to instructions that don't start a line,
          to avoid problems in if statements and while loops.  The second layer
          discovered that jumps backward do need to trace at instructions that don't
          start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
          added a special case for backward jumps within the same line. I replaced these
          patches by just treating forward and backward jumps differently.
        ........
      ................
        r74133 | alexandre.vassalotti | 2009-07-21 07:23:51 +0200 (Di, 21 Jul 2009) | 9 lines
      
        Merged revisions 73750 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73750 | benjamin.peterson | 2009-07-01 19:45:19 -0400 (Wed, 01 Jul 2009) | 1 line
      
          small optimization: avoid popping the current block until we have to
        ........
      ................
        r74151 | benjamin.peterson | 2009-07-22 01:18:55 +0200 (Mi, 22 Jul 2009) | 9 lines
      
        Merged revisions 74150 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74150 | benjamin.peterson | 2009-07-21 18:13:14 -0500 (Tue, 21 Jul 2009) | 1 line
      
          install unittest as a package
        ........
      ................
        r74156 | alexandre.vassalotti | 2009-07-22 04:32:34 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Issue #6360: Simplify string decoding in xmlrpc.client.
      ................
      243d02f6
    • Georg Brandl's avatar
      Merged revisions 74126,74130-74131,74149,74155,74157,74180-74183,74398 via svnmerge from · 194da4a7
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74126 | alexandre.vassalotti | 2009-07-21 02:39:03 +0200 (Di, 21 Jul 2009) | 14 lines
      
        Merged revisions 73871 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73871 | alexandre.vassalotti | 2009-07-06 22:17:30 -0400 (Mon, 06 Jul 2009) | 7 lines
      
          Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun.
      
          Without this change, test_unicode.UnicodeTest.test_codecs_utf7 crashes in
          debug mode. What happens is the unicode string u'\U000abcde' with a length
          of 1 encodes to the string '+2m/c3g-' of length 8. Since only 5 bytes is
          reserved in the buffer, a buffer overrun occurs.
        ........
      ................
        r74130 | alexandre.vassalotti | 2009-07-21 02:57:50 +0200 (Di, 21 Jul 2009) | 2 lines
      
        Add ignore rule for the Doc/tools/jinga2/ directory.
      ................
        r74131 | alexandre.vassalotti | 2009-07-21 04:51:58 +0200 (Di, 21 Jul 2009) | 13 lines
      
        Merged revisions 73683,73786 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73683 | georg.brandl | 2009-06-29 10:44:49 -0400 (Mon, 29 Jun 2009) | 1 line
      
          Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython sprint.
        ........
          r73786 | benjamin.peterson | 2009-07-02 18:56:16 -0400 (Thu, 02 Jul 2009) | 1 line
      
          condense with assertRaises
        ........
      ................
        r74149 | ezio.melotti | 2009-07-21 22:37:52 +0200 (Di, 21 Jul 2009) | 9 lines
      
        Merged revisions 74148 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74148 | ezio.melotti | 2009-07-21 23:18:27 +0300 (Tue, 21 Jul 2009) | 1 line
      
          #6536 fixed typo
        ........
      ................
        r74155 | alexandre.vassalotti | 2009-07-22 04:24:49 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Issue #6242: Fix deallocator of io.StringIO and io.BytesIO.
      ................
        r74157 | alexandre.vassalotti | 2009-07-22 05:07:33 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Issue #6241: Better type checking for the arguments of io.StringIO.
      ................
        r74180 | ezio.melotti | 2009-07-22 23:17:14 +0200 (Mi, 22 Jul 2009) | 9 lines
      
        Merged revisions 74179 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74179 | ezio.melotti | 2009-07-23 00:08:49 +0300 (Thu, 23 Jul 2009) | 1 line
      
          #6423 has_key -> in
        ........
      ................
        r74181 | alexandre.vassalotti | 2009-07-22 23:27:53 +0200 (Mi, 22 Jul 2009) | 6 lines
      
        Clean up test_curses.
      
        By using __stdout__ directly, test_curses caused regrtest.py
        to duplicate the output of some test results.
      ................
        r74182 | alexandre.vassalotti | 2009-07-22 23:29:01 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Use assertGreater instead of assertTrue(x > y).
      ................
        r74183 | alexandre.vassalotti | 2009-07-23 01:27:17 +0200 (Do, 23 Jul 2009) | 4 lines
      
        Specialize assertTrue checks when possible.
      
        We should get slightly more helpful failure messages with this change.
      ................
        r74398 | georg.brandl | 2009-08-13 11:16:39 +0200 (Do, 13 Aug 2009) | 1 line
      
        #6694: fix old function names.
      ................
      194da4a7
    • Georg Brandl's avatar
      Blocked revisions 74059,74066,74090,74096,74106,74110,74124 via svnmerge · 18cd09d7
      Georg Brandl yazdı
      ................
        r74059 | alexandre.vassalotti | 2009-07-17 13:07:44 +0200 (Fr, 17 Jul 2009) | 9 lines
      
        Recorded merge of revisions 73841 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73841 | ezio.melotti | 2009-07-04 10:58:27 -0400 (Sat, 04 Jul 2009) | 1 line
      
          if zlib -> skipUnless(zlib) and minor cleanups
        ........
      ................
        r74066 | benjamin.peterson | 2009-07-17 21:11:02 +0200 (Fr, 17 Jul 2009) | 1 line
      
        update ast version
      ................
        r74090 | senthil.kumaran | 2009-07-19 04:44:19 +0200 (So, 19 Jul 2009) | 4 lines
      
        Fix for issue5102, timeout value propages between redirects, proxy, digest and
        auth handlers. Fixed tests to reflect the same.
      ................
        r74096 | benjamin.peterson | 2009-07-19 23:01:52 +0200 (So, 19 Jul 2009) | 9 lines
      
        Merged revisions 74095 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74095 | benjamin.peterson | 2009-07-19 15:18:21 -0500 (Sun, 19 Jul 2009) | 1 line
      
          split unittest.py into a package
        ........
      ................
        r74106 | brett.cannon | 2009-07-20 03:05:40 +0200 (Mo, 20 Jul 2009) | 2 lines
      
        Remove custom test-skipping code in importlib tests for unittest code.
      ................
        r74110 | brett.cannon | 2009-07-20 06:23:48 +0200 (Mo, 20 Jul 2009) | 5 lines
      
        Implement the PEP 302 protocol for get_filename() as
        importlib.abc.ExecutionLoader. PyLoader now inherits from this ABC instead of
        InspectLoader directly. Both PyLoader and PyPycLoader provide concrete
        implementations of get_filename in terms of source_path and bytecode_path.
      ................
        r74124 | brett.cannon | 2009-07-21 00:59:00 +0200 (Di, 21 Jul 2009) | 1 line
      
        Make the wdocs for importlib.abc.ExecutionLoader to be weaker in terms of what is needed to execute a module.
      ................
      18cd09d7
    • Georg Brandl's avatar
      Merged revisions 74010,74034,74054 via svnmerge from · c3c6fed6
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74010 | r.david.murray | 2009-07-15 16:16:54 +0200 (Mi, 15 Jul 2009) | 2 lines
      
        PEP-8-ify r73389.
      ................
        r74034 | alexandre.vassalotti | 2009-07-17 07:35:59 +0200 (Fr, 17 Jul 2009) | 2 lines
      
        The output() function takes only one string argument.
      ................
        r74054 | alexandre.vassalotti | 2009-07-17 10:31:44 +0200 (Fr, 17 Jul 2009) | 14 lines
      
        Merged revisions 74051-74052 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74051 | alexandre.vassalotti | 2009-07-17 03:54:23 -0400 (Fri, 17 Jul 2009) | 2 lines
      
          Initialize variables in PyCurses_getsyx() to avoid compiler warnings.
        ........
          r74052 | alexandre.vassalotti | 2009-07-17 04:09:04 -0400 (Fri, 17 Jul 2009) | 3 lines
      
          Fix GCC warning about fprintf used without a string literal and
          without format arguments.
        ........
      ................
      c3c6fed6
    • Georg Brandl's avatar
      Blocked revisions 74003-74004,74009,74012-74013,74015,74017-74018,74030 via svnmerge · 6b2964d6
      Georg Brandl yazdı
      ................
        r74003 | amaury.forgeotdarc | 2009-07-13 22:38:21 +0200 (Mo, 13 Jul 2009) | 15 lines
      
        Merged revisions 74000-74001 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74000 | amaury.forgeotdarc | 2009-07-13 22:01:11 +0200 (lun., 13 juil. 2009) | 4 lines
      
          #1616979: Add the cp720 (Arabic DOS) encoding.
          Since there is no official mapping file from unicode.org,
          the codec file is generated on Windows with the new genwincodec.py script.
        ........
          r74001 | amaury.forgeotdarc | 2009-07-13 22:03:21 +0200 (lun., 13 juil. 2009) | 2 lines
      
          NEWS entry for r74000.
        ........
      ................
        r74004 | amaury.forgeotdarc | 2009-07-13 22:48:07 +0200 (Mo, 13 Jul 2009) | 2 lines
      
        Oops, really pass a bytes string to the ctypes function.
      ................
        r74009 | brett.cannon | 2009-07-15 06:08:33 +0200 (Mi, 15 Jul 2009) | 4 lines
      
        Importlib was using custom code to discover all test modules in importlib.test.
        This has now been removed in favor of using unittest's test discovery code in
        TestLoader.discover().
      ................
        r74012 | ezio.melotti | 2009-07-15 19:17:17 +0200 (Mi, 15 Jul 2009) | 9 lines
      
        Merged revisions 74011 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74011 | ezio.melotti | 2009-07-15 20:07:04 +0300 (Wed, 15 Jul 2009) | 1 line
      
          methods' names pep8ification
        ........
      ................
        r74013 | alexandre.vassalotti | 2009-07-15 19:49:23 +0200 (Mi, 15 Jul 2009) | 4 lines
      
        Issue #2389: Implement a portable mechanism for pickling array objects.
      
        Reviewed by: Martin v. Löwis
      ................
        r74015 | alexandre.vassalotti | 2009-07-15 20:31:06 +0200 (Mi, 15 Jul 2009) | 2 lines
      
        Fix omission in a comment.
      ................
        r74017 | amaury.forgeotdarc | 2009-07-15 21:21:18 +0200 (Mi, 15 Jul 2009) | 9 lines
      
        Merged revisions 74006 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74006 | amaury.forgeotdarc | 2009-07-14 01:11:54 +0200 (mar., 14 juil. 2009) | 2 lines
      
          Document the newly added codec
        ........
      ................
        r74018 | alexandre.vassalotti | 2009-07-15 22:53:55 +0200 (Mi, 15 Jul 2009) | 2 lines
      
        Don't check 64-bit test cases on 32-bit machine.
      ................
        r74030 | alexandre.vassalotti | 2009-07-17 05:51:27 +0200 (Fr, 17 Jul 2009) | 7 lines
      
        Use the proper autoconf macro for checking byte order.
      
        The BYTEORDER_IS_BIG_ENDIAN macro is defined Objects/unicodeobject.c,
        thus the code was always emitting the little-endian machine format codes.
      
        This should fix the failure seen on the SPARC buildbot.
      ................
      6b2964d6
    • Georg Brandl's avatar
      Blocked revisions 73894,73917,73956,73978,73983,73993,73996 via svnmerge · 4e25978d
      Georg Brandl yazdı
      ................
        r73894 | ezio.melotti | 2009-07-09 00:24:06 +0200 (Do, 09 Jul 2009) | 9 lines
      
        Merged revisions 73841 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73841 | ezio.melotti | 2009-07-04 17:58:27 +0300 (Sat, 04 Jul 2009) | 1 line
      
          if zlib -> skipUnless(zlib) and minor cleanups
        ........
      ................
        r73917 | amaury.forgeotdarc | 2009-07-10 00:44:11 +0200 (Fr, 10 Jul 2009) | 12 lines
      
        Merged revisions 73916 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73916 | amaury.forgeotdarc | 2009-07-10 00:37:22 +0200 (ven., 10 juil. 2009) | 5 lines
      
          #6416: Fix compilation of the select module on Windows, as well as test_subprocess:
          PIPE_BUF is not defined on Windows, and probably has no meaning there.
      
          Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
        ........
      ................
        r73956 | ezio.melotti | 2009-07-11 20:28:48 +0200 (Sa, 11 Jul 2009) | 9 lines
      
        Merged revisions 73931 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73931 | ezio.melotti | 2009-07-10 23:25:56 +0300 (Fri, 10 Jul 2009) | 1 line
      
          more cleanups and if zlib -> skipUnless(zlib)
        ........
      ................
        r73978 | amaury.forgeotdarc | 2009-07-12 18:43:19 +0200 (So, 12 Jul 2009) | 13 lines
      
        Merged revisions 73952 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        (Only docstrings were modified, won't backport to 3.1)
      
        ........
          r73952 | amaury.forgeotdarc | 2009-07-11 16:33:51 +0200 (sam., 11 juil. 2009) | 4 lines
      
          #2622 Import errors in email.message, from a py2app standalone application.
      
          Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
        ........
      ................
        r73983 | raymond.hettinger | 2009-07-12 22:49:21 +0200 (So, 12 Jul 2009) | 1 line
      
        Document the thousands separator.
      ................
        r73993 | benjamin.peterson | 2009-07-13 02:00:31 +0200 (Mo, 13 Jul 2009) | 8 lines
      
        Unblocked revisions 73991 via svnmerge
      
        ........
          r73991 | benjamin.peterson | 2009-07-12 18:56:18 -0500 (Sun, 12 Jul 2009) | 1 line
      
          change encoding to utf-8
        ........
      ................
        r73996 | vinay.sajip | 2009-07-13 13:28:25 +0200 (Mo, 13 Jul 2009) | 1 line
      
        Issue #6314: logging: Extra checks on the "level" argument.
      ................
      4e25978d
    • Georg Brandl's avatar
      Merged revisions 73862,73872 via svnmerge from · df475156
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r73862 | alexandre.vassalotti | 2009-07-05 21:57:00 +0200 (So, 05 Jul 2009) | 2 lines
      
        Add the fix for issue 4509 to the mapping methods.
      ........
        r73872 | gregory.p.smith | 2009-07-07 07:06:04 +0200 (Di, 07 Jul 2009) | 2 lines
      
        Add a unittest for r73566.
      ........
      df475156
    • Georg Brandl's avatar
      Merged revisions 73833,73838,73850-73852,73856-73857 via svnmerge from · ae83d6ee
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r73833 | gregory.p.smith | 2009-07-04 04:46:54 +0200 (Sa, 04 Jul 2009) | 20 lines
      
        Merged revisions 73825-73826 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73825 | gregory.p.smith | 2009-07-03 18:49:29 -0700 (Fri, 03 Jul 2009) | 9 lines
      
          Use select.poll() in subprocess, when available, rather than select() so that
          it does not fail when file descriptors are large.  Fixes issue3392.
      
          Patch largely contributed by Frank Chu (fpmc) with some improvements by me.
          See http://bugs.python.org/issue3392.
        ........
          r73826 | gregory.p.smith | 2009-07-03 18:55:11 -0700 (Fri, 03 Jul 2009) | 2 lines
      
          news entry for r73825
        ........
      
        Candidate for backporting to release31-maint as it is a bug fix and changes no
        public API.
      ................
        r73838 | gregory.p.smith | 2009-07-04 10:32:15 +0200 (Sa, 04 Jul 2009) | 2 lines
      
        change deprecated unittest method calls into their proper names.
      ................
        r73850 | alexandre.vassalotti | 2009-07-05 07:38:18 +0200 (So, 05 Jul 2009) | 3 lines
      
        Issue 4509: Do not modify an array if we know the change would result
        in a failure due to exported buffers.
      ................
        r73851 | alexandre.vassalotti | 2009-07-05 07:47:28 +0200 (So, 05 Jul 2009) | 2 lines
      
        Add more test cases to BaseTest.test_memoryview_no_resize.
      ................
        r73852 | alexandre.vassalotti | 2009-07-05 08:25:14 +0200 (So, 05 Jul 2009) | 5 lines
      
        Fix array.extend and array.__iadd__ to handle the case where an array
        is extended with itself.
      
        This bug is specific the py3k version of arraymodule.c
      ................
        r73856 | alexandre.vassalotti | 2009-07-05 08:42:44 +0200 (So, 05 Jul 2009) | 6 lines
      
        Issue 4005: Remove .sort() call on dict_keys object.
      
        This caused pydoc to fail when there was a zip file in sys.path.
      
        Patch contributed by Amaury Forgeot d'Arc.
      ................
        r73857 | alexandre.vassalotti | 2009-07-05 08:50:08 +0200 (So, 05 Jul 2009) | 2 lines
      
        Add NEWS entries for the changes I made recently.
      ................
      ae83d6ee
    • Georg Brandl's avatar
      Blocked revisions 73832 via svnmerge · 3deeed9a
      Georg Brandl yazdı
      ................
        r73832 | gregory.p.smith | 2009-07-04 04:28:47 +0200 (Sa, 04 Jul 2009) | 9 lines
      
        Merged revisions 73818 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73818 | gregory.p.smith | 2009-07-03 13:48:31 -0700 (Fri, 03 Jul 2009) | 2 lines
      
          Adds the select.PIPE_BUF attribute to expose the system constant.
        ........
      ................
      3deeed9a
    • Georg Brandl's avatar
      Merged revisions 73592,73823 via svnmerge from · f78dd345
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r73592 | ezio.melotti | 2009-06-28 00:58:15 +0200 (So, 28 Jun 2009) | 1 line
      
        Updated the last example as requested in #6350
      ........
        r73823 | ezio.melotti | 2009-07-04 03:14:30 +0200 (Sa, 04 Jul 2009) | 1 line
      
        #6398 typo: versio. -> version.
      ........
      f78dd345
    • Georg Brandl's avatar
      Blocked revisions 73780 via svnmerge · a5ea7e3d
      Georg Brandl yazdı
      ........
        r73780 | benjamin.peterson | 2009-07-02 20:25:26 +0200 (Do, 02 Jul 2009) | 1 line
      
        refactor logic a little when no sep or end is passed
      ........
      a5ea7e3d
    • Georg Brandl's avatar
      Merged revisions 73749 via svnmerge from · c8b3891d
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r73749 | benjamin.peterson | 2009-07-01 17:47:07 +0200 (Mi, 01 Jul 2009) | 9 lines
      
        Merged revisions 73744 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73744 | benjamin.peterson | 2009-07-01 08:34:35 -0500 (Wed, 01 Jul 2009) | 1 line
      
          proxy the __exit__ call
        ........
      ................
      c8b3891d
    • Georg Brandl's avatar
      Blocked revisions 73737,73739-73740 via svnmerge · c3c3eaf9
      Georg Brandl yazdı
      ........
        r73737 | hirokazu.yamamoto | 2009-07-01 04:36:00 +0200 (Mi, 01 Jul 2009) | 1 line
      
        Updated MSVC project files to follow PyCObject removal (r73729)
      ........
        r73739 | r.david.murray | 2009-07-01 04:51:00 +0200 (Mi, 01 Jul 2009) | 2 lines
      
        Remove unused import for function that no longer exists.
      ........
        r73740 | benjamin.peterson | 2009-07-01 05:34:25 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove cobject reference
      ........
      c3c3eaf9
    • Georg Brandl's avatar
      Merged revisions 73735-73736 via svnmerge from · 514c368c
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r73735 | benjamin.peterson | 2009-07-01 03:45:12 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove comment about PyNumber_Int
      ........
        r73736 | hirokazu.yamamoto | 2009-07-01 04:24:13 +0200 (Mi, 01 Jul 2009) | 1 line
      
        Added svn:ignore.
      ........
      514c368c
    • Georg Brandl's avatar
      Blocked revisions 73719,73729-73734 via svnmerge · 805af7fc
      Georg Brandl yazdı
      ........
        r73719 | benjamin.peterson | 2009-07-01 01:45:41 +0200 (Mi, 01 Jul 2009) | 1 line
      
        test that depreacted methods give warnings
      ........
        r73729 | benjamin.peterson | 2009-07-01 03:28:55 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove PyCObject
      ........
        r73730 | benjamin.peterson | 2009-07-01 03:31:12 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove reference to PyCObject
      ........
        r73731 | raymond.hettinger | 2009-07-01 03:32:12 +0200 (Mi, 01 Jul 2009) | 1 line
      
        Removed contextlib.nested()
      ........
        r73732 | raymond.hettinger | 2009-07-01 03:37:01 +0200 (Mi, 01 Jul 2009) | 1 line
      
        Remove docs for string.maketrans().
      ........
        r73733 | benjamin.peterson | 2009-07-01 03:38:23 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove nested from __all__
      ........
        r73734 | benjamin.peterson | 2009-07-01 03:39:51 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove warnings supression
      ........
      805af7fc
    • Georg Brandl's avatar
      Merged revisions 73718,73721,73723 via svnmerge from · fe5f11c6
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r73718 | benjamin.peterson | 2009-07-01 01:35:19 +0200 (Mi, 01 Jul 2009) | 9 lines
      
        Merged revisions 73717 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73717 | benjamin.peterson | 2009-06-30 18:30:12 -0500 (Tue, 30 Jun 2009) | 1 line
      
          use assert* methods in test_unittest
        ........
      ................
        r73721 | benjamin.peterson | 2009-07-01 02:43:10 +0200 (Mi, 01 Jul 2009) | 11 lines
      
        Merged revisions 73720 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73720 | benjamin.peterson | 2009-06-30 19:36:41 -0500 (Tue, 30 Jun 2009) | 4 lines
      
          fix a few cases where automated fail -> assert translation messed up
      
          Thanks Joe Amenta
        ........
      ................
        r73723 | benjamin.peterson | 2009-07-01 02:45:43 +0200 (Mi, 01 Jul 2009) | 1 line
      
        remove use of failIf
      ................
      fe5f11c6
    • Georg Brandl's avatar
      Merged revisions 73715 via svnmerge from · ab91fdef
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line
      
        convert old fail* assertions to assert*
      ........
      ab91fdef
    • Georg Brandl's avatar
      Merged revisions 73695,73711 via svnmerge from · ef82be36
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r73695 | raymond.hettinger | 2009-06-29 20:30:43 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Issue 6370: Performance issue with collections.Counter().
      ................
        r73711 | benjamin.peterson | 2009-07-01 00:27:25 +0200 (Mi, 01 Jul 2009) | 9 lines
      
        Merged revisions 73710 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73710 | benjamin.peterson | 2009-06-30 17:14:33 -0500 (Tue, 30 Jun 2009) | 1 line
      
          provide a dummy __exit__ on windows
        ........
      ................
      ef82be36
    • Georg Brandl's avatar
      Blocked revisions 73678,73700 via svnmerge · eea07218
      Georg Brandl yazdı
      ................
        r73678 | antoine.pitrou | 2009-06-29 15:54:42 +0200 (Mo, 29 Jun 2009) | 10 lines
      
        Merged revisions 73072 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73072 | antoine.pitrou | 2009-05-31 16:20:14 +0200 (dim., 31 mai 2009) | 4 lines
      
          Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running
          regression tests in parallel, shortening the total runtime.
        ........
      ................
        r73700 | gregory.p.smith | 2009-06-30 07:33:50 +0200 (Di, 30 Jun 2009) | 3 lines
      
        PendingDeprecationWarning -> DeprecationWarning.  Both of these were
        properly documented as being deprecated in 3.1.
      ................
      eea07218
    • Georg Brandl's avatar
      Blocked revisions 73664 via svnmerge · 7d913836
      Georg Brandl yazdı
      ........
        r73664 | benjamin.peterson | 2009-06-29 01:32:44 +0200 (Mo, 29 Jun 2009) | 3 lines
      
        In most cases, the parser will protect True, False, and None  from being assign to.
        We must check for __debug__ in all cases.
      ........
      7d913836
    • Georg Brandl's avatar
      Merged revisions 73656,73658,73663,73666 via svnmerge from · 7d1e8806
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r73656 | mark.dickinson | 2009-06-29 00:08:40 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Fix description of range_length_obj
      ........
        r73658 | raymond.hettinger | 2009-06-29 00:30:13 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Small doc fix-ups to floatingpoint.rst.  More are forthcoming.
      ........
        r73663 | raymond.hettinger | 2009-06-29 01:21:38 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Clean-up floating point tutorial.
      ........
        r73666 | alexandre.vassalotti | 2009-06-29 03:13:41 +0200 (Mo, 29 Jun 2009) | 2 lines
      
        Make b64encode raises properly a TypeError when altchars is not bytes.
      ........
      7d1e8806
    • Georg Brandl's avatar
      Blocked revisions 73593,73604,73635,73648-73651 via svnmerge · 98e472d7
      Georg Brandl yazdı
      ................
        r73593 | martin.v.loewis | 2009-06-28 01:00:59 +0200 (So, 28 Jun 2009) | 2 lines
      
        Bump Windows versions to 3.2.
      ................
        r73604 | hirokazu.yamamoto | 2009-06-28 13:07:03 +0200 (So, 28 Jun 2009) | 9 lines
      
        Merged revisions 73603 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73603 | hirokazu.yamamoto | 2009-06-28 19:23:00 +0900 | 1 line
      
          Issue #4856: Remove checks for win NT.
        ........
      ................
        r73635 | raymond.hettinger | 2009-06-28 22:56:11 +0200 (So, 28 Jun 2009) | 1 line
      
        Whatsnew begins afresh
      ................
        r73648 | kristjan.jonsson | 2009-06-28 23:34:22 +0200 (So, 28 Jun 2009) | 2 lines
      
        http://bugs.python.org/issue6192
        Mergin revisions 73272 and 73546 to py3k
      ................
        r73649 | benjamin.peterson | 2009-06-28 23:35:31 +0200 (So, 28 Jun 2009) | 1 line
      
        remove string.maketrans
      ................
        r73650 | raymond.hettinger | 2009-06-28 23:37:08 +0200 (So, 28 Jun 2009) | 1 line
      
        Fill-in some new news.
      ................
        r73651 | benjamin.peterson | 2009-06-28 23:41:24 +0200 (So, 28 Jun 2009) | 1 line
      
        include 3.2 in toctree
      ................
      98e472d7
    • Georg Brandl's avatar
      Merged revisions 74196 via svnmerge from · a08a3c51
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74196 | benjamin.peterson | 2009-07-25 03:02:01 +0200 (Sa, 25 Jul 2009) | 1 line
      
        account for range() py3k change
      ........
      a08a3c51
    • Georg Brandl's avatar
      Blocked revisions 74198-74199,74202 via svnmerge · 4a3b3095
      Georg Brandl yazdı
      ........
        r74198 | senthil.kumaran | 2009-07-25 06:24:38 +0200 (Sa, 25 Jul 2009) | 3 lines
      
        Fixed Issue1424152 in Py3k: urllib2 fails with HTTPS over Proxy.
      ........
        r74199 | senthil.kumaran | 2009-07-25 06:27:38 +0200 (Sa, 25 Jul 2009) | 3 lines
      
        versionadded: 3.2. not 3.1.
      ........
        r74202 | senthil.kumaran | 2009-07-26 06:46:00 +0200 (So, 26 Jul 2009) | 3 lines
      
        Fixing module names in the NEWS entry.
      ........
      4a3b3095
    • Georg Brandl's avatar
      Merged revisions 74217,74224 via svnmerge from · e6700e9a
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74217 | jack.diederich | 2009-07-27 00:23:04 +0200 (Mo, 27 Jul 2009) | 1 line
      
        - fix issue #6106, Telnet.process_rawq default handling of WILL/WONT/DO/DONT
      ........
        r74224 | jack.diederich | 2009-07-27 11:03:14 +0200 (Mo, 27 Jul 2009) | 1 line
      
        - belated ACK for issue #6106
      ........
      e6700e9a
    • Georg Brandl's avatar
      Merged revisions 74264 via svnmerge from · 01a30523
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74264 | alexandre.vassalotti | 2009-07-29 22:12:15 +0200 (Mi, 29 Jul 2009) | 32 lines
      
        Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74075 | georg.brandl | 2009-07-18 05:06:31 -0400 (Sat, 18 Jul 2009) | 1 line
      
          #6505: fix typos.
        ........
          r74187 | benjamin.peterson | 2009-07-23 10:19:08 -0400 (Thu, 23 Jul 2009) | 1 line
      
          use bools for autoraise
        ........
          r74197 | benjamin.peterson | 2009-07-24 22:03:48 -0400 (Fri, 24 Jul 2009) | 1 line
      
          clarify
        ........
          r74201 | amaury.forgeotdarc | 2009-07-25 12:22:06 -0400 (Sat, 25 Jul 2009) | 2 lines
      
          Better name a variable: 'buf' seems to imply a mutable buffer.
        ........
          r74216 | michael.foord | 2009-07-26 17:12:14 -0400 (Sun, 26 Jul 2009) | 1 line
      
          Issue 6581. Michael Foord
        ........
          r74225 | kurt.kaiser | 2009-07-27 12:09:28 -0400 (Mon, 27 Jul 2009) | 5 lines
      
          1. Clean workspace more thoughly before build.
          2. Add url of branch we are building to 'results' webpage.
             (url is now available in $repo_path, could be added to failure email.)
          3. Adjust permissions to improve upload reliability.
        ........
      ................
      01a30523
    • Georg Brandl's avatar
      Merged revisions 74278 via svnmerge from · 878c3b00
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74278 | sean.reifschneider | 2009-08-02 01:55:06 +0200 (So, 02 Aug 2009) | 3 lines
      
        - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with
          NUL: Bogus TypeError detail string.
      ........
      878c3b00
    • Georg Brandl's avatar
      Recorded merge of revisions 74302 via svnmerge from · 86a31f55
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74302 | raymond.hettinger | 2009-08-04 21:16:39 +0200 (Di, 04 Aug 2009) | 1 line
      
        Issue 6637: defaultdict.copy() failed with an empty factory.
      ........
      86a31f55
    • Georg Brandl's avatar
      Merged revisions 74316,74335 via svnmerge from · 97b28f84
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74316 | alexandre.vassalotti | 2009-08-05 01:19:13 +0200 (Mi, 05 Aug 2009) | 4 lines
      
        Issue 5449: Fix io.BytesIO to not accept arbitrary keywords
      
        Patch contributed by Erick Tryzelaar.
      ........
        r74335 | philip.jenvey | 2009-08-06 22:00:08 +0200 (Do, 06 Aug 2009) | 1 line
      
        typo
      ........
      97b28f84
    • Georg Brandl's avatar
      Merged revisions… · c5605dff
      Georg Brandl yazdı
      Merged revisions 73941-73943,74076,74094,74186,74211-74214,74247,74254,74262,74311,74334,74368 via svnmerge from
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r73941 | georg.brandl | 2009-07-11 12:39:00 +0200 (Sa, 11 Jul 2009) | 9 lines
      
        Merged revisions 73940 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73940 | georg.brandl | 2009-07-11 12:37:38 +0200 (Sa, 11 Jul 2009) | 1 line
      
          #6430: add note about size of "u" type.
        ........
      ................
        r73942 | georg.brandl | 2009-07-11 12:39:23 +0200 (Sa, 11 Jul 2009) | 1 line
      
        #6430: remove mention of "w" array typecode.
      ................
        r73943 | georg.brandl | 2009-07-11 12:43:08 +0200 (Sa, 11 Jul 2009) | 1 line
      
        #6421: The self argument of module-level PyCFunctions is now a reference to the module object.
      ................
        r74076 | georg.brandl | 2009-07-18 11:07:48 +0200 (Sa, 18 Jul 2009) | 1 line
      
        #6502: add missing comma in docstring.
      ................
        r74094 | georg.brandl | 2009-07-19 09:25:56 +0200 (So, 19 Jul 2009) | 10 lines
      
        Recorded merge of revisions 74089 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74089 | senthil.kumaran | 2009-07-19 04:43:43 +0200 (So, 19 Jul 2009) | 3 lines
      
          Fix for issue5102, timeout value propages between redirects, proxy, digest and
          auth handlers. Fixed tests to reflect the same.
        ........
      ................
        r74186 | georg.brandl | 2009-07-23 11:19:09 +0200 (Do, 23 Jul 2009) | 9 lines
      
        Recorded merge of revisions 74185 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74185 | georg.brandl | 2009-07-23 11:17:09 +0200 (Do, 23 Jul 2009) | 1 line
      
          Fix the "pylocals" gdb command.
        ........
      ................
        r74211 | georg.brandl | 2009-07-26 16:48:09 +0200 (So, 26 Jul 2009) | 9 lines
      
        Recorded merge of revisions 74210 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74210 | georg.brandl | 2009-07-26 16:44:23 +0200 (So, 26 Jul 2009) | 1 line
      
          Move member descriptions inside the classes.
        ........
      ................
        r74212 | georg.brandl | 2009-07-26 16:54:51 +0200 (So, 26 Jul 2009) | 9 lines
      
        Merged revisions 74209 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line
      
          builtin -> built-in.
        ........
      ................
        r74213 | georg.brandl | 2009-07-26 17:02:41 +0200 (So, 26 Jul 2009) | 9 lines
      
        Merged revisions 74207 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74207 | georg.brandl | 2009-07-26 16:19:57 +0200 (So, 26 Jul 2009) | 1 line
      
          #6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
        ........
      ................
        r74214 | georg.brandl | 2009-07-26 17:03:49 +0200 (So, 26 Jul 2009) | 9 lines
      
        Merged revisions 74205 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74205 | georg.brandl | 2009-07-26 15:36:39 +0200 (So, 26 Jul 2009) | 1 line
      
          #6576: fix cross-refs in re docs.
        ........
      ................
        r74247 | georg.brandl | 2009-07-29 09:27:08 +0200 (Mi, 29 Jul 2009) | 9 lines
      
        Merged revisions 74239 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74239 | georg.brandl | 2009-07-28 18:55:32 +0000 (Di, 28 Jul 2009) | 1 line
      
          Clarify quote_plus() usage.
        ........
      ................
        r74254 | georg.brandl | 2009-07-29 18:14:16 +0200 (Mi, 29 Jul 2009) | 1 line
      
        #6586: fix return/argument type doc for os.read() and os.write().
      ................
        r74262 | alexandre.vassalotti | 2009-07-29 21:54:39 +0200 (Mi, 29 Jul 2009) | 57 lines
      
        Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line
      
          #6513: fix example code: warning categories are classes, not instances.
        ........
          r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line
      
          #6489: fix an ambiguity in getiterator() documentation.
        ........
          r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line
      
          remove docs for deprecated -p option
        ........
          r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line
      
          use bools
        ........
          r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line
      
          Fix arg types of et#.
        ........
          r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line
      
          Dont put "void" in signature for nullary functions.
        ........
          r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line
      
          #6571: add index entries for more operators.
        ........
          r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line
      
          #6593: fix link targets.
        ........
          r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line
      
          #6591: add reference to ioctl in fcntl module for platforms other than Windows.
        ........
          r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line
      
          Add a link to readline, and mention IPython and bpython.
        ........
          r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line
      
          Fix some markup and small factual glitches found by M. Markert.
        ........
          r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line
      
          Fix a few markup glitches.
        ........
          r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line
      
          Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better.
        ........
      ................
        r74311 | georg.brandl | 2009-08-04 22:29:27 +0200 (Di, 04 Aug 2009) | 1 line
      
        Slightly improve buffer-related error message.
      ................
        r74334 | georg.brandl | 2009-08-06 19:51:03 +0200 (Do, 06 Aug 2009) | 1 line
      
        #6648: mention surrogateescape handler where all standard handlers are listed.
      ................
        r74368 | georg.brandl | 2009-08-13 09:56:35 +0200 (Do, 13 Aug 2009) | 21 lines
      
        Merged revisions 74328,74332-74333,74365 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74328 | georg.brandl | 2009-08-06 17:06:25 +0200 (Do, 06 Aug 2009) | 1 line
      
          Fix base keyword arg name for int() and long().
        ........
          r74332 | georg.brandl | 2009-08-06 19:23:21 +0200 (Do, 06 Aug 2009) | 1 line
      
          Fix punctuation and one copy-paste error.
        ........
          r74333 | georg.brandl | 2009-08-06 19:43:55 +0200 (Do, 06 Aug 2009) | 1 line
      
          #6658: fix two typos.
        ........
          r74365 | georg.brandl | 2009-08-13 09:48:05 +0200 (Do, 13 Aug 2009) | 1 line
      
          #6679: Remove mention that sub supports no flags.
        ........
      ................
      c5605dff
    • Georg Brandl's avatar
      Blocked revisions 73594,73597,73611-73613,73616-73617,73620 via svnmerge · 08460551
      Georg Brandl yazdı
      ................
        r73594 | benjamin.peterson | 2009-06-28 01:45:02 +0200 (So, 28 Jun 2009) | 42 lines
      
        Merged revisions 72570,72582-72583,73027,73049,73071,73151,73247 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r72570 | michael.foord | 2009-05-11 12:59:43 -0500 (Mon, 11 May 2009) | 7 lines
      
          Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes
          from the command line.
      
          Closes issue 5995.
      
          Michael Foord
        ........
          r72582 | michael.foord | 2009-05-12 05:46:23 -0500 (Tue, 12 May 2009) | 1 line
      
          Fix to restore command line behaviour for test modules using unittest.main(). Regression caused by issue 5995. Michael
        ........
          r72583 | michael.foord | 2009-05-12 05:49:13 -0500 (Tue, 12 May 2009) | 1 line
      
          Better fix for modules using unittest.main(). Fixes regression caused by commit for issue 5995. Michael Foord
        ........
          r73027 | michael.foord | 2009-05-29 15:33:46 -0500 (Fri, 29 May 2009) | 1 line
      
          Add test discovery to unittest. Issue 6001.
        ........
          r73049 | georg.brandl | 2009-05-30 05:45:40 -0500 (Sat, 30 May 2009) | 1 line
      
          Rewrap a few long lines.
        ........
          r73071 | georg.brandl | 2009-05-31 09:15:25 -0500 (Sun, 31 May 2009) | 1 line
      
          Fix markup.
        ........
          r73151 | michael.foord | 2009-06-02 13:08:27 -0500 (Tue, 02 Jun 2009) | 1 line
      
          Restore default testRunner argument in unittest.main to None. Issue 6177
        ........
          r73247 | michael.foord | 2009-06-05 09:14:34 -0500 (Fri, 05 Jun 2009) | 1 line
      
          Fix unittest discovery tests for Windows. Issue 6199
        ........
      ................
        r73597 | benjamin.peterson | 2009-06-28 05:18:59 +0200 (So, 28 Jun 2009) | 20 lines
      
        Merged revisions 72912,72920,72940 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r72912 | benjamin.peterson | 2009-05-25 08:13:44 -0500 (Mon, 25 May 2009) | 5 lines
      
          add a SETUP_WITH opcode
      
          It speeds up the with statement and correctly looks up the special
          methods involved.
        ........
          r72920 | benjamin.peterson | 2009-05-25 15:12:57 -0500 (Mon, 25 May 2009) | 1 line
      
          take into account the fact that SETUP_WITH pushes a finally block
        ........
          r72940 | benjamin.peterson | 2009-05-26 07:49:59 -0500 (Tue, 26 May 2009) | 1 line
      
          teach the peepholer about SETUP_WITH
        ........
      ................
        r73611 | benjamin.peterson | 2009-06-28 17:40:50 +0200 (So, 28 Jun 2009) | 1 line
      
        correctly rearrange the stack in the exception case of WITH_CLEANUP
      ................
        r73612 | benjamin.peterson | 2009-06-28 17:55:46 +0200 (So, 28 Jun 2009) | 1 line
      
        update comments
      ................
        r73613 | benjamin.peterson | 2009-06-28 18:03:15 +0200 (So, 28 Jun 2009) | 1 line
      
        this is better written as an assertion
      ................
        r73616 | benjamin.peterson | 2009-06-28 18:17:34 +0200 (So, 28 Jun 2009) | 13 lines
      
        Merged revisions 73614-73615 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73614 | benjamin.peterson | 2009-06-28 11:08:02 -0500 (Sun, 28 Jun 2009) | 1 line
      
          add two generic macros for peeking and setting in the stack
        ........
          r73615 | benjamin.peterson | 2009-06-28 11:14:07 -0500 (Sun, 28 Jun 2009) | 1 line
      
          use stack macros
        ........
      ................
        r73617 | benjamin.peterson | 2009-06-28 18:21:52 +0200 (So, 28 Jun 2009) | 1 line
      
        use stack altering macros here
      ................
        r73620 | benjamin.peterson | 2009-06-28 18:27:27 +0200 (So, 28 Jun 2009) | 1 line
      
        delete unused properties
      ................
      08460551
    • Georg Brandl's avatar
      Blocked revisions… · eb26ba25
      Georg Brandl yazdı
      Blocked revisions 73621-73622,73628,73655,73657,73680,73687,73716,73746,73777,73807,73843-73844,73853,73855,73860,73886,73890,73893,73909,73936,73950,73980,73992,74016,74035,74049-74050,74053,74060-74061,74064,74068,74071,74082,74120,74125,74129,74174,74191,74195,74221,74236,74242,74244,74257,74263,74283 via svnmerge
      
      ................
        r73621 | benjamin.peterson | 2009-06-28 18:39:56 +0200 (So, 28 Jun 2009) | 53 lines
      
        Blocked revisions 73382,73394-73397,73401-73402,73422,73480,73536,73540 via svnmerge
      
        ........
          r73382 | raymond.hettinger | 2009-06-11 18:14:53 -0500 (Thu, 11 Jun 2009) | 1 line
      
          Issue 6261: Clarify behavior of random.uniform().
        ........
          r73394 | antoine.pitrou | 2009-06-12 15:14:08 -0500 (Fri, 12 Jun 2009) | 3 lines
      
          Issue #6215: backport the 3.1 io lib
        ........
          r73395 | antoine.pitrou | 2009-06-12 15:36:25 -0500 (Fri, 12 Jun 2009) | 4 lines
      
          Restore the old test_file.py (for the builtin file object) as a new file named test_file2k.py
        ........
          r73396 | antoine.pitrou | 2009-06-12 15:41:52 -0500 (Fri, 12 Jun 2009) | 4 lines
      
          Try to restore the old test_file and test_univnewlines as new, different files
          (with the right revisions this time, hopefully)
        ........
          r73397 | antoine.pitrou | 2009-06-12 15:54:21 -0500 (Fri, 12 Jun 2009) | 3 lines
      
          Re-enable testing of builtin open() in test_bufio in test_largefile
        ........
          r73401 | alexandre.vassalotti | 2009-06-12 16:52:14 -0500 (Fri, 12 Jun 2009) | 2 lines
      
          Make pickling of OrderedDict instances more efficient.
        ........
          r73402 | alexandre.vassalotti | 2009-06-12 18:03:35 -0500 (Fri, 12 Jun 2009) | 6 lines
      
          Revert r73401 per Raymond Hettinger's request.
      
          The rational is the change might cause imcompatiblity problems with
          PyYAML. In addition, Raymond wants to kept the different versions of
          collections synchronized across Python versions.
        ........
          r73422 | benjamin.peterson | 2009-06-13 15:30:48 -0500 (Sat, 13 Jun 2009) | 1 line
      
          update ast version
        ........
          r73480 | facundo.batista | 2009-06-19 13:02:28 -0500 (Fri, 19 Jun 2009) | 3 lines
      
          Issue #6274. Fixed a potential FD leak in subprocess.py.
        ........
          r73536 | raymond.hettinger | 2009-06-23 16:32:28 -0500 (Tue, 23 Jun 2009) | 1 line
      
          Issue 6305: Clarify error message for large arguments to itertools.islice().
        ........
          r73540 | raymond.hettinger | 2009-06-23 17:20:04 -0500 (Tue, 23 Jun 2009) | 1 line
      
          Add procedural note.
        ........
      ................
        r73622 | benjamin.peterson | 2009-06-28 18:51:58 +0200 (So, 28 Jun 2009) | 12 lines
      
        Blocked revisions 73459,73563 via svnmerge
      
        ........
          r73459 | raymond.hettinger | 2009-06-16 20:43:47 -0500 (Tue, 16 Jun 2009) | 1 line
      
          Add usage note.
        ........
          r73563 | amaury.forgeotdarc | 2009-06-25 16:29:32 -0500 (Thu, 25 Jun 2009) | 2 lines
      
          Fix a compilation warning on Windows
        ........
      ................
        r73628 | benjamin.peterson | 2009-06-28 21:29:09 +0200 (So, 28 Jun 2009) | 8 lines
      
        Blocked revisions 73627 via svnmerge
      
        ........
          r73627 | benjamin.peterson | 2009-06-28 14:27:55 -0500 (Sun, 28 Jun 2009) | 1 line
      
          return locals and cells in get_locals() not bound globals, though
        ........
      ................
        r73655 | mark.dickinson | 2009-06-28 23:59:52 +0200 (So, 28 Jun 2009) | 8 lines
      
        Blocked revisions 73653 via svnmerge
      
        ........
          r73653 | mark.dickinson | 2009-06-28 22:48:15 +0100 (Sun, 28 Jun 2009) | 1 line
      
          More Decimal quote fixing;  backport of r73642
        ........
      ................
        r73657 | benjamin.peterson | 2009-06-29 00:24:31 +0200 (Mo, 29 Jun 2009) | 14 lines
      
        Blocked revisions 73272,73546 via svnmerge
      
        ........
          r73272 | kristjan.jonsson | 2009-06-07 11:43:23 -0500 (Sun, 07 Jun 2009) | 2 lines
      
          http://bugs.python.org/issue6192
          Add a feature to disable the Nagle algorithm on sockets in TCPServer
        ........
          r73546 | kristjan.jonsson | 2009-06-24 04:17:04 -0500 (Wed, 24 Jun 2009) | 2 lines
      
          http://bugs.python.org/issue6192
          Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate.
        ........
      ................
        r73680 | antoine.pitrou | 2009-06-29 16:17:23 +0200 (Mo, 29 Jun 2009) | 8 lines
      
        Blocked revisions 73679 via svnmerge
      
        ........
          r73679 | antoine.pitrou | 2009-06-29 16:14:56 +0200 (lun., 29 juin 2009) | 3 lines
      
          Backport fix for buglet from py3k
        ........
      ................
        r73687 | hirokazu.yamamoto | 2009-06-29 18:03:21 +0200 (Mo, 29 Jun 2009) | 8 lines
      
        Blocked revisions 73686 via svnmerge
      
        ........
          r73686 | hirokazu.yamamoto | 2009-06-30 00:52:21 +0900 | 1 line
      
          Issue #6368: Fixed unused variable warning on Unix.
        ........
      ................
        r73716 | benjamin.peterson | 2009-07-01 01:09:03 +0200 (Mi, 01 Jul 2009) | 8 lines
      
        Blocked revisions 73714 via svnmerge
      
        ........
          r73714 | benjamin.peterson | 2009-06-30 17:57:08 -0500 (Tue, 30 Jun 2009) | 1 line
      
          convert usage of fail* to assert*
        ........
      ................
        r73746 | benjamin.peterson | 2009-07-01 15:47:12 +0200 (Mi, 01 Jul 2009) | 13 lines
      
        Blocked revisions 73638,73697 via svnmerge
      
        ........
          r73638 | kristjan.jonsson | 2009-06-28 16:04:17 -0500 (Sun, 28 Jun 2009) | 2 lines
      
          http://bugs.python.org/issue6267
          Cumulative patch to http and xmlrpc
        ........
          r73697 | raymond.hettinger | 2009-06-29 14:10:29 -0500 (Mon, 29 Jun 2009) | 1 line
      
          Issue 6370: Performance issue with collections.Counter().
        ........
      ................
        r73777 | benjamin.peterson | 2009-07-02 20:18:56 +0200 (Do, 02 Jul 2009) | 8 lines
      
        Blocked revisions 73776 via svnmerge
      
        ........
          r73776 | benjamin.peterson | 2009-07-02 13:16:45 -0500 (Thu, 02 Jul 2009) | 1 line
      
          when print() gets unicode arguments, sep and end should be unicode by default #4618
        ........
      ................
        r73807 | benjamin.peterson | 2009-07-03 15:22:00 +0200 (Fr, 03 Jul 2009) | 1 line
      
        rip out bsddb support code
      ................
        r73843 | kristjan.jonsson | 2009-07-04 17:09:25 +0200 (Sa, 04 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6381
        merging revision 73819 from trunk
      ................
        r73844 | kristjan.jonsson | 2009-07-04 17:16:38 +0200 (Sa, 04 Jul 2009) | 1 line
      
        Revert last change, which was incorrect.
      ................
        r73853 | alexandre.vassalotti | 2009-07-05 08:31:55 +0200 (So, 05 Jul 2009) | 15 lines
      
        Blocked revisions 73846-73847 via svnmerge
      
        ........
          r73846 | alexandre.vassalotti | 2009-07-05 00:22:40 -0400 (Sun, 05 Jul 2009) | 6 lines
      
          Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and
          operator.sequenceIncludes.
      
          Patch contributed by Jeff Balogh (and updated slightly by me).
        ........
          r73847 | alexandre.vassalotti | 2009-07-05 00:25:46 -0400 (Sun, 05 Jul 2009) | 2 lines
      
          Fix bad variable name in r73846.
        ........
      ................
        r73855 | alexandre.vassalotti | 2009-07-05 08:34:48 +0200 (So, 05 Jul 2009) | 8 lines
      
        Blocked revisions 73854 via svnmerge
      
        ........
          r73854 | alexandre.vassalotti | 2009-07-05 02:33:41 -0400 (Sun, 05 Jul 2009) | 2 lines
      
          Backport test cases added in r73852.
        ........
      ................
        r73860 | mark.dickinson | 2009-07-05 12:03:49 +0200 (So, 05 Jul 2009) | 9 lines
      
        Blocked revisions 73858 via svnmerge
      
        ........
          r73858 | mark.dickinson | 2009-07-05 11:01:24 +0100 (Sun, 05 Jul 2009) | 3 lines
      
          Issues #1530559, #1741130:  Fix various inconsistencies in struct.pack
          integer packing, and reenable some previously broken tests.
        ........
      ................
        r73886 | mark.dickinson | 2009-07-07 13:09:38 +0200 (Di, 07 Jul 2009) | 8 lines
      
        Blocked revisions 73884 via svnmerge
      
        ........
          r73884 | mark.dickinson | 2009-07-07 12:08:23 +0100 (Tue, 07 Jul 2009) | 1 line
      
          Add skipping to struct test that only applies when overflow masking is in effect
        ........
      ................
        r73890 | mark.dickinson | 2009-07-07 16:18:33 +0200 (Di, 07 Jul 2009) | 9 lines
      
        Blocked revisions 73888 via svnmerge
      
        ........
          r73888 | mark.dickinson | 2009-07-07 15:15:45 +0100 (Tue, 07 Jul 2009) | 3 lines
      
          Expand test coverage for struct.pack with native integer packing;
          reorganize the test_struct module to remove duplicated code and tests.
        ........
      ................
        r73893 | mark.dickinson | 2009-07-07 17:09:33 +0200 (Di, 07 Jul 2009) | 9 lines
      
        Blocked revisions 73891 via svnmerge
      
        ........
          r73891 | mark.dickinson | 2009-07-07 16:08:28 +0100 (Tue, 07 Jul 2009) | 3 lines
      
          Issue #1523: Remove deprecated overflow masking in struct module, and
          make sure that out-of-range values consistently raise struct.error.
        ........
      ................
        r73909 | r.david.murray | 2009-07-09 21:47:26 +0200 (Do, 09 Jul 2009) | 9 lines
      
        Blocked revisions 73907 via svnmerge
      
        ........
          r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines
      
          Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
          if the test gives useful failure info on Solaris buildbot.
        ........
      ................
        r73936 | georg.brandl | 2009-07-11 12:08:49 +0200 (Sa, 11 Jul 2009) | 1 line
      
        Revert r73807, which removed code to be able to build _dbm with bsddb.
      ................
        r73950 | tarek.ziade | 2009-07-11 13:02:29 +0200 (Sa, 11 Jul 2009) | 8 lines
      
        Blocked revisions 73944 via svnmerge
      
        ........
          r73944 | tarek.ziade | 2009-07-11 12:48:31 +0200 (Sat, 11 Jul 2009) | 1 line
      
          cleaned up distutils.build_ext module
        ........
      ................
        r73980 | benjamin.peterson | 2009-07-12 19:02:22 +0200 (So, 12 Jul 2009) | 8 lines
      
        Blocked revisions 73979 via svnmerge
      
        ........
          r73979 | benjamin.peterson | 2009-07-12 11:56:54 -0500 (Sun, 12 Jul 2009) | 1 line
      
          add versionadded
        ........
      ................
        r73992 | benjamin.peterson | 2009-07-13 01:58:08 +0200 (Mo, 13 Jul 2009) | 8 lines
      
        Blocked revisions 73991 via svnmerge
      
        ........
          r73991 | benjamin.peterson | 2009-07-12 18:56:18 -0500 (Sun, 12 Jul 2009) | 1 line
      
          change encoding to utf-8
        ........
      ................
        r74016 | alexandre.vassalotti | 2009-07-15 20:32:08 +0200 (Mi, 15 Jul 2009) | 9 lines
      
        Blocked revisions 74014 via svnmerge
      
        ........
          r74014 | alexandre.vassalotti | 2009-07-15 14:19:47 -0400 (Wed, 15 Jul 2009) | 3 lines
      
          Issue #2389: Pickle array objects using a list representation for portability
          across different machine architectures and compatibility with Python 3.x.
        ........
      ................
        r74035 | alexandre.vassalotti | 2009-07-17 07:41:49 +0200 (Fr, 17 Jul 2009) | 23 lines
      
        Blocked revisions 74031-74033 via svnmerge
      
        ........
          r74031 | alexandre.vassalotti | 2009-07-17 00:24:45 -0400 (Fri, 17 Jul 2009) | 2 lines
      
          Use AC_CHECK_SIZEOF to find the size of off_t, pthread_t and time_t.
        ........
          r74032 | alexandre.vassalotti | 2009-07-17 00:59:05 -0400 (Fri, 17 Jul 2009) | 4 lines
      
          Rename the useless AC_INCLUDES_DEFAULT and protect the includes.
      
          This is mostly an aesthetic change.
        ........
          r74033 | alexandre.vassalotti | 2009-07-17 01:26:39 -0400 (Fri, 17 Jul 2009) | 8 lines
      
          Cache the results of all runtime checks.
      
          This will be helpful to people who want to compile Python with a
          cross-compiler. Now you can upload the configure script on your host
          machine, run it with caching enabled, and download the cached results
          on your build machine.
        ........
      ................
        r74049 | alexandre.vassalotti | 2009-07-17 09:49:53 +0200 (Fr, 17 Jul 2009) | 2 lines
      
        Regenerate configure script.
      ................
        r74050 | alexandre.vassalotti | 2009-07-17 09:51:38 +0200 (Fr, 17 Jul 2009) | 8 lines
      
        Blocked revisions 74048 via svnmerge
      
        ........
          r74048 | alexandre.vassalotti | 2009-07-17 03:46:46 -0400 (Fri, 17 Jul 2009) | 2 lines
      
          Regenerate configure script.
        ........
      ................
        r74053 | alexandre.vassalotti | 2009-07-17 10:29:18 +0200 (Fr, 17 Jul 2009) | 17 lines
      
        Blocked revisions 74028-74029,74038 via svnmerge
      
        ........
          r74028 | georg.brandl | 2009-07-16 15:24:48 -0400 (Thu, 16 Jul 2009) | 1 line
      
          #6482: simplify "except: raise" to "finally:".
        ........
          r74029 | georg.brandl | 2009-07-16 17:47:51 -0400 (Thu, 16 Jul 2009) | 1 line
      
          Revert r74028.
        ........
          r74038 | alexandre.vassalotti | 2009-07-17 02:10:06 -0400 (Fri, 17 Jul 2009) | 3 lines
      
          Double-quote the test cases for chflags() and lchflags()
          to ensure they don't get mangled.
        ........
      ................
        r74060 | alexandre.vassalotti | 2009-07-17 13:12:50 +0200 (Fr, 17 Jul 2009) | 17 lines
      
        Blocked revisions 73774,73812,73839 via svnmerge
      
        ........
          r73774 | benjamin.peterson | 2009-07-02 13:06:17 -0400 (Thu, 02 Jul 2009) | 1 line
      
          only order comparisons are removed in py3k #6119
        ........
          r73812 | benjamin.peterson | 2009-07-03 10:08:20 -0400 (Fri, 03 Jul 2009) | 1 line
      
          another cStringIO restriction
        ........
          r73839 | gregory.p.smith | 2009-07-04 04:42:10 -0400 (Sat, 04 Jul 2009) | 3 lines
      
          Merge r73838 from py3k branch.  Use the nondeprecated unittest method
          names.
        ........
      ................
        r74061 | alexandre.vassalotti | 2009-07-17 13:20:13 +0200 (Fr, 17 Jul 2009) | 8 lines
      
        Blocked revisions 73773 via svnmerge
      
        ........
          r73773 | benjamin.peterson | 2009-07-02 12:51:56 -0400 (Thu, 02 Jul 2009) | 1 line
      
          remove this test; a module level warning is enough
        ........
      ................
        r74064 | alexandre.vassalotti | 2009-07-17 14:49:05 +0200 (Fr, 17 Jul 2009) | 29 lines
      
        Blocked revisions 73819,73821-73822,73863,73877 via svnmerge
      
        ........
          r73819 | kristjan.jonsson | 2009-07-03 19:07:07 -0400 (Fri, 03 Jul 2009) | 2 lines
      
          http://bugs.python.org/issue6381
          some platforms may raise ENOTCONN if the stack has disconnected the socket on behalf of the peer.
        ........
          r73821 | kristjan.jonsson | 2009-07-03 19:26:02 -0400 (Fri, 03 Jul 2009) | 2 lines
      
          http://bugs.python.org/issue6267
          Incorrect exception handling for xmlrp client retry
        ........
          r73822 | kristjan.jonsson | 2009-07-03 19:29:50 -0400 (Fri, 03 Jul 2009) | 2 lines
      
          http://bugs.python.org/issue6267
          Incorrect exception handling for xmlrpc client retry
        ........
          r73863 | kristjan.jonsson | 2009-07-05 16:56:57 -0400 (Sun, 05 Jul 2009) | 2 lines
      
          http://bugs.python.org/issue6382
          close_request() (which can send a socket.shutdown()) must be called by the child process in a forking server.  The parent must merely close the socket handle.
        ........
          r73877 | kristjan.jonsson | 2009-07-07 05:01:34 -0400 (Tue, 07 Jul 2009) | 2 lines
      
          http://bugs.python.org/issue6382
          added the shutdown_request() which can perform shutdown before calling close.  This is needed for the ForkingMixIn because different close semantics are required for child and parent process.  shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request().  Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
        ........
      ................
        r74068 | alexandre.vassalotti | 2009-07-18 01:11:52 +0200 (Sa, 18 Jul 2009) | 2 lines
      
        Revert r74049.
      ................
        r74071 | alexandre.vassalotti | 2009-07-18 01:27:40 +0200 (Sa, 18 Jul 2009) | 12 lines
      
        Blocked revisions 74067,74069 via svnmerge
      
        ........
          r74067 | alexandre.vassalotti | 2009-07-17 19:09:02 -0400 (Fri, 17 Jul 2009) | 2 lines
      
          Revert r74048.
        ........
          r74069 | alexandre.vassalotti | 2009-07-17 19:17:48 -0400 (Fri, 17 Jul 2009) | 2 lines
      
          Regenerate configure script using autoconf 2.61.
        ........
      ................
        r74082 | mark.dickinson | 2009-07-18 17:19:43 +0200 (Sa, 18 Jul 2009) | 9 lines
      
        Blocked revisions 74080 via svnmerge
      
        ........
          r74080 | mark.dickinson | 2009-07-18 16:18:18 +0100 (Sat, 18 Jul 2009) | 3 lines
      
          Issue #6431:  Fix Fraction comparisons with unknown types, and with
          float infinities and nans.  Backport of r74078 from py3k.
        ........
      ................
        r74120 | benjamin.peterson | 2009-07-20 22:36:45 +0200 (Mo, 20 Jul 2009) | 8 lines
      
        Blocked revisions 74119 via svnmerge
      
        ........
          r74119 | benjamin.peterson | 2009-07-20 15:28:08 -0500 (Mon, 20 Jul 2009) | 2 lines
      
          the Slice in x[::] has to have step as None to help the interpreter
        ........
      ................
        r74125 | alexandre.vassalotti | 2009-07-21 01:59:41 +0200 (Di, 21 Jul 2009) | 2 lines
      
        Ignore the correct jinga directory.
      ................
        r74129 | alexandre.vassalotti | 2009-07-21 02:55:16 +0200 (Di, 21 Jul 2009) | 2 lines
      
        Revert r74125.
      ................
        r74174 | benjamin.peterson | 2009-07-22 18:36:58 +0200 (Mi, 22 Jul 2009) | 12 lines
      
        Blocked revisions 74152,74173 via svnmerge
      
        ........
          r74152 | benjamin.peterson | 2009-07-21 19:03:43 -0500 (Tue, 21 Jul 2009) | 1 line
      
          simplify
        ........
          r74173 | benjamin.peterson | 2009-07-22 11:34:37 -0500 (Wed, 22 Jul 2009) | 1 line
      
          revert r74152
        ........
      ................
        r74191 | amaury.forgeotdarc | 2009-07-24 00:34:27 +0200 (Fr, 24 Jul 2009) | 10 lines
      
        Blocked revisions 74189 via svnmerge
      
        ........
          r74189 | amaury.forgeotdarc | 2009-07-23 21:26:02 +0200 (jeu., 23 juil. 2009) | 4 lines
      
          #6553: crash in cPickle.load(), when given a StringIO with incomplete data.
      
          Will backport to 2.6, 3.x already fixed a similar issue with issue4298.
        ........
      ................
        r74195 | georg.brandl | 2009-07-24 22:13:37 +0200 (Fr, 24 Jul 2009) | 8 lines
      
        Blocked revisions 74194 via svnmerge
      
        ........
          r74194 | georg.brandl | 2009-07-24 22:09:46 +0200 (Fr, 24 Jul 2009) | 1 line
      
          #6564: fix section about the two raise syntaxes.
        ........
      ................
        r74221 | eric.smith | 2009-07-27 04:00:11 +0200 (Mo, 27 Jul 2009) | 8 lines
      
        Blocked revisions 74219 via svnmerge
      
        ........
          r74219 | eric.smith | 2009-07-26 21:58:25 -0400 (Sun, 26 Jul 2009) | 1 line
      
          Sync trunk and py3k versions of string formatting. Will manually merge into py3k.
        ........
      ................
        r74236 | mark.dickinson | 2009-07-28 18:46:53 +0200 (Di, 28 Jul 2009) | 8 lines
      
        Blocked revisions 74234 via svnmerge
      
        ........
          r74234 | mark.dickinson | 2009-07-28 17:45:13 +0100 (Tue, 28 Jul 2009) | 1 line
      
          Remove leading blank line from cmath.rst
        ........
      ................
        r74242 | mark.dickinson | 2009-07-28 22:36:23 +0200 (Di, 28 Jul 2009) | 10 lines
      
        Blocked revisions 74240 via svnmerge
      
        ........
          r74240 | mark.dickinson | 2009-07-28 21:35:03 +0100 (Tue, 28 Jul 2009) | 4 lines
      
          Issue #6561: '\d' regular expression should not match characters of
          category [No]; only those of category [Nd].  (Backport of r74237
          from py3k.)
        ........
      ................
        r74244 | amaury.forgeotdarc | 2009-07-28 23:32:43 +0200 (Di, 28 Jul 2009) | 8 lines
      
        Blocked revisions 74243 via svnmerge
      
        ........
          r74243 | amaury.forgeotdarc | 2009-07-28 22:47:55 +0200 (mar., 28 juil. 2009) | 2 lines
      
          "Fix" for the refleak report: the ABC classes are now in the _pyio module
        ........
      ................
        r74257 | georg.brandl | 2009-07-29 18:33:19 +0200 (Mi, 29 Jul 2009) | 8 lines
      
        Blocked revisions 74256 via svnmerge
      
        ........
          r74256 | georg.brandl | 2009-07-29 16:32:30 +0000 (Mi, 29 Jul 2009) | 1 line
      
          #6336: Add nb_divide.
        ........
      ................
        r74263 | alexandre.vassalotti | 2009-07-29 22:00:39 +0200 (Mi, 29 Jul 2009) | 13 lines
      
        Blocked revisions 74134,74147 via svnmerge
      
        ........
          r74134 | thomas.heller | 2009-07-21 02:27:14 -0400 (Tue, 21 Jul 2009) | 3 lines
      
          Issue #6493: Fix a ctypes problem setting bitfields more than 31 bits
          wide.
        ........
          r74147 | thomas.heller | 2009-07-21 15:04:02 -0400 (Tue, 21 Jul 2009) | 1 line
      
          Revert rev 74134, as it does not completely fixx issue #6493.
        ........
      ................
        r74283 | mark.dickinson | 2009-08-02 13:02:05 +0200 (So, 02 Aug 2009) | 10 lines
      
        Blocked revisions 74281 via svnmerge
      
        ........
          r74281 | mark.dickinson | 2009-08-02 11:59:36 +0100 (Sun, 02 Aug 2009) | 4 lines
      
          Issue #6595: Allow Decimal constructor to accept non-European decimal
          digits, as recommended by the specification.  (Backport of r74279 from
          py3k.)
        ........
      ................
      eb26ba25
    • Georg Brandl's avatar
      Merged revisions 74366 via svnmerge from · 8a038b28
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r74366 | georg.brandl | 2009-08-13 09:50:57 +0200 (Do, 13 Aug 2009) | 1 line
      
        #6126: fix pdb stepping and breakpoints by giving the executed code the correct filename; this used execfile() in 2.x which did this automatically.
      ........
      8a038b28
  2. 12 Agu, 2009 1 kayıt (commit)
  3. 06 Agu, 2009 2 kayıt (commit)