1. 01 Sep, 2008 11 commits
  2. 31 Aug, 2008 4 commits
  3. 30 Aug, 2008 3 commits
  4. 29 Aug, 2008 3 commits
  5. 28 Aug, 2008 3 commits
  6. 27 Aug, 2008 2 commits
  7. 26 Aug, 2008 5 commits
    • Antoine Pitrou's avatar
      Blocked revisions 66043 via svnmerge · f4ff4702
      Antoine Pitrou authored
      ........
        r66043 | antoine.pitrou | 2008-08-27 00:42:08 +0200 (mer., 27 août 2008) | 11 lines
      
        Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to
        match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__
        mechanism. In the process, fix a bug where isinstance() and issubclass(),
        when given a tuple of classes as second argument, were looking up
        __instancecheck__ / __subclasscheck__ on the tuple rather than on each
        type object.
      
        Reviewed by Benjamin Peterson and Raymond Hettinger.
      ........
      f4ff4702
    • Antoine Pitrou's avatar
      Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to · ec569b79
      Antoine Pitrou authored
      match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__
      mechanism. In the process, fix a bug where isinstance() and issubclass(),
      when given a tuple of classes as second argument, were looking up
      __instancecheck__ / __subclasscheck__ on the tuple rather than on each
      type object.
      
      Reviewed by Benjamin Peterson and Raymond Hettinger.
      ec569b79
    • Antoine Pitrou's avatar
      #3663: extra DECREF on syntax errors. · e2dffc0a
      Antoine Pitrou authored
      Patch by Amaury Forgeot d'Arc, reviewed by Benjamin Peterson.
      e2dffc0a
    • Benjamin Peterson's avatar
      Blocked revisions 66039 via svnmerge · 2b9e0400
      Benjamin Peterson authored
      ........
        r66039 | benjamin.peterson | 2008-08-26 12:08:40 -0500 (Tue, 26 Aug 2008) | 1 line
      
        sort of backport 66038 by aliasing PyObject_Bytes to PyObject_Str
      ........
      2b9e0400
    • Benjamin Peterson's avatar
      make bytes(o) respect __bytes__ #2415 · c15a0733
      Benjamin Peterson authored
      This adds two new C-API functions: PyObject_Bytes and PyBytes_FromObject.
      
      Reviewer: Barry
      c15a0733
  8. 25 Aug, 2008 5 commits
    • Benjamin Peterson's avatar
      Merged revisions... · a786b026
      Benjamin Peterson authored
      Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,66020 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r65910 | benjamin.peterson | 2008-08-20 09:07:59 -0500 (Wed, 20 Aug 2008) | 1 line
      
        fix up the multiprocessing docs a little
      ........
        r65977 | christian.heimes | 2008-08-22 14:47:25 -0500 (Fri, 22 Aug 2008) | 3 lines
      
        Silenced compiler warning
        Objects/stringlib/find.h:97: warning: 'stringlib_contains_obj' defined but not used
        Reviewed by Benjamin Peterson
      ........
        r65980 | christian.heimes | 2008-08-22 15:10:27 -0500 (Fri, 22 Aug 2008) | 3 lines
      
        Fixed two format strings in the _collections module. For example
        Modules/_collectionsmodule.c:674: warning: format '%i' expects type 'int', but argument 2 has type 'Py_ssize_t'
        Reviewed by Benjamin Peterson
      ........
        r65984 | christian.heimes | 2008-08-22 16:23:47 -0500 (Fri, 22 Aug 2008) | 1 line
      
        d is the correct format string
      ........
        r65986 | mark.hammond | 2008-08-22 19:59:14 -0500 (Fri, 22 Aug 2008) | 2 lines
      
        Fix bug 3625: test issues on 64bit windows. r=pitrou
      ........
        r66000 | benjamin.peterson | 2008-08-23 15:27:43 -0500 (Sat, 23 Aug 2008) | 5 lines
      
        #3643 add a few more checks to _testcapi to prevent segfaults
      
        Author: Victor Stinner
        Reviewer: Benjamin Peterson
      ........
        r66011 | neal.norwitz | 2008-08-24 12:27:43 -0500 (Sun, 24 Aug 2008) | 1 line
      
        Ignore a couple more tests that report leaks inconsistently.
      ........
        r66012 | neal.norwitz | 2008-08-24 12:29:53 -0500 (Sun, 24 Aug 2008) | 1 line
      
        Use the actual blacklist of leaky tests
      ........
        r66014 | georg.brandl | 2008-08-24 13:11:07 -0500 (Sun, 24 Aug 2008) | 2 lines
      
        #3654: fix duplicate test method name. Review by Benjamin P.
      ........
        r66017 | benjamin.peterson | 2008-08-24 16:55:03 -0500 (Sun, 24 Aug 2008) | 1 line
      
        remove note about unimplemented feature
      ........
        r66020 | brett.cannon | 2008-08-24 18:15:19 -0500 (Sun, 24 Aug 2008) | 1 line
      
        Clarify that some attributes/methods are listed somewhat separately because they are not part of the threading API.
      ........
      a786b026
    • Neal Norwitz's avatar
      Merged revisions 66028 via svnmerge from · 25329671
      Neal Norwitz authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r66028 | neal.norwitz | 2008-08-24 20:52:40 -0700 (Sun, 24 Aug 2008) | 1 line
      
        Try to reduce the flakiness of this test
      ........
      25329671
    • Neal Norwitz's avatar
      Merged revisions 66026 via svnmerge from · ec105ad4
      Neal Norwitz authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r66026 | neal.norwitz | 2008-08-24 20:03:25 -0700 (Sun, 24 Aug 2008) | 6 lines
      
        Use bytes as return type from recv_bytes() methods.  Not sure why this only
        affects some buildbots.
      
        R=Brett
        TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
      ........
      ec105ad4
    • Neal Norwitz's avatar
      Merged revisions 66023 via svnmerge from · 5d6415ee
      Neal Norwitz authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r66023 | neal.norwitz | 2008-08-24 18:50:24 -0700 (Sun, 24 Aug 2008) | 6 lines
      
        Fix problem reported by pychecker where AuthenticationError wasn't imported.
        Add some test coverage to this code.  More tests should be added (TODO added).
      
        R=Brett
        TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
      ........
      5d6415ee
    • Neal Norwitz's avatar
      Try to fix the sporadic problems on the Solaris buildbot with removing · c34177cc
      Neal Norwitz authored
      the directories/files.
      
      R=Brett
      TESTED=./python -E -tt ./Lib/test/regrtest.py test_posix
      c34177cc
  9. 24 Aug, 2008 4 commits