1. 20 Jan, 2009 3 commits
  2. 19 Jan, 2009 9 commits
  3. 18 Jan, 2009 22 commits
  4. 17 Jan, 2009 6 commits
    • Benjamin Peterson's avatar
      fix compiler warning · b4ddfa41
      Benjamin Peterson authored
      b4ddfa41
    • Benjamin Peterson's avatar
      Merged revisions 68460 via svnmerge from · e5bf3839
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68460 | kristjan.jonsson | 2009-01-09 14:31:26 -0600 (Fri, 09 Jan 2009) | 1 line
      
        Issue 4293:  Make Py_AddPendingCall() thread safe
      ........
      e5bf3839
    • Benjamin Peterson's avatar
      I'm just going to assume that all of these revisions don't need to be merge,... · 92d0a6a5
      Benjamin Peterson authored
      I'm just going to assume that all of these revisions don't need to be merge, since it's not indicated:
      
      Blocked revisions 68559,68562,68565-68567,68569,68603-68605 via svnmerge
      
      ........
        r68559 | raymond.hettinger | 2009-01-12 16:58:41 -0600 (Mon, 12 Jan 2009) | 1 line
      
        Issue 1696199: Add collections.Counter().
      ........
        r68562 | raymond.hettinger | 2009-01-12 19:05:03 -0600 (Mon, 12 Jan 2009) | 7 lines
      
        Simplify Counter() API.  Replace items keyword argument
        with a mapping.  Makes Counter() idempotent, makes update()
        API the same as Counter.__init__(), makes a more readable
        repr, makes the API more dict-like, and allows Steven
        Bethard's update() example to work.
      ........
        r68565 | raymond.hettinger | 2009-01-12 21:49:43 -0600 (Mon, 12 Jan 2009) | 1 line
      
        Minor documentation tweaks and simpler update() example.
      ........
        r68566 | raymond.hettinger | 2009-01-12 22:13:53 -0600 (Mon, 12 Jan 2009) | 1 line
      
        Fixup and simplify docstrings and doctests.
      ........
        r68567 | raymond.hettinger | 2009-01-12 22:50:35 -0600 (Mon, 12 Jan 2009) | 1 line
      
        Speed-up __repr__.  Eliminate duplicate tests.  Use a from-irmport.
      ........
        r68569 | raymond.hettinger | 2009-01-13 02:38:14 -0600 (Tue, 13 Jan 2009) | 7 lines
      
        Add table of idioms/patterns for using Counter objects.
        Improve the appearance and flow of the References section -- it used
        to have a box around it that wasn't distinct from the preceding code
        boxes and it had a weird bolding pattern and hanging indents that
        made the section disproportionately large.
      ........
        r68603 | raymond.hettinger | 2009-01-13 18:15:21 -0600 (Tue, 13 Jan 2009) | 1 line
      
        Minor doc tweaks.
      ........
        r68604 | raymond.hettinger | 2009-01-13 19:15:06 -0600 (Tue, 13 Jan 2009) | 1 line
      
        Add tests for __init__() and update() with no args.
      ........
        r68605 | raymond.hettinger | 2009-01-13 19:39:51 -0600 (Tue, 13 Jan 2009) | 1 line
      
        Fix-up indentation of sample code blocks for namedtuple mthod definitions.
      ........
      92d0a6a5
    • Benjamin Peterson's avatar
      Merged revisions 68676 via svnmerge from · c4656004
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68676 | benjamin.peterson | 2009-01-17 16:27:54 -0600 (Sat, 17 Jan 2009) | 1 line
      
        fix inspect.isclass() on instances with a custom __getattr__ #1225107
      ........
      c4656004
    • Mark Dickinson's avatar
      Replace PyNumber_Int with PyNumber_Long. · 17c7cd8d
      Mark Dickinson authored
      17c7cd8d
    • Antoine Pitrou's avatar