1. 28 Agu, 2010 2 kayıt (commit)
  2. 26 Agu, 2010 1 kayıt (commit)
  3. 25 Agu, 2010 2 kayıt (commit)
  4. 24 Agu, 2010 1 kayıt (commit)
  5. 23 Agu, 2010 2 kayıt (commit)
  6. 22 Agu, 2010 2 kayıt (commit)
  7. 21 Agu, 2010 2 kayıt (commit)
  8. 20 Agu, 2010 1 kayıt (commit)
  9. 19 Agu, 2010 6 kayıt (commit)
  10. 18 Agu, 2010 2 kayıt (commit)
  11. 17 Agu, 2010 6 kayıt (commit)
  12. 16 Agu, 2010 4 kayıt (commit)
    • Florent Xicluna's avatar
      Merged revisions 81214,82302,82465,83090-83091,84097,84099 via svnmerge from · 2760a66b
      Florent Xicluna yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r81214 | brett.cannon | 2010-05-16 00:20:16 +0200 (dim., 16 mai 2010) | 2 lines
      
        A test was not guaranteeing cleanup in the face of an exception.
      ................
        r82302 | benjamin.peterson | 2010-06-28 00:37:28 +0200 (lun., 28 juin 2010) | 15 lines
      
        Merged revisions 81380 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r81380 | brett.cannon | 2010-05-20 13:37:55 -0500 (Thu, 20 May 2010) | 8 lines
      
          Turned out that if you used explicit relative import syntax
          (e.g. from .os import sep) and it failed, import would still try the implicit
          relative import semantics of an absolute import (from os import sep). That's
          not right, so when level is negative, only do explicit relative import
          semantics.
      
          Fixes issue #7902. Thanks to Meador Inge for the patch.
        ........
      ................
        r82465 | brett.cannon | 2010-07-03 03:32:48 +0200 (sam., 03 juil. 2010) | 3 lines
      
        Make test_import a little bit more robust for cleaning up after itself in the
        face of a failure.
      ................
        r83090 | brett.cannon | 2010-07-23 16:03:16 +0200 (ven., 23 juil. 2010) | 4 lines
      
        Explicitly test relative imports by reusing importlib tests.
      
        Closes issue 8392. Thanks Virgil Dupras for the initial patch.
      ................
        r83091 | brett.cannon | 2010-07-23 16:45:19 +0200 (ven., 23 juil. 2010) | 1 line
      
        Stop shadowing a test class.
      ................
        r84097 | florent.xicluna | 2010-08-16 20:41:19 +0200 (lun., 16 août 2010) | 1 line
      
        Use test.support and unittest features.  Fix duplicated test (bad merge in r79033).  Fix comment for issue #7902.
      ................
        r84099 | florent.xicluna | 2010-08-16 21:03:05 +0200 (lun., 16 août 2010) | 1 line
      
        I get it wrong in r84097: s/relative/absolute/
      ................
      2760a66b
    • Alexander Belopolsky's avatar
      Merged revisions 84106 via svnmerge from · 102594f7
      Alexander Belopolsky yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r84106 | alexander.belopolsky | 2010-08-16 16:17:07 -0400 (Mon, 16 Aug 2010) | 1 line
      
        Issue #8983: Corrected docstrings.
      ........
      102594f7
    • Alexander Belopolsky's avatar
      Merged revisions 84098 via svnmerge from · 7a9bdbc1
      Alexander Belopolsky yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r84098 | alexander.belopolsky | 2010-08-16 14:55:46 -0400 (Mon, 16 Aug 2010) | 4 lines
      
        Issue #665761: functools.reduce() will no longer mask exceptions other
        than TypeError raised by the iterator argument.  Also added a test to
        check that zip() already behaves similarly.
      ........
      7a9bdbc1
    • Giampaolo Rodolà's avatar
      Merged revisions 84089 via svnmerge from · 5b37ce64
      Giampaolo Rodolà yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r84089 | giampaolo.rodola | 2010-08-16 07:08:11 +0200 (lun, 16 ago 2010) | 1 line
      
        fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto'
      ........
      5b37ce64
  13. 15 Agu, 2010 6 kayıt (commit)
  14. 14 Agu, 2010 3 kayıt (commit)
    • Éric Araujo's avatar
      Merged revisions 84050 via svnmerge from · eb603e0d
      Éric Araujo yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r84050 | eric.araujo | 2010-08-15 01:44:13 +0200 (dim., 15 août 2010) | 1 line
      
        Fix typo
      ........
      eb603e0d
    • Florent Xicluna's avatar
      99e472e8
    • Florent Xicluna's avatar
      Blocked revisions 79380,83182,83859,83886-83887,83894-83895 via svnmerge · 16c16609
      Florent Xicluna yazdı
      ........
        r79380 | florent.xicluna | 2010-03-24 18:37:49 +0100 (mer., 24 mars 2010) | 2 lines
      
        Revert improper merge in test_inspect (r79251).
      ........
        r83182 | florent.xicluna | 2010-07-27 23:20:15 +0200 (mar., 27 juil. 2010) | 3 lines
      
        Issue #4770: Restrict binascii module to accept only bytes (as specified).
        And fix the email package to encode to ASCII instead of ``raw-unicode-escape`` before ASCII-to-binary decoding.
      ........
        r83859 | florent.xicluna | 2010-08-09 00:07:16 +0200 (lun., 09 août 2010) | 2 lines
      
        Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array.
      ........
        r83886 | florent.xicluna | 2010-08-09 14:24:20 +0200 (lun., 09 août 2010) | 2 lines
      
        Clean up syntax for some scripts.
      ........
        r83887 | florent.xicluna | 2010-08-09 14:26:44 +0200 (lun., 09 août 2010) | 1 line
      
        Fix ``Tools/scripts/checkpyc.py`` after PEP 3147.
      ........
        r83894 | florent.xicluna | 2010-08-09 18:56:43 +0200 (lun., 09 août 2010) | 21 lines
      
        Merged manually from 2.7 branch to 3.x trunk.
      
          ------------------------------------------------------------------------
          r80411 | florent.xicluna | 2010-04-23 19:59:10 +0200 (ven. 23 avril 2010) | 2 lignes
      
          Remove ImportWarnings filters.  They become obsolete after r79310, issue #8205.
          ------------------------------------------------------------------------
          r80412 | florent.xicluna | 2010-04-23 20:10:12 +0200 (ven. 23 avril 2010) | 2 lignes
      
          Fix the "regrtest -s" switch.
          ------------------------------------------------------------------------
          r81140 | florent.xicluna | 2010-05-13 19:05:29 +0200 (jeu. 13 mai 2010) | 3 lignes
      
          Add sensible information about the OS X platform to diagnose issue #8423:
          test_pep277 fails on "x86 Tiger" buildbot but not on "PPC Tiger".
          ------------------------------------------------------------------------
          r81141 | florent.xicluna | 2010-05-13 20:16:06 +0200 (jeu. 13 mai 2010) | 2 lignes
      
          Revert the additional OS X information (r81140).  Keep the endianness information.
          ------------------------------------------------------------------------
      ........
        r83895 | florent.xicluna | 2010-08-09 19:18:05 +0200 (lun., 09 août 2010) | 20 lines
      
        Merged manually from 2.7 branch to 3.x trunk.
      
          ------------------------------------------------------------------------
          r81149 | florent.xicluna | 2010-05-13 23:40:01 +0200 (jeu. 13 mai 2010) | 2 lignes
      
          Better test skipping, with message in the log.
          ------------------------------------------------------------------------
          r81150 | florent.xicluna | 2010-05-13 23:41:05 +0200 (jeu. 13 mai 2010) | 2 lignes
      
          Improve test feedback to troubleshoot issue #8423 on OS X.
          ------------------------------------------------------------------------
          r81151 | florent.xicluna | 2010-05-14 01:46:48 +0200 (ven. 14 mai 2010) | 2 lignes
      
          Revert changeset r81150 which helped diagnose issue #8423 on some OS X buildbot.
          ------------------------------------------------------------------------
          r82056 | florent.xicluna | 2010-06-17 22:30:56 +0200 (jeu. 17 juin 2010) | 2 lignes
      
          Add few words about test.test_genericpath.CommonTest
          ------------------------------------------------------------------------
      ........
      16c16609