1. 26 Mar, 2008 9 commits
    • Christian Heimes's avatar
      Merged revisions 61954,61956-61957 via svnmerge from · d50279a5
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61954 | christian.heimes | 2008-03-26 23:20:26 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Surround p_flags access with #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD
      ........
        r61956 | christian.heimes | 2008-03-26 23:51:58 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Initialize PyCompilerFlags cf_flags with 0
      ........
        r61957 | christian.heimes | 2008-03-26 23:55:31 +0100 (Wed, 26 Mar 2008) | 1 line
      
        I forgot to svn add the future test
      ........
      d50279a5
    • Christian Heimes's avatar
      Merged revisions 61952-61953 via svnmerge from · 738a1fcd
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61952 | mark.dickinson | 2008-03-26 22:41:36 +0100 (Wed, 26 Mar 2008) | 2 lines
      
        Typo: "objects reference count" -> "object's reference count"
      ........
        r61953 | christian.heimes | 2008-03-26 23:01:37 +0100 (Wed, 26 Mar 2008) | 4 lines
      
        Patch #2477: Added from __future__ import unicode_literals
      
        The new PyParser_*Ex() functions are based on Neal's suggestion and initial patch. The new __future__ feature makes all '' and r'' unicode strings. b'' and br'' stay (byte) strings.
      ........
      738a1fcd
    • Amaury Forgeot d'Arc's avatar
      Correct Issue#1561: test_mailbox failed on Windows. · 05282905
      Amaury Forgeot d'Arc authored
      Open all text files with newline='', this is the only way to have consistent offsets.
      05282905
    • Christian Heimes's avatar
      Merged revisions... · 3e83fed0
      Christian Heimes authored
      Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,61935,61938,61943 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61913 | benjamin.peterson | 2008-03-25 22:14:42 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        Merged the ACKS from py3k
      ........
        r61915 | thomas.heller | 2008-03-25 22:18:39 +0100 (Tue, 25 Mar 2008) | 1 line
      
        Make _ctypes.c PY_SSIZE_T_CLEAN.
      ........
        r61916 | benjamin.peterson | 2008-03-25 22:55:50 +0100 (Tue, 25 Mar 2008) | 3 lines
      
        Opps! I merged the revisions, but forgot to add
        the header to ACKS
      ........
        r61918 | andrew.kuchling | 2008-03-26 01:16:50 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Minor docstring typos
      ........
        r61919 | andrew.kuchling | 2008-03-26 01:30:02 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Add various items
      ........
        r61922 | neal.norwitz | 2008-03-26 05:55:51 +0100 (Wed, 26 Mar 2008) | 6 lines
      
        Try to get this test to be less flaky.  It was failing sometimes because
        the connect would succeed before the timeout occurred.  Try using an
        address and port that hopefully doesn't exist to ensure we get no response.
        If this doesn't work, we can use a public address close to python.org
        and hopefully that address never gets taken.
      ........
        r61923 | jerry.seutter | 2008-03-26 06:03:03 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Changed test so it no longer runs as a side effect of importing.
      ........
        r61924 | neal.norwitz | 2008-03-26 06:19:41 +0100 (Wed, 26 Mar 2008) | 5 lines
      
        Ensure that the mailbox is closed to prevent problems on Windows with removing
        an open file.  This doesn't seem to be a problem in 2.6, but that appears
        to be somewhat accidental (specific to reference counting).  When this
        gets merged to 3.0, it will make the 3.0 code simpler.
      ........
        r61925 | jerry.seutter | 2008-03-26 06:32:51 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Changed test so it no longer runs as a side effect of importing.
      ........
        r61926 | jerry.seutter | 2008-03-26 06:58:14 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Changed test so it no longer runs as a side effect of importing.
      ........
        r61928 | georg.brandl | 2008-03-26 10:04:36 +0100 (Wed, 26 Mar 2008) | 2 lines
      
        Add Josiah.
      ........
        r61929 | georg.brandl | 2008-03-26 10:32:46 +0100 (Wed, 26 Mar 2008) | 2 lines
      
        Add an example for an RFC 822 continuation.
      ........
        r61931 | benjamin.peterson | 2008-03-26 12:57:47 +0100 (Wed, 26 Mar 2008) | 2 lines
      
        Added help options to PDB
      ........
        r61935 | christian.heimes | 2008-03-26 13:32:49 +0100 (Wed, 26 Mar 2008) | 1 line
      
        Prepare integration of bytearray backport branch
      ........
        r61938 | christian.heimes | 2008-03-26 13:50:43 +0100 (Wed, 26 Mar 2008) | 3 lines
      
        Removed merge tracking for "svnmerge" for
        svn+ssh://pythondev@svn.python.org/python/branches/trunk-bytearray
      ........
        r61943 | georg.brandl | 2008-03-26 13:57:47 +0100 (Wed, 26 Mar 2008) | 2 lines
      
        Fix and simplify error handling, silencing a compiler warning.
      ........
      3e83fed0
    • Christian Heimes's avatar
      Block correct revision · e6b90eee
      Christian Heimes authored
      e6b90eee
    • Christian Heimes's avatar
      e742171e
    • Christian Heimes's avatar
      Merged revisions 61892,61900 via svnmerge from · c2da8bd7
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61892 | mark.dickinson | 2008-03-25 15:33:23 +0100 (Tue, 25 Mar 2008) | 3 lines
      
        Issue #2478: Decimal(sqrt(0)) failed when the decimal context
        was not explicitly supplied.
      ........
        r61900 | georg.brandl | 2008-03-25 18:36:43 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        Add Benjamin.
      ........
      c2da8bd7
    • Georg Brandl's avatar
      eed86409
    • Neal Norwitz's avatar
      Get the test to pass on space Ubuntu/Debian and ppc. It was failing · 885f6524
      Neal Norwitz authored
      to decode 'Journ\xc3\xa9es Python' as ASCII.
      885f6524
  2. 25 Mar, 2008 11 commits
    • Benjamin Peterson's avatar
      Merged the ACKS from 2.6 · 83ffe30e
      Benjamin Peterson authored
      83ffe30e
    • Mark Dickinson's avatar
      block r61904 · 9751835f
      Mark Dickinson authored
      9751835f
    • Georg Brandl's avatar
      Fix duplicated paragraph. · 3e687a43
      Georg Brandl authored
      3e687a43
    • Christian Heimes's avatar
      Merged revisions... · 892519fb
      Christian Heimes authored
      Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61834 | raymond.hettinger | 2008-03-24 07:07:49 +0100 (Mon, 24 Mar 2008) | 1 line
      
        Tighten documentation for Random.triangular.
      ........
        r61841 | raymond.hettinger | 2008-03-24 09:17:39 +0100 (Mon, 24 Mar 2008) | 1 line
      
        Issue 2460: Make Ellipsis objects copyable.
      ........
        r61842 | georg.brandl | 2008-03-24 10:34:34 +0100 (Mon, 24 Mar 2008) | 2 lines
      
        #1700821: add a note to audioop docs about signedness of sample formats.
      ........
        r61851 | christian.heimes | 2008-03-24 20:57:42 +0100 (Mon, 24 Mar 2008) | 1 line
      
        Added quick hack for bzr
      ........
        r61852 | christian.heimes | 2008-03-24 20:58:17 +0100 (Mon, 24 Mar 2008) | 1 line
      
        Added quick hack for bzr
      ........
        r61853 | amaury.forgeotdarc | 2008-03-24 22:04:10 +0100 (Mon, 24 Mar 2008) | 4 lines
      
        Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4 builds.
      
        All buildbots compile with UCS2...
      ........
        r61863 | neal.norwitz | 2008-03-25 05:17:38 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        Fix a bunch of UnboundLocalErrors when the tests fail.
      ........
        r61864 | neal.norwitz | 2008-03-25 05:18:18 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        Try to fix a bunch of compiler warnings on Win64.
      ........
        r61869 | neal.norwitz | 2008-03-25 07:35:10 +0100 (Tue, 25 Mar 2008) | 3 lines
      
        Don't try to close a non-open file.
        Don't let file removal cause the test to fail.
      ........
        r61870 | neal.norwitz | 2008-03-25 08:00:39 +0100 (Tue, 25 Mar 2008) | 7 lines
      
        Try to get this test to be more stable:
         * disable gc during the test run because we are spawning objects and there
           was an exception when calling Popen.__del__
         * Always set an alarm handler so the process doesn't exit if the test fails
           (should probably add assertions on the value of hndl_called in more places)
         * Using a negative time causes Linux to treat it as zero, so disable that test.
      ........
        r61874 | gregory.p.smith | 2008-03-25 08:31:28 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        Use a 32-bit unsigned int here, a long is not needed.
      ........
        r61889 | georg.brandl | 2008-03-25 12:59:51 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        Move declarations to block start.
      ........
      892519fb
    • Christian Heimes's avatar
      d947a297
    • Georg Brandl's avatar
      80297269
    • Gregory P. Smith's avatar
    • Gregory P. Smith's avatar
    • Georg Brandl's avatar
      Blocked revisions 61871 via svnmerge · 54c4134a
      Georg Brandl authored
      ........
        r61871 | georg.brandl | 2008-03-25 08:20:15 +0100 (Tue, 25 Mar 2008) | 2 lines
      
        #868845: document <...> reprs.
      ........
      54c4134a
    • Georg Brandl's avatar
      #868845: document <...> reprs. · 3ac78210
      Georg Brandl authored
      3ac78210
    • Gregory P. Smith's avatar
      61867 not needed in 3k · b972262c
      Gregory P. Smith authored
      b972262c
  3. 24 Mar, 2008 11 commits
  4. 23 Mar, 2008 3 commits
    • Christian Heimes's avatar
      Merged revisions... · 848e1fe0
      Christian Heimes authored
      Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ................
        r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sat, 22 Mar 2008) | 49 lines
      
        Merged revisions 61602-61723 via svnmerge from
        svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
      
        ........
          r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
      
          Added fixer for implicit local imports.  See #2414.
        ........
          r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
      
          Added a class for tests which should not run if a particular import is found.
        ........
          r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
      
          Two more relative import fixes in pgen2.
        ........
          r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
      
          Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function.  2to3 gets upset, though, so the tests have been commented out.
        ........
          r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 M?\195?\164r 2008) | 3 lines
      
          Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
        ........
          r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
      
          SVN is happier when you add the files you create... -_-'
        ........
          r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 M?\195?\164r 2008) | 1 line
      
          Added an explicit sort order to fixers -- fixes problems like #2427
        ........
          r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 M?\195?\164r 2008) | 3 lines
      
          Fixes #2428 -- comments are no longer eatten by __future__ fixer.
        ........
          r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 M?\195?\164r 2008) | 1 line
      
          Added 2to3 node pretty-printer
        ........
          r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 M?\195?\164r 2008) | 1 line
      
          Made node printing a little bit prettier
        ........
          r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 M?\195?\164r 2008) | 2 lines
      
          Fix whitespace.
        ........
      ................
        r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Install lib2to3.
      ................
        r61731 | facundo.batista | 2008-03-22 03:45:37 +0100 (Sat, 22 Mar 2008) | 4 lines
      
      
        Small fix that complicated the test actually when that
        test failed.
      ................
        r61732 | alexandre.vassalotti | 2008-03-22 05:08:44 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Added warning for the removal of 'hotshot' in Py3k.
      ................
        r61733 | georg.brandl | 2008-03-22 11:07:29 +0100 (Sat, 22 Mar 2008) | 4 lines
      
        #1918: document that weak references *to* an object are
        cleared before the object's __del__ is called, to ensure that the weak
        reference callback (if any) finds the object healthy.
      ................
        r61734 | georg.brandl | 2008-03-22 11:56:23 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Activate the Sphinx doctest extension and convert howto/functional to use it.
      ................
        r61735 | georg.brandl | 2008-03-22 11:58:38 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Allow giving source names on the cmdline.
      ................
        r61737 | georg.brandl | 2008-03-22 12:00:48 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Fixup this HOWTO's doctest blocks so that they can be run with sphinx' doctest builder.
      ................
        r61739 | georg.brandl | 2008-03-22 12:47:10 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Test decimal.rst doctests as far as possible with sphinx doctest.
      ................
        r61741 | georg.brandl | 2008-03-22 13:04:26 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Make doctests in re docs usable with sphinx' doctest.
      ................
        r61743 | georg.brandl | 2008-03-22 13:59:37 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Make more doctests in pprint docs testable.
      ................
        r61744 | georg.brandl | 2008-03-22 14:07:06 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        No need to specify explicit "doctest_block" anymore.
      ................
        r61753 | georg.brandl | 2008-03-22 21:08:43 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Fix-up syntax problems.
      ................
        r61761 | georg.brandl | 2008-03-22 22:06:20 +0100 (Sat, 22 Mar 2008) | 4 lines
      
        Make collections' doctests executable.
      
        (The <BLANKLINE>s will be stripped from presentation output.)
      ................
        r61765 | georg.brandl | 2008-03-22 22:21:57 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Test doctests in datetime docs.
      ................
        r61766 | georg.brandl | 2008-03-22 22:26:44 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Test doctests in operator docs.
      ................
        r61767 | georg.brandl | 2008-03-22 22:38:33 +0100 (Sat, 22 Mar 2008) | 2 lines
      
        Enable doctests in functions.rst.  Already found two errors :)
      ................
        r61769 | georg.brandl | 2008-03-22 23:04:10 +0100 (Sat, 22 Mar 2008) | 3 lines
      
        Enable doctest running for several other documents.
        We have now over 640 doctests that are run with "make doctest".
      ................
        r61773 | raymond.hettinger | 2008-03-23 01:55:46 +0100 (Sun, 23 Mar 2008) | 1 line
      
        Simplify demo code.
      ................
        r61776 | neal.norwitz | 2008-03-23 04:43:33 +0100 (Sun, 23 Mar 2008) | 7 lines
      
        Try to make this test a little more robust and not fail with:
          timeout (10.0025) is more than 2 seconds more than expected (0.001)
      
        I'm assuming this problem is caused by DNS lookup.  This change
        does a DNS lookup of the hostname before trying to connect, so the time
        is not included.
      ................
        r61777 | neal.norwitz | 2008-03-23 05:08:30 +0100 (Sun, 23 Mar 2008) | 1 line
      
        Speed up the test by avoiding socket timeouts.
      ................
        r61778 | neal.norwitz | 2008-03-23 05:43:09 +0100 (Sun, 23 Mar 2008) | 1 line
      
        Skip the epoll test if epoll() does not work
      ................
        r61780 | neal.norwitz | 2008-03-23 06:47:20 +0100 (Sun, 23 Mar 2008) | 1 line
      
        Suppress failure (to avoid a flaky test) if we cannot connect to svn.python.org
      ................
        r61781 | neal.norwitz | 2008-03-23 07:13:25 +0100 (Sun, 23 Mar 2008) | 4 lines
      
        Move itertools before future_builtins since the latter depends on the former.
        From a clean build importing future_builtins would fail since itertools
        wasn't built yet.
      ................
        r61782 | neal.norwitz | 2008-03-23 07:16:04 +0100 (Sun, 23 Mar 2008) | 1 line
      
        Try to prevent the alarm going off early in tearDown
      ................
        r61783 | neal.norwitz | 2008-03-23 07:19:57 +0100 (Sun, 23 Mar 2008) | 4 lines
      
        Remove compiler warnings (on Alpha at least) about using chars as
        array subscripts.  Using chars are dangerous b/c they are signed
        on some platforms and unsigned on others.
      ................
        r61788 | georg.brandl | 2008-03-23 09:05:30 +0100 (Sun, 23 Mar 2008) | 2 lines
      
        Make the doctests presentation-friendlier.
      ................
        r61793 | amaury.forgeotdarc | 2008-03-23 10:55:29 +0100 (Sun, 23 Mar 2008) | 4 lines
      
        #1477: ur'\U0010FFFF' raised in narrow unicode builds.
        Corrected the raw-unicode-escape codec to use UTF-16 surrogates in
        this case, just like the unicode-escape codec.
      ................
        r61796 | raymond.hettinger | 2008-03-23 14:32:32 +0100 (Sun, 23 Mar 2008) | 1 line
      
        Issue 1681432:  Add triangular distribution the random module.
      ................
        r61807 | raymond.hettinger | 2008-03-23 20:37:53 +0100 (Sun, 23 Mar 2008) | 4 lines
      
        Adopt Nick's suggestion for useful default arguments.
        Clean-up floating point issues by adding true division and float constants.
      ................
        r61813 | gregory.p.smith | 2008-03-23 22:04:43 +0100 (Sun, 23 Mar 2008) | 6 lines
      
        Fix gzip to deal with CRC's being signed values in Python 2.x properly and to
        read 32bit values as unsigned to start with rather than applying signedness
        fixups allover the place afterwards.
      
        This hopefully fixes the test_tarfile failure on the alpha/tru64 buildbot.
      ................
      848e1fe0
    • Gregory P. Smith's avatar
      588c4f57
    • Christian Heimes's avatar
      Fixed parent class init · 11f265c2
      Christian Heimes authored
      11f265c2
  5. 22 Mar, 2008 6 commits
    • Martin v. Löwis's avatar
      3d530eec
    • Martin v. Löwis's avatar
      Properly terminate file name. · 948af008
      Martin v. Löwis authored
      948af008
    • Christian Heimes's avatar
      Replace spaces by tabs, added · df2638df
      Christian Heimes authored
      df2638df
    • Martin v. Löwis's avatar
      unicode->str. · ed43f672
      Martin v. Löwis authored
      ed43f672
    • Christian Heimes's avatar
      Merged revisions... · 71abaa93
      Christian Heimes authored
      Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,61714-61716,61718-61722 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61687 | jeffrey.yasskin | 2008-03-21 06:02:44 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Speed up test_signal from ~24s to 4s by avoiding nearly all of the sleep calls.
      ........
        r61688 | jeffrey.yasskin | 2008-03-21 06:51:37 +0100 (Fri, 21 Mar 2008) | 5 lines
      
        Try to fix test_signal breakages on Linux due to r61687. It appears that at
        least two of the linux build bots aren't leaving zombie processes around for
        os.waitpid to wait for, causing ECHILD errors. This would be a symptom of a bug
        somewhere, but probably not in signal itself.
      ........
        r61696 | georg.brandl | 2008-03-21 15:32:33 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Mark the descitems in the tutorial as "noindex" so that :meth: cross-refs don't link to them.
      ........
        r61700 | georg.brandl | 2008-03-21 18:19:29 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Fix markup.
      ........
        r61704 | jeffrey.yasskin | 2008-03-21 19:25:06 +0100 (Fri, 21 Mar 2008) | 3 lines
      
        Try to fix test_signal on FreeBSD. I'm assuming that os.kill is failing to
        raise a signal, but switching to subprocess makes the code cleaner anyway.
      ........
        r61705 | jeffrey.yasskin | 2008-03-21 19:48:04 +0100 (Fri, 21 Mar 2008) | 7 lines
      
        Speed test_threading up from 14s to .5s, and avoid a deadlock on certain
        failures. The test for enumerate-after-join is now a little less rigorous, but
        the bug it references says the error happened in the first couple iterations,
        so 100 iterations should still be enough.
      
        cProfile was useful for identifying the slow tests here.
      ........
        r61707 | georg.brandl | 2008-03-21 20:14:38 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Fix a code block in __future__ docs.
      ........
        r61708 | georg.brandl | 2008-03-21 20:20:21 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Add docs for __func__ and __self__ on methods.
      ........
        r61709 | georg.brandl | 2008-03-21 20:37:57 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Add docs for print_function and future_builtins. Fixes #2442.
      ........
        r61711 | georg.brandl | 2008-03-21 20:54:00 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        #2136: allow single quotes in realm spec.
      ........
        r61712 | georg.brandl | 2008-03-21 21:01:51 +0100 (Fri, 21 Mar 2008) | 3 lines
      
        Issue #2432: give DictReader the dialect and line_num attributes
        advertised in the docs.
      ........
        r61714 | georg.brandl | 2008-03-21 21:11:46 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        #2358: add py3k warning to sys.exc_clear().
      ........
        r61715 | georg.brandl | 2008-03-21 21:21:46 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich.
      ........
        r61716 | georg.brandl | 2008-03-21 21:38:24 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        #2348: add py3k warning for file.softspace.
      ........
        r61718 | georg.brandl | 2008-03-21 21:55:20 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        #2160: document PyImport_GetImporter.
      ........
        r61719 | georg.brandl | 2008-03-21 21:55:51 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Update doc ACKS.
      ........
        r61720 | steven.bethard | 2008-03-21 22:01:18 +0100 (Fri, 21 Mar 2008) | 1 line
      
        Replace hack in regrtest.py with use of sys.py3kwarning.
      ........
        r61721 | georg.brandl | 2008-03-21 22:05:03 +0100 (Fri, 21 Mar 2008) | 2 lines
      
        Add missing versionadded tag.
      ........
        r61722 | christian.heimes | 2008-03-22 00:49:44 +0100 (Sat, 22 Mar 2008) | 3 lines
      
        Applied patch #1657 epoll and kqueue wrappers for the select module
        The patch adds wrappers for the Linux epoll syscalls and the BSD kqueue syscalls. Thanks to Thomas Herve and the Twisted people for their support and help.
        TODO: Finish documentation documentation
      ........
      71abaa93
    • Martin v. Löwis's avatar
      Add build_py_2to3. · f896cb69
      Martin v. Löwis authored
      f896cb69